39 lines
660 B
CSS
39 lines
660 B
CSS
|
|
||
|
|
||
|
.mapSwipeBar {
|
||
|
position: absolute;
|
||
|
right: 5px;
|
||
|
top: 5px;
|
||
|
z-index: 19910505;
|
||
|
height: 45px;
|
||
|
padding: 5px 10px 5px 10px;
|
||
|
font-size: 14px;
|
||
|
background-color: #ffffff;
|
||
|
border-radius: 5px;
|
||
|
}
|
||
|
|
||
|
.mapSwipeBar div {
|
||
|
float: left;
|
||
|
margin-right: 5px;
|
||
|
}
|
||
|
|
||
|
.dark .mapSwipeBar {
|
||
|
color: #ffffff;
|
||
|
background-color: rgba(63, 72, 84, 0.8);
|
||
|
}
|
||
|
|
||
|
/*******地图对比中间线样式******/
|
||
|
.cesium-map-contrast-slider {
|
||
|
position: absolute;
|
||
|
left: 50%;
|
||
|
top: 0px;
|
||
|
background-color: #D3D3D3;
|
||
|
width: 2px;
|
||
|
height: 100%;
|
||
|
z-index: 9999;
|
||
|
}
|
||
|
|
||
|
.cesium-map-contrast-slider:hover {
|
||
|
cursor: ew-resize;
|
||
|
}
|