display max guessed output

This commit is contained in:
Tykayn 2024-11-26 21:31:43 +01:00 committed by tykayn
parent 0d9d327c5a
commit c2cb88e9aa
3 changed files with 147 additions and 56 deletions

View file

@ -61,10 +61,11 @@ h2 {
#overpass-api-controls {
position: fixed;
top: 8em;
left: 4em;
top: 0;
right: 1em;
padding: 10px;
background-color: rgb(255, 255, 255);
background-color: transparent;
border: 0;
z-index: 10;
}
@ -72,9 +73,10 @@ h2 {
display: inline;
}
.has_output_of_irve_specified{
.has_output_of_irve_specified {
box-shadow: 0 0 15rem darkred;
}
/*img.leaflet-marker-icon {*/
/* background: #fff;*/
/* -webkit-border-radius: 100%;*/
@ -100,8 +102,8 @@ img.leaflet-marker-icon.tag-socket\:type2_yes {
#query-button,
.edit-button {
background: #497cd3;
padding: 0.5em;
border-radius: 0.25em;
padding: 0.5em 1em;
border-radius: 2em;
color: white;
border: solid 1px #497cd3ff;
float: right;
@ -139,10 +141,12 @@ img.leaflet-marker-icon.tag-socket\:type2_yes {
a {
color: #38f;
}
.leaflet-control-custom{
.leaflet-control-custom {
padding: 1rem;
background: white;
}
#spinning_icon {
position: fixed;
top: 11rem;
@ -172,19 +176,51 @@ a {
}
.leaflet-popup-content {
min-width: 15rem;
min-height: 10rem;
min-width: 10rem;
max-width: 20rem;
min-height: 5rem;
max-height: 10rem;
overflow: auto;
word-break: break-all;
word-wrap: break-word;
}
.popup-key {
min-width: 6rem;
display: inline-block
display: inline-block;
}
.bottom-content{
.popup-value{
min-width: 10rem;
text-align: right;
display: inline-block;
}
.bottom-content {
padding: 0 2rem 4rem;
}
#star{
#star {
left: 10rem;
}
.color-indication {
min-width: 1rem;
height: 1rem;
padding: 1rem;
border-radius: 2rem;
display: block;
float: right;
margin: 0.5rem;
color: white;
text-shadow: 0 0 0.5rem #222;
}
.no-data {
border-left: 3px solid dodgerblue;
padding: 1em 2rem;
min-height: 4rem;
}
.no-data a {
color: dodgerblue;
}