You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
184 lines
2.7 KiB
CSS
184 lines
2.7 KiB
CSS
html,
|
|
body,
|
|
#cesiumContainer {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.cesium-viewer-bottom {
|
|
display: none
|
|
}
|
|
|
|
.cesium-viewer-geocoderContainer,
|
|
.cesium-home-button,
|
|
.cesium-sceneModePicker-wrapper,
|
|
.cesium-navigationHelpButton-wrapper,
|
|
.cesium-viewer-bottom {
|
|
display: none !important;
|
|
}
|
|
|
|
.cesium-toolbar-button {
|
|
display: none
|
|
}
|
|
|
|
.ol-popup {
|
|
visibility: hidden;
|
|
position: absolute;
|
|
padding: 0;
|
|
background-color: white;
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
|
|
border-radius: 5px;
|
|
border: 1px solid #cccccc;
|
|
top: 0px;
|
|
right: 0;
|
|
min-width: 300px;
|
|
max-width: 430px;
|
|
z-index: 999;
|
|
}
|
|
|
|
.ol-scene {
|
|
display: none;
|
|
position: absolute;
|
|
padding: 0 15px 15px;
|
|
background-color: white;
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
|
|
border-radius: 5px;
|
|
border: 1px solid #cccccc;
|
|
top: 200px;
|
|
left: 50%;
|
|
margin-left: -220px;
|
|
min-width: 150px;
|
|
max-width: 440px;
|
|
z-index: 1001;
|
|
}
|
|
|
|
.scene-content {
|
|
max-height: 440px;
|
|
overflow-x: hidden;
|
|
}
|
|
.popup-contents{
|
|
max-height: 640px;
|
|
overflow-x: hidden;
|
|
}
|
|
.ol-popup:after,
|
|
.ol-popup:before {
|
|
top: 100%;
|
|
border: solid transparent;
|
|
content: " ";
|
|
height: 0;
|
|
width: 0;
|
|
position: absolute;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.popup-title {
|
|
width: 100%;
|
|
font-size: 18px;
|
|
padding: 5px 15px;
|
|
font-weight: bolder;
|
|
border-bottom: 1px solid #5084c2;
|
|
background-color: #06f;
|
|
color: #fff;
|
|
}
|
|
|
|
.popup-titles {
|
|
font-size: 18px;
|
|
padding: 5px 15px;
|
|
font-weight: bolder;
|
|
border-bottom: 1px solid #06f;
|
|
background-color: #5084c2;
|
|
color: #fff;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.popup-titles span {
|
|
font-size: 14px;
|
|
float: right;
|
|
line-height: 24px;
|
|
}
|
|
|
|
.ol-popup-closer,
|
|
.ol-scene-closer {
|
|
text-decoration: none;
|
|
position: absolute;
|
|
top: 5px;
|
|
right: 10px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.ol-popup-closer:hover,
|
|
.ol-scene-closer:hover {
|
|
color: orange;
|
|
}
|
|
|
|
.ol-popup-closer:after,
|
|
.ol-scene-closer:after {
|
|
content: "✖";
|
|
color: #fff;
|
|
}
|
|
|
|
.popup-content table {
|
|
text-align: center;
|
|
font-size: 12px;
|
|
border-collapse: collapse;
|
|
letter-spacing: 1px;
|
|
margin: 0 5px 10px;
|
|
}
|
|
|
|
.popup-content table th {
|
|
background: #E7E9EA;
|
|
font-family: Microsoft YaHei, Microsoft YaHei;
|
|
font-weight: 400;
|
|
color: #333;
|
|
line-height: 23px;
|
|
}
|
|
|
|
.popup-content table thead {
|
|
background: #E7E9EA;
|
|
}
|
|
|
|
.popup-content table td {
|
|
font-family: Microsoft YaHei, Microsoft YaHei;
|
|
font-weight: 400;
|
|
color: #666;
|
|
padding: 3px;
|
|
line-height: 23px;
|
|
}
|
|
|
|
.popup-list {
|
|
display: block;
|
|
margin: 3px 0;
|
|
overflow: hidden;
|
|
padding: 5px 10px;
|
|
line-height: 30px;
|
|
}
|
|
|
|
.popup-label {
|
|
float: left;
|
|
color: #5084c2;
|
|
}
|
|
|
|
.scene-label {
|
|
font-weight: bolder;
|
|
}
|
|
|
|
.popup-con p {
|
|
margin: 0;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.qx-but {
|
|
position: absolute;
|
|
top: 5px;
|
|
right: 130px;
|
|
cursor: pointer;
|
|
} |