From df1c052d1f0d368cb78ebb1831980745bca11edc Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Thu, 10 Jun 2021 11:56:18 +0800
Subject: [PATCH] 数据图表的查询渲染
---
widgets/Basemap/css/style.css | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++---------
1 files changed, 51 insertions(+), 9 deletions(-)
diff --git a/widgets/Basemap/css/style.css b/widgets/Basemap/css/style.css
index e6958c3..c1d6a36 100644
--- a/widgets/Basemap/css/style.css
+++ b/widgets/Basemap/css/style.css
@@ -1,11 +1,11 @@
.jimu-widget-Basemap {
position: relative;
font-size: 14px;
- height: 32px;
- line-height: 32px;
- width: 100%;
- background: rgba(44, 46, 46, 0.75);
- color: #fff;
+ height: 36px;
+ line-height: 36px;
+ width: 100%;
+ background: rgb(254, 254, 254);
+ color: #838383;
border-radius: 0 6px 6px 0;
text-align: center;
cursor: pointer;
@@ -14,15 +14,57 @@
.jimu-widget-Basemap .base-map {
width: 100%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
}
+
.jimu-widget-Basemap .base-map i {
display: inline-block;
- width: 16px;
- height: 16px;
- background: url(../../../images/baseMapSmall.png) no-repeat;
- background-size: 16px;
+ margin-right: 4px;
+ width: 14px;
+ height: 14px;
+ background: url(../../../images/底图.png) no-repeat;
+ background-size: 100% 100%;
vertical-align: middle;
}
+
.jimu-widget-Basemap .base-map span:hover {
text-decoration: underline;
+}
+
+/* 弹窗样式 */
+
+.cesium-baseLayerPicker-dropDown {
+ background-color: rgb(255, 255, 255);
+}
+
+.cesium-baseLayerPicker-sectionTitle, .cesium-baseLayerPicker-itemLabel {
+ color: #000;
+}
+.cesium-baseLayerPicker-selectedItem .cesium-baseLayerPicker-itemLabel{
+ color: rgb(16, 120, 218);
+}
+
+.cesium-baseLayerPicker-dropDown,
+.cesium-baseLayerPicker-choices,
+.cesium-baseLayerPicker-itemIcon {
+ border: none !important;
+}
+
+.cesium-baseLayerPicker-selectedItem img {
+ border: 2px solid #459DEE !important;
+}
+
+.cesium-baseLayerPicker-selectedItem div {
+ color: #459DEE;
+}
+
+.cesium-baseLayerPicker-dropDown div:nth-child(3) {
+ padding-top: 10px;
+ border-top: 1px solid #F2F2F2;
+}
+
+.cesium-baseLayerPicker-dropDown .cesium-baseLayerPicker-sectionTitle {
+ font-size: 16px;
}
\ No newline at end of file
--
Gitblit v1.9.3