vector-map.scss 1023 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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: 7px;
  13. background: $vmap-label-bg;
  14. color: white;
  15. padding: 3px 6px;
  16. opacity: 0.9;
  17. z-index: 1100;
  18. cursor: pointer;
  19. }
  20. .jvectormap-zoomin, .jvectormap-zoomout {
  21. position: absolute;
  22. left: 10px;
  23. width: 22px;
  24. height: 22px;
  25. border-radius: 2px;
  26. background: $vmap-zoom-ctrl-bg;
  27. padding: 5px;
  28. color: white;
  29. cursor: pointer;
  30. line-height: 10px;
  31. text-align: center;
  32. }
  33. .jvectormap-zoomin {
  34. top: 10px;
  35. }
  36. .jvectormap-zoomout {
  37. top: 30px;
  38. }
  39. }