Browse Source

测量样式

CzRger 1 year ago
parent
commit
0414b6c703
2 changed files with 20 additions and 15 deletions
  1. 20 15
      src/components/easyMap/func/dom.scss
  2. BIN
      src/components/easyMap/images/lineDel.png

+ 20 - 15
src/components/easyMap/func/dom.scss

@@ -1,47 +1,52 @@
 .tooltip {
+  margin-right: 4px;
   position: relative;
-  background: rgba(0, 0, 0, 0.5);
+  background: rgba(0, 0, 0, 0.7);
   border-radius: 4px;
-  color: white;
-  padding: 4px 8px;
+  padding: 8px;
   white-space: nowrap;
+  font-size: 14px;
+  font-family: PingFang SC, PingFang SC;
+  font-weight: 500;
+  color: #FFFFFF;
+  line-height: 20px;
 }
 
 .tooltip-measure {
-  opacity: 1;
-  font-weight: bold;
+  //opacity: 1;
+  //font-weight: bold;
 }
 
 .tooltip-static {
-  background-color: #ffcc33;
-  color: black;
-  border: 1px solid white;
+  background-color: rgba(255, 255, 255,0.7);
+  border-radius: 4px;
+  border: 1px solid rgba(255,43,43,0.7);
+  color: #000000;
 }
 
 .tooltip-measure:before,
 .tooltip-static:before {
-  border-top: 6px solid rgba(0, 0, 0, 0.5);
+  border-top: 6px solid rgba(0, 0, 0, 0.7);
   border-right: 6px solid transparent;
   border-left: 6px solid transparent;
   content: "";
   position: absolute;
   bottom: -6px;
-  margin-left: -7px;
-  left: 50%;
+  left: calc((100% - 6px) / 2);
 }
 
 .tooltip-static:before {
-  border-top-color: #ffcc33;
+  border-top-color: rgba(255,43,43,0.7);
 }
 .lineDel {
+  position: absolute;
   width: 16px;
   height: 16px;
-  display: inline-block;
-  vertical-align: middle;
-  margin-left: 10px;
   cursor: pointer;
   background: url('../images/lineDel.png') no-repeat;
   background-size: 100% 100%;
+  top: -18px;
+  right: 0;
 }
 
 .tooltip-location {

BIN
src/components/easyMap/images/lineDel.png