tooltip.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. .tooltip {
  2. font-size: 12px;
  3. line-height: 1.4;
  4. position: absolute;
  5. z-index: 1030;
  6. display: block;
  7. visibility: visible;
  8. opacity: 0;
  9. filter: alpha(opacity=0);
  10. }
  11. .tooltip.in {
  12. opacity: .8;
  13. filter: alpha(opacity=80);
  14. }
  15. .tooltip.top {
  16. margin-top: -3px;
  17. padding: 5px 0;
  18. }
  19. .tooltip.right {
  20. margin-left: 8px;
  21. padding: 0 5px;
  22. }
  23. .tooltip.bottom {
  24. margin-top: 3px;
  25. padding: 5px 0;
  26. }
  27. .tooltip.left {
  28. margin-left: -8px;
  29. padding: 0 5px;
  30. }
  31. .tooltip-inner {
  32. max-width: 200px;
  33. padding: 10px 15px;
  34. text-align: center;
  35. text-decoration: none;
  36. color: #fff;
  37. background-color: rgba(0, 0, 0, .9);
  38. }
  39. .tooltip-arrow {
  40. position: absolute;
  41. width: 0;
  42. height: 0;
  43. border-style: solid;
  44. border-color: transparent;
  45. }
  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: rgba(0, 0, 0, .9);
  52. }
  53. .tooltip.right .tooltip-arrow {
  54. top: 50%;
  55. left: 0;
  56. margin-top: -5px;
  57. border-width: 5px 5px 5px 0;
  58. border-right-color: rgba(0, 0, 0, .9);
  59. }
  60. .tooltip.left .tooltip-arrow {
  61. top: 50%;
  62. right: 0;
  63. margin-top: -5px;
  64. border-width: 5px 0 5px 5px;
  65. border-left-color: rgba(0, 0, 0, .9);
  66. }
  67. .tooltip.bottom .tooltip-arrow {
  68. top: 0;
  69. left: 50%;
  70. margin-left: -5px;
  71. border-width: 0 5px 5px;
  72. border-bottom-color: rgba(0, 0, 0, .9);
  73. }