From d74b495736f0c04522ec54274b70fed0ded2878d Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Tue, 27 Jun 2023 11:30:06 +0800
Subject: [PATCH] 任务新增导出
---
public/libs/Cesium/Widgets/ProjectionPicker/ProjectionPicker.css | 45 +++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 45 insertions(+), 0 deletions(-)
diff --git a/public/libs/Cesium/Widgets/ProjectionPicker/ProjectionPicker.css b/public/libs/Cesium/Widgets/ProjectionPicker/ProjectionPicker.css
new file mode 100644
index 0000000..3dc90a8
--- /dev/null
+++ b/public/libs/Cesium/Widgets/ProjectionPicker/ProjectionPicker.css
@@ -0,0 +1,45 @@
+span.cesium-projectionPicker-wrapper {
+ display: inline-block;
+ position: relative;
+ margin: 0 3px;
+}
+
+.cesium-projectionPicker-visible {
+ visibility: visible;
+ opacity: 1;
+ transition: opacity 0.25s linear;
+}
+
+.cesium-projectionPicker-hidden {
+ visibility: hidden;
+ opacity: 0;
+ transition: visibility 0s 0.25s, opacity 0.25s linear;
+}
+
+.cesium-projectionPicker-wrapper .cesium-projectionPicker-none {
+ display: none;
+}
+
+.cesium-projectionPicker-wrapper .cesium-projectionPicker-dropDown-icon {
+ box-sizing: border-box;
+ padding: 0;
+ margin: 3px 0;
+}
+
+.cesium-projectionPicker-wrapper .cesium-projectionPicker-buttonPerspective,
+.cesium-projectionPicker-wrapper .cesium-projectionPicker-buttonOrthographic {
+ margin: 0 0 3px 0;
+}
+
+.cesium-projectionPicker-wrapper .cesium-projectionPicker-buttonPerspective .cesium-projectionPicker-iconOrthographic {
+ left: 100%;
+}
+
+.cesium-projectionPicker-wrapper .cesium-projectionPicker-buttonOrthographic .cesium-projectionPicker-iconPerspective {
+ left: -100%;
+}
+
+.cesium-projectionPicker-wrapper .cesium-projectionPicker-selected {
+ border-color: #2e2;
+ box-shadow: 0 0 8px #fff, 0 0 8px #fff;
+}
--
Gitblit v1.9.3