thickbox.css 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. /* ----------------------------------------------------------------------------------------------------------------*/
  2. /* ---------->>> global settings needed for thickbox <<<-----------------------------------------------------------*/
  3. /* ----------------------------------------------------------------------------------------------------------------*/
  4. /* ----------------------------------------------------------------------------------------------------------------*/
  5. /* ---------->>> thickbox specific link and font settings <<<------------------------------------------------------*/
  6. /* ----------------------------------------------------------------------------------------------------------------*/
  7. #TB_window {
  8. font: 12px Arial, Helvetica, sans-serif;
  9. color: #333333;
  10. }
  11. #TB_secondLine {
  12. font: 10px Arial, Helvetica, sans-serif;
  13. color:#666666;
  14. }
  15. #TB_window a:link {color: #666666;}
  16. #TB_window a:visited {color: #666666;}
  17. #TB_window a:hover {color: #000;}
  18. #TB_window a:active {color: #666666;}
  19. #TB_window a:focus{color: #666666;}
  20. /* ----------------------------------------------------------------------------------------------------------------*/
  21. /* ---------->>> thickbox settings <<<-----------------------------------------------------------------------------*/
  22. /* ----------------------------------------------------------------------------------------------------------------*/
  23. #TB_overlay {
  24. position: fixed;
  25. z-index:100;
  26. top: 0px;
  27. left: 0px;
  28. height:100%;
  29. width:100%;
  30. }
  31. .TB_overlayMacFFBGHack {background: url(macFFBgHack.png) repeat;}
  32. .TB_overlayBG {
  33. background-color:#fff;
  34. filter:alpha(opacity=45);
  35. -moz-opacity: 0.45;
  36. opacity: 0.45;
  37. }
  38. * html #TB_overlay { /* ie6 hack */
  39. position: absolute;
  40. height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
  41. }
  42. #TB_window {
  43. position: fixed;
  44. z-index: 102;
  45. color:#000000;
  46. display:none;
  47. text-align:left;
  48. background-color: #fff;
  49. border: 1px solid #ccc;
  50. box-shadow:0 0 50px 5px #999;
  51. -moz-box-shadow:0 0 50px 5px #999;
  52. -webkit-box-shadow: 0 0 50px 5px #999;
  53. top:50%;
  54. left:50%;
  55. -webkit-border-radius: 8px;
  56. -opera-border-radius: 8px;
  57. -moz-border-radius: 8px;
  58. border-radius: 8px;
  59. }
  60. * html #TB_window { /* ie6 hack */
  61. position: absolute;
  62. margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
  63. }
  64. #TB_window img#TB_Image {
  65. display:block;
  66. margin: 15px 0 0 15px;
  67. /* border-right: 1px solid #ccc;
  68. border-bottom: 1px solid #ccc;
  69. border-top: 1px solid #666;
  70. border-left: 1px solid #666;*/
  71. }
  72. #TB_caption{
  73. height:25px;
  74. padding:7px 30px 10px 25px;
  75. float:left;
  76. }
  77. #TB_closeWindow{
  78. height: 29px;
  79. padding: 8px 10px 10px 0;
  80. position: absolute;
  81. right: -28px;
  82. top: -28px;
  83. }
  84. #TB_closeAjaxWindow{
  85. padding:7px 10px 5px 0;
  86. margin-bottom:1px;
  87. text-align:right;
  88. float:right;
  89. }
  90. #TB_ajaxWindowTitle{
  91. float:left;
  92. padding:7px 0 5px 10px;
  93. margin-bottom:1px;
  94. }
  95. #TB_title{
  96. -moz-border-radius-topleft:8px;
  97. -moz-border-radius-topright:8px;
  98. -webkit-border-radius-topleft:8px;
  99. -webkit-border-radius-topright:8px;
  100. -opera-border-radius-topleft:8px;
  101. -opera-border-radius-topright:8px;
  102. -border-radius-topleft:8px;
  103. -border-radius-topright:8px;
  104. background-color:#e8e8e8;
  105. height:27px;
  106. }
  107. #TB_ajaxContent {
  108. clear:both;
  109. padding:2px 15px 15px 15px;
  110. overflow:auto;
  111. text-align:left;
  112. line-height:1.4em;
  113. }
  114. #TB_ajaxContent.TB_modal{
  115. padding:15px;
  116. }
  117. #TB_ajaxContent p{
  118. padding:5px 0px 5px 0px;
  119. }
  120. #TB_load {
  121. position: fixed;
  122. display:none;
  123. height:13px;
  124. width:208px;
  125. z-index:103;
  126. top: 50%;
  127. left: 50%;
  128. margin: -6px 0 0 -104px; /* -height/2 0 0 -width/2 */
  129. }
  130. * html #TB_load { /* ie6 hack */
  131. position: absolute;
  132. margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
  133. }
  134. #TB_HideSelect{
  135. z-index:99;
  136. position:fixed;
  137. top: 0;
  138. left: 0;
  139. background-color:#fff;
  140. border:none;
  141. filter:alpha(opacity=0);
  142. -moz-opacity: 0;
  143. opacity: 0;
  144. height:100%;
  145. width:100%;
  146. }
  147. * html #TB_HideSelect { /* ie6 hack */
  148. position: absolute;
  149. height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
  150. }
  151. #TB_iframeContent{
  152. clear:both;
  153. border:none;
  154. margin-bottom:-1px;
  155. margin-top:1px;
  156. _margin-bottom:1px;
  157. }