Agriculture-front-end/dist/Cesium/Widgets/CesiumInspector/CesiumInspector.css

131 lines
2.7 KiB
CSS
Raw Normal View History

2023-04-23 09:41:12 +08:00
.cesium-cesiumInspector {
2023-09-11 21:56:39 +08:00
border-radius: 5px;
transition: width ease-in-out 0.25s;
background: rgba(48, 51, 54, 0.8);
border: 1px solid #444;
color: #edffff;
display: inline-block;
position: relative;
padding: 4px 12px;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
overflow: hidden;
}
2023-04-23 09:41:12 +08:00
.cesium-cesiumInspector-button {
2023-09-11 21:56:39 +08:00
text-align: center;
font-size: 11pt;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-cesiumInspector-visible .cesium-cesiumInspector-button {
2023-09-11 21:56:39 +08:00
border-bottom: 1px solid #aaa;
padding-bottom: 3px;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
.cesium-cesiumInspector input:enabled, .cesium-cesiumInspector-button {
cursor: pointer;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-cesiumInspector-visible {
2023-09-11 21:56:39 +08:00
width: 185px;
height: auto;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-cesiumInspector-hidden {
2023-09-11 21:56:39 +08:00
width: 122px;
height: 17px;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-cesiumInspector-sectionContent {
2023-09-11 21:56:39 +08:00
max-height: 500px;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-cesiumInspector-section-collapsed .cesium-cesiumInspector-sectionContent {
2023-09-11 21:56:39 +08:00
max-height: 0;
padding: 0 !important;
overflow: hidden;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-cesiumInspector-dropDown {
2023-09-11 21:56:39 +08:00
margin: 5px 0;
font-family: sans-serif;
font-size: 10pt;
width: 185px;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-cesiumInspector-frustumStatistics {
2023-09-11 21:56:39 +08:00
padding-left: 10px;
padding: 5px;
background-color: rgba(80, 80, 80, 0.75);
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-cesiumInspector-pickButton {
2023-09-11 21:56:39 +08:00
background-color: rgba(0, 0, 0, 0.3);
border: 1px solid #444;
color: #edffff;
border-radius: 5px;
padding: 3px 7px;
cursor: pointer;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
margin: 0 auto;
}
2023-04-23 09:41:12 +08:00
.cesium-cesiumInspector-pickButton:focus {
2023-09-11 21:56:39 +08:00
outline: none;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
.cesium-cesiumInspector-pickButton:active, .cesium-cesiumInspector-pickButtonHighlight {
color: #000; /* For text buttons */
background: #adf;
border-color: #fff;
box-shadow: 0 0 8px #fff;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-cesiumInspector-center {
2023-09-11 21:56:39 +08:00
text-align: center;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-cesiumInspector-sectionHeader {
2023-09-11 21:56:39 +08:00
font-weight: bold;
font-size: 10pt;
margin: 0;
cursor: pointer;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-cesiumInspector-pickSection {
2023-09-11 21:56:39 +08:00
border: 1px solid #aaa;
border-radius: 5px;
padding: 3px;
margin-bottom: 5px;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-cesiumInspector-sectionContent {
2023-09-11 21:56:39 +08:00
margin-bottom: 10px;
transition: max-height 0.25s;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-cesiumInspector-tileText {
2023-09-11 21:56:39 +08:00
padding-bottom: 10px;
border-bottom: 1px solid #aaa;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-cesiumInspector-relativeText {
2023-09-11 21:56:39 +08:00
padding-top: 10px;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-cesiumInspector-sectionHeader::before {
2023-09-11 21:56:39 +08:00
margin-right: 5px;
content: '-';
width: 1ch;
display: inline-block;
2023-04-23 09:41:12 +08:00
}
2023-09-11 21:56:39 +08:00
2023-04-23 09:41:12 +08:00
.cesium-cesiumInspector-section-collapsed .cesium-cesiumInspector-sectionHeader::before {
2023-09-11 21:56:39 +08:00
content: '+';
2023-04-23 09:41:12 +08:00
}