jquery.qtip.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /*
  2. * qTip2 - Pretty powerful tooltips - v2.2.1
  3. * http://qtip2.com
  4. *
  5. * Copyright (c) 2014
  6. * Released under the MIT licenses
  7. * http://jquery.org/license
  8. *
  9. * Date: Sun Sep 7 2014 12:09 GMT+0100+0100
  10. * Plugins: None
  11. * Styles: core
  12. */
  13. .qtip{
  14. position: absolute;
  15. left: -28000px;
  16. top: -28000px;
  17. display: none;
  18. max-width: 280px;
  19. min-width: 50px;
  20. font-size: 10.5px;
  21. line-height: 12px;
  22. direction: ltr;
  23. box-shadow: none;
  24. padding: 0;
  25. }
  26. .qtip-content{
  27. position: relative;
  28. padding: 5px 9px;
  29. overflow: hidden;
  30. text-align: left;
  31. word-wrap: break-word;
  32. }
  33. .qtip-titlebar{
  34. position: relative;
  35. padding: 5px 35px 5px 10px;
  36. overflow: hidden;
  37. border-width: 0 0 1px;
  38. font-weight: bold;
  39. }
  40. .qtip-titlebar + .qtip-content{ border-top-width: 0 !important; }
  41. /* Default close button class */
  42. .qtip-close{
  43. position: absolute;
  44. right: -9px; top: -9px;
  45. z-index: 11; /* Overlap .qtip-tip */
  46. cursor: pointer;
  47. outline: medium none;
  48. border: 1px solid transparent;
  49. }
  50. .qtip-titlebar .qtip-close{
  51. right: 4px; top: 50%;
  52. margin-top: -9px;
  53. }
  54. * html .qtip-titlebar .qtip-close{ top: 16px; } /* IE fix */
  55. .qtip-titlebar .ui-icon,
  56. .qtip-icon .ui-icon{
  57. display: block;
  58. text-indent: -1000em;
  59. direction: ltr;
  60. }
  61. .qtip-icon, .qtip-icon .ui-icon{
  62. -moz-border-radius: 3px;
  63. -webkit-border-radius: 3px;
  64. border-radius: 3px;
  65. text-decoration: none;
  66. }
  67. .qtip-icon .ui-icon{
  68. width: 18px;
  69. height: 14px;
  70. line-height: 14px;
  71. text-align: center;
  72. text-indent: 0;
  73. font: normal bold 10px/13px Tahoma,sans-serif;
  74. color: inherit;
  75. background: transparent none no-repeat -100em -100em;
  76. }
  77. /* Applied to 'focused' tooltips e.g. most recently displayed/interacted with */
  78. .qtip-focus{}
  79. /* Applied on hover of tooltips i.e. added/removed on mouseenter/mouseleave respectively */
  80. .qtip-hover{}
  81. /* Default tooltip style */
  82. .qtip-default{
  83. border: 1px solid #F1D031;
  84. background-color: #FFFFA3;
  85. color: #555;
  86. }
  87. .qtip-default .qtip-titlebar{
  88. background-color: #FFEF93;
  89. }
  90. .qtip-default .qtip-icon{
  91. border-color: #CCC;
  92. background: #F1F1F1;
  93. color: #777;
  94. }
  95. .qtip-default .qtip-titlebar .qtip-close{
  96. border-color: #AAA;
  97. color: #111;
  98. }