_tooltip.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. //
  2. // Tooltips
  3. // --------------------------------------------------
  4. // Base class
  5. .tooltip {
  6. position: absolute;
  7. z-index: $zindex-tooltip;
  8. display: block;
  9. visibility: visible;
  10. line-height: 1.4;
  11. font-weight: $font-weight-semi-bold;
  12. @include opacity(0);
  13. &.in {
  14. @include opacity(100);
  15. }
  16. &.top {
  17. margin-top: -3px;
  18. padding: 5px 0;
  19. }
  20. &.right {
  21. margin-left: 3px;
  22. padding: 0 5px;
  23. }
  24. &.bottom {
  25. margin-top: 3px;
  26. padding: 5px 0;
  27. }
  28. &.left {
  29. margin-left: -3px;
  30. padding: 0 5px;
  31. }
  32. }
  33. // Wrapper for the tooltip content
  34. .tooltip-inner {
  35. max-width: 400px;
  36. padding: 8px 16px;
  37. padding: 4px 8px;
  38. color: $tooltipColor;
  39. text-align: center;
  40. text-decoration: none;
  41. background-color: $tooltipBackground;
  42. border-radius: 2px;
  43. }
  44. // Arrows
  45. .tooltip-arrow {
  46. position: absolute;
  47. width: 0;
  48. height: 0;
  49. border-color: transparent;
  50. border-style: solid;
  51. }
  52. .tooltip {
  53. &.top .tooltip-arrow {
  54. bottom: 0;
  55. left: 50%;
  56. margin-left: -$tooltipArrowWidth;
  57. border-width: $tooltipArrowWidth $tooltipArrowWidth 0;
  58. border-top-color: $tooltipArrowColor;
  59. }
  60. &.right .tooltip-arrow {
  61. top: 50%;
  62. left: 0;
  63. margin-top: -$tooltipArrowWidth;
  64. border-width: $tooltipArrowWidth $tooltipArrowWidth $tooltipArrowWidth 0;
  65. border-right-color: $tooltipArrowColor;
  66. }
  67. &.left .tooltip-arrow {
  68. top: 50%;
  69. right: 0;
  70. margin-top: -$tooltipArrowWidth;
  71. border-width: $tooltipArrowWidth 0 $tooltipArrowWidth $tooltipArrowWidth;
  72. border-left-color: $tooltipArrowColor;
  73. }
  74. &.bottom .tooltip-arrow {
  75. top: 0;
  76. left: 50%;
  77. margin-left: -$tooltipArrowWidth;
  78. border-width: 0 $tooltipArrowWidth $tooltipArrowWidth;
  79. border-bottom-color: $tooltipArrowColor;
  80. }
  81. }
  82. .grafana-tooltip {
  83. position: absolute;
  84. top: -1000;
  85. left: 0;
  86. color: $tooltipColor;
  87. padding: 10px;
  88. font-size: 11pt;
  89. font-weight: 200;
  90. background-color: $tooltipBackground;
  91. border-radius: 5px;
  92. z-index: 9999;
  93. max-width: 800px;
  94. max-height: 600px;
  95. overflow: hidden;
  96. line-height: 14px;
  97. a {
  98. color: $tooltipLinkColor;
  99. }
  100. a.external-link {
  101. color: $tooltipExternalLinkColor;
  102. }
  103. }
  104. .grafana-tip {
  105. padding-left: 5px;
  106. }