8f7d0dc4629e362b2ef3cba31c9a90c59d5ddae8.svn-base 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. .tooltip {
  2. position: absolute;
  3. display: none;
  4. z-index: 9900000;
  5. outline: none;
  6. opacity: 1;
  7. filter: alpha(opacity=100);
  8. padding: 5px;
  9. border-width: 1px;
  10. border-style: solid;
  11. border-radius: 5px;
  12. -moz-border-radius: 5px 5px 5px 5px;
  13. -webkit-border-radius: 5px 5px 5px 5px;
  14. border-radius: 5px 5px 5px 5px;
  15. }
  16. .tooltip-content {
  17. font-size: 12px;
  18. }
  19. .tooltip-arrow-outer,
  20. .tooltip-arrow {
  21. position: absolute;
  22. width: 0;
  23. height: 0;
  24. line-height: 0;
  25. font-size: 0;
  26. border-style: solid;
  27. border-width: 6px;
  28. border-color: transparent;
  29. _border-color: tomato;
  30. _filter: chroma(color=tomato);
  31. }
  32. .tooltip-right .tooltip-arrow-outer {
  33. left: 0;
  34. top: 50%;
  35. margin: -6px 0 0 -13px;
  36. }
  37. .tooltip-right .tooltip-arrow {
  38. left: 0;
  39. top: 50%;
  40. margin: -6px 0 0 -12px;
  41. }
  42. .tooltip-left .tooltip-arrow-outer {
  43. right: 0;
  44. top: 50%;
  45. margin: -6px -13px 0 0;
  46. }
  47. .tooltip-left .tooltip-arrow {
  48. right: 0;
  49. top: 50%;
  50. margin: -6px -12px 0 0;
  51. }
  52. .tooltip-top .tooltip-arrow-outer {
  53. bottom: 0;
  54. left: 50%;
  55. margin: 0 0 -13px -6px;
  56. }
  57. .tooltip-top .tooltip-arrow {
  58. bottom: 0;
  59. left: 50%;
  60. margin: 0 0 -12px -6px;
  61. }
  62. .tooltip-bottom .tooltip-arrow-outer {
  63. top: 0;
  64. left: 50%;
  65. margin: -13px 0 0 -6px;
  66. }
  67. .tooltip-bottom .tooltip-arrow {
  68. top: 0;
  69. left: 50%;
  70. margin: -12px 0 0 -6px;
  71. }
  72. .tooltip {
  73. background-color: #ffffff;
  74. border-color: #95B8E7;
  75. color: #000000;
  76. }
  77. .tooltip-right .tooltip-arrow-outer {
  78. border-right-color: #95B8E7;
  79. }
  80. .tooltip-right .tooltip-arrow {
  81. border-right-color: #ffffff;
  82. }
  83. .tooltip-left .tooltip-arrow-outer {
  84. border-left-color: #95B8E7;
  85. }
  86. .tooltip-left .tooltip-arrow {
  87. border-left-color: #ffffff;
  88. }
  89. .tooltip-top .tooltip-arrow-outer {
  90. border-top-color: #95B8E7;
  91. }
  92. .tooltip-top .tooltip-arrow {
  93. border-top-color: #ffffff;
  94. }
  95. .tooltip-bottom .tooltip-arrow-outer {
  96. border-bottom-color: #95B8E7;
  97. }
  98. .tooltip-bottom .tooltip-arrow {
  99. border-bottom-color: #ffffff;
  100. }