mirror of
https://github.com/noerw/leaflet-playback
synced 2025-07-12 01:30:23 +02:00
23 lines
490 B
CSS
23 lines
490 B
CSS
/* horizontal control */
|
|
.leaflet-bar.horizontal a {
|
|
float: left;
|
|
}
|
|
.leaflet-bar.horizontal a:first-child {
|
|
border-bottom-left-radius: 4px;
|
|
border-top-right-radius: 0;
|
|
}
|
|
.leaflet-bar.horizontal a:last-child {
|
|
border-top-right-radius: 4px;
|
|
border-bottom-left-radius: 0;
|
|
border-bottom: 1px solid #ccc;
|
|
}
|
|
|
|
/* button with persistent state */
|
|
.leaflet-bar a.enabled {
|
|
background: #ddd;
|
|
border-bottom: 1px solid #999999;
|
|
}
|
|
|
|
.leaflet-bar a.enabled:hover {
|
|
background: #cccccc;
|
|
}
|