_tooltip.sass 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. // *************************************
  2. //
  3. // Tooltip
  4. // -> Bootstrap Tooltip
  5. //
  6. // *************************************
  7. // ----- Tooltip ----- //
  8. .tooltip
  9. position: absolute
  10. z-index: 1070
  11. display: block
  12. visibility: visible
  13. font-size: 12px
  14. line-height: 1.4
  15. opacity: 0
  16. filter: alpha(opacity=0)
  17. .tooltip.in
  18. opacity: 0.9
  19. filter: alpha(opacity=90)
  20. .tooltip.top
  21. margin-top: -3px
  22. padding: 5px 0
  23. .tooltip.right
  24. margin-left: 3px
  25. padding: 0 5px
  26. .tooltip.bottom
  27. margin-top: 3px
  28. padding: 5px 0
  29. .tooltip.left
  30. margin-left: -3px
  31. padding: 0 5px
  32. .tooltip-inner
  33. max-width: 200px
  34. padding: 3px 8px
  35. color: #000
  36. text-align: center
  37. text-decoration: none
  38. background-color: #fff
  39. border-radius: 4px
  40. .tooltip-arrow
  41. position: absolute
  42. width: 0
  43. height: 0
  44. border-color: transparent
  45. border-style: solid
  46. .tooltip.top .tooltip-arrow
  47. bottom: 0
  48. left: 50%
  49. margin-left: -5px
  50. border-width: 5px 5px 0
  51. border-top-color: #fff
  52. .tooltip.top-left .tooltip-arrow
  53. bottom: 0
  54. left: 5px
  55. border-width: 5px 5px 0
  56. border-top-color: #fff
  57. .tooltip.top-right .tooltip-arrow
  58. bottom: 0
  59. right: 5px
  60. border-width: 5px 5px 0
  61. border-top-color: #fff
  62. .tooltip.right .tooltip-arrow
  63. top: 50%
  64. left: 0
  65. margin-top: -5px
  66. border-width: 5px 5px 5px 0
  67. border-right-color: #fff
  68. .tooltip.left .tooltip-arrow
  69. top: 50%
  70. right: 0
  71. margin-top: -5px
  72. border-width: 5px 0 5px 5px
  73. border-left-color: #fff
  74. .tooltip.bottom .tooltip-arrow
  75. top: 0
  76. left: 50%
  77. margin-left: -5px
  78. border-width: 0 5px 5px
  79. border-bottom-color: #fff
  80. .tooltip.bottom-left .tooltip-arrow
  81. top: 0
  82. left: 5px
  83. border-width: 0 5px 5px
  84. border-bottom-color: #fff
  85. .tooltip.bottom-right .tooltip-arrow
  86. top: 0
  87. right: 5px
  88. border-width: 0 5px 5px
  89. border-bottom-color: #fff