measure.scss 849 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .tooltip {
  2. position: relative;
  3. background: rgba(0, 0, 0, 0.5);
  4. border-radius: 4px;
  5. color: white;
  6. padding: 4px 8px;
  7. white-space: nowrap;
  8. }
  9. .tooltip-measure {
  10. opacity: 1;
  11. font-weight: bold;
  12. }
  13. .tooltip-static {
  14. background-color: #ffcc33;
  15. color: black;
  16. border: 1px solid white;
  17. }
  18. .tooltip-measure:before,
  19. .tooltip-static:before {
  20. border-top: 6px solid rgba(0, 0, 0, 0.5);
  21. border-right: 6px solid transparent;
  22. border-left: 6px solid transparent;
  23. content: "";
  24. position: absolute;
  25. bottom: -6px;
  26. margin-left: -7px;
  27. left: 50%;
  28. }
  29. .tooltip-static:before {
  30. border-top-color: #ffcc33;
  31. }
  32. .lineDel {
  33. width: 16px;
  34. height: 16px;
  35. display: inline-block;
  36. vertical-align: middle;
  37. margin-left: 10px;
  38. cursor: pointer;
  39. //background: url('@/assets/images/map/lineDel.png') no-repeat;
  40. background-size: 100% 100%;
  41. }