You are here

thickbox.css in Ajax Login/Register 6

Same filename and directory in other branches
  1. 6.2 thickbox.css
/* ----------------------------------------------------------------------------------------------------------------*/
/* ---------->>> 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;
	height:100%;
	width:100%;
}

.TB_overlayMacFFBGHack {background: url(macFFBgHack.png) repeat;}
.TB_overlayBG {
	background-color:#000;
	filter:alpha(opacity=75);
	-moz-opacity: 0.75;
	opacity: 0.75;
}

* 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

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. height:100%;
  30. width:100%;
  31. }
  32. .TB_overlayMacFFBGHack {background: url(macFFBgHack.png) repeat;}
  33. .TB_overlayBG {
  34. background-color:#000;
  35. filter:alpha(opacity=75);
  36. -moz-opacity: 0.75;
  37. opacity: 0.75;
  38. }
  39. * html #TB_overlay { /* ie6 hack */
  40. position: absolute;
  41. height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
  42. }
  43. #TB_window {
  44. position: fixed;
  45. background: #ffffff;
  46. z-index: 102;
  47. color:#000000;
  48. display:none;
  49. border: 4px solid #525252;
  50. text-align:left;
  51. top:50%;
  52. left:50%;
  53. }
  54. * html #TB_window { /* ie6 hack */
  55. position: absolute;
  56. margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
  57. }
  58. #TB_window img#TB_Image {
  59. display:block;
  60. margin: 15px 0 0 15px;
  61. border-right: 1px solid #ccc;
  62. border-bottom: 1px solid #ccc;
  63. border-top: 1px solid #666;
  64. border-left: 1px solid #666;
  65. }
  66. #TB_caption{
  67. height:25px;
  68. padding:7px 30px 10px 25px;
  69. float:left;
  70. }
  71. #TB_closeWindow{
  72. height:25px;
  73. padding:11px 25px 10px 0;
  74. float:right;
  75. }
  76. #TB_closeAjaxWindow{
  77. padding:7px 10px 5px 0;
  78. margin-bottom:1px;
  79. text-align:right;
  80. float:right;
  81. }
  82. #TB_ajaxWindowTitle{
  83. float:left;
  84. padding:7px 0 5px 10px;
  85. margin-bottom:1px;
  86. }
  87. #TB_title{
  88. background-color:#e8e8e8;
  89. height:27px;
  90. }
  91. #TB_ajaxContent{
  92. clear:both;
  93. padding:2px 15px 15px 15px;
  94. overflow:auto;
  95. text-align:left;
  96. line-height:1.4em;
  97. }
  98. #TB_ajaxContent.TB_modal{
  99. padding:15px;
  100. }
  101. #TB_ajaxContent p{
  102. padding:5px 0px 5px 0px;
  103. }
  104. #TB_load{
  105. position: fixed;
  106. display:none;
  107. height:13px;
  108. width:208px;
  109. z-index:103;
  110. top: 50%;
  111. left: 50%;
  112. margin: -6px 0 0 -104px; /* -height/2 0 0 -width/2 */
  113. }
  114. * html #TB_load { /* ie6 hack */
  115. position: absolute;
  116. margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
  117. }
  118. #TB_HideSelect{
  119. z-index:99;
  120. position:fixed;
  121. top: 0;
  122. left: 0;
  123. background-color:#fff;
  124. border:none;
  125. filter:alpha(opacity=0);
  126. -moz-opacity: 0;
  127. opacity: 0;
  128. height:100%;
  129. width:100%;
  130. }
  131. * html #TB_HideSelect { /* ie6 hack */
  132. position: absolute;
  133. height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
  134. }
  135. #TB_iframeContent{
  136. clear:both;
  137. border:none;
  138. margin-bottom:-1px;
  139. margin-top:1px;
  140. _margin-bottom:1px;
  141. }