vector-map.scss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* ========================================================================
  2. Component: vector-map
  3. ========================================================================== */
  4. $vmap-label-bg: #313232;
  5. $vmap-zoom-ctrl-bg: #515253;
  6. body {
  7. // adds priority
  8. .jvectormap-label {
  9. position: absolute;
  10. display: none;
  11. border: solid 1px $vmap-label-bg;
  12. border-radius: 2px;
  13. background: $vmap-label-bg;
  14. color: white;
  15. padding: 3px 6px;
  16. opacity: 0.9;
  17. z-index: 1100;
  18. }
  19. .jvectormap-zoomin, .jvectormap-zoomout {
  20. position: absolute;
  21. left: 10px;
  22. width: 22px;
  23. height: 22px;
  24. border-radius: 2px;
  25. background: $vmap-zoom-ctrl-bg;
  26. padding: 5px;
  27. color: white;
  28. cursor: pointer;
  29. line-height: 10px;
  30. text-align: center;
  31. }
  32. .jvectormap-zoomin {
  33. top: 10px;
  34. }
  35. .jvectormap-zoomout {
  36. top: 30px;
  37. }
  38. }