You are here

thickbox.css in jCarousel 6

/* ----------------------------------------------------------------------------------------------------------------*/
/* ---------->>> global settings needed for thickbox <<<-----------------------------------------------------------*/
/* ----------------------------------------------------------------------------------------------------------------*/
*{padding: 0; margin: 0;}

/* ----------------------------------------------------------------------------------------------------------------*/
/* ---------->>> thickbox specific link and font settings <<<------------------------------------------------------*/
/* ----------------------------------------------------------------------------------------------------------------*/
#TB_window {
	font: 12px Arial, Helvetica, sans-serif;
	color: #333333;
}

#TB_secondLine {
	font: 10px Arial, Helvetica, sans-serif;
	color:#666666;
}

#TB_window a:link {color: #666666;}
#TB_window a:visited {color: #666666;}
#TB_window a:hover {color: #000;}
#TB_window a:active {color: #666666;}
#TB_window a:focus{color: #666666;}

/* ----------------------------------------------------------------------------------------------------------------*/
/* ---------->>> thickbox settings <<<-----------------------------------------------------------------------------*/
/* ----------------------------------------------------------------------------------------------------------------*/
#TB_overlay {
	position: fixed;
	z-index:100;
	top: 0px;
	left: 0px;
	background-color:#000;
	filter:alpha(opacity=75);
	-moz-opacity: 0.75;
	opacity: 0.75;
	height:100%;
	width:100%;
}

* html #TB_overlay { /* ie6 hack */
     position: absolute;
     height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}

#TB_window {
	position: fixed;
	background: #ffffff;
	z-index: 102;
	color:#000000;
	display:none;
	border: 4px solid #525252;
	text-align:left;
	top:50%;
	left:50%;
}

* html #TB_window { /* ie6 hack */
position: absolute;
margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
}

#TB_window img#TB_Image {
	display:block;
	margin: 15px 0 0 15px;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-top: 1px solid #666;
	border-left: 1px solid #666;
}

#TB_caption{
	height:25px;
	padding:7px 30px 10px 25px;
	float:left;
}

#TB_closeWindow{
	height:25px;
	padding:11px 25px 10px 0;
	float:right;
}

#TB_closeAjaxWindow{
	padding:7px 10px 5px 0;
	margin-bottom:1px;
	text-align:right;
	float:right;
}

#TB_ajaxWindowTitle{
	float:left;
	padding:7px 0 5px 10px;
	margin-bottom:1px;
}

#TB_title{
	background-color:#e8e8e8;
	height:27px;
}

#TB_ajaxContent{
	clear:both;
	padding:2px 15px 15px 15px;
	overflow:auto;
	text-align:left;
	line-height:1.4em;
}

#TB_ajaxContent.TB_modal{
	padding:15px;
}

#TB_ajaxContent p{
	padding:5px 0px 5px 0px;
}

#TB_load{
	position: fixed;
	display:none;
	height:13px;
	width:208px;
	z-index:103;
	top: 50%;
	left: 50%;
	margin: -6px 0 0 -104px; /* -height/2 0 0 -width/2 */
}

* html #TB_load { /* ie6 hack */
position: absolute;
margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
}

#TB_HideSelect{
	z-index:99;
	position:fixed;
	top: 0;
	left: 0;
	background-color:#fff;
	border:none;
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	height:100%;
	width:100%;
}

* html #TB_HideSelect { /* ie6 hack */
     position: absolute;
     height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}

#TB_iframeContent{
	clear:both;
	border:none;
	margin-bottom:-1px;
	margin-top:1px;
	_margin-bottom:1px;
}

File

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