Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
29 righe
662 B
29 righe
662 B
2 anni fa
|
.legend-container #legend {
|
||
|
background-color: rgba(255, 255, 255, 1.0);
|
||
|
-webkit-border-radius: 5px;
|
||
|
-moz-border-radius: 5px;
|
||
|
-ms-border-radius: 5px;
|
||
|
-o-border-radius: 5px;
|
||
|
border-radius: 5px;
|
||
|
}
|
||
|
|
||
|
.legend-container .legend-toggle {
|
||
|
cursor: pointer;
|
||
|
width: 26px;
|
||
|
height: 26px;
|
||
|
-webkit-border-radius: 4px;
|
||
|
border-radius: 4px;
|
||
|
background-color: rgba(255, 255, 255, 1.0);
|
||
|
}
|
||
|
.legend-container .legend-toggle-icon {
|
||
|
/*optionally use an icon image for the toggle button*/
|
||
|
/*background: url('images/layers.png') no-repeat center center;*/
|
||
|
}
|
||
|
.legend-collapsed #legend {
|
||
|
display: none;
|
||
|
}
|
||
|
.legend-collapsed .legend-toggle {
|
||
|
display: block;
|
||
|
}
|
||
|
|