add arrow to toggle legend pane

This commit is contained in:
Stanislav Lechev [0xAF] 2023-09-19 03:48:37 +03:00
parent 900fbafaa4
commit dc390aa8b7
4 changed files with 35 additions and 6 deletions

View file

@ -30,6 +30,24 @@ ul {
user-select: none;
}
.openwebrx-arrow-up {
margin-top: 5px;
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 10px solid black;
}
.openwebrx-arrow-down {
margin-top: 5px;
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px solid black;
}
/* show it as soon as google maps has moved it to its container */
.openwebrx-map .openwebrx-map-legend {
display: block;