source: trunk/www.guidonia.net/wp/wp-content/plugins/wordpress-mobile-edition/carrington-mobile-1.0.2/carrington-core/lightbox/css/thickbox.css@ 44

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 3.0 KB
Line 
1/* ----------------------------------------------------------------------------------------------------------------*/
2/* ---------->>> thickbox settings <<<-----------------------------------------------------------------------------*/
3/* ----------------------------------------------------------------------------------------------------------------*/
4#TB_overlay {
5 position: fixed;
6 z-index:100;
7 top: 0px;
8 left: 0px;
9 height:100%;
10 width:100%;
11}
12
13.TB_overlayMacFFBGHack {background: url(../img/macFFBgHack.png) repeat;}
14.TB_overlayBG {
15 background-color:#000;
16 filter:alpha(opacity=75);
17 -moz-opacity: 0.75;
18 opacity: 0.75;
19}
20
21* html #TB_overlay { /* ie6 hack */
22 position: absolute;
23 height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
24}
25
26#TB_window {
27 position: fixed;
28 background: #ffffff;
29 z-index: 102;
30 display:none;
31 border: 2px solid #ccc;
32 text-align:left;
33 top:50%;
34 left:50%;
35}
36
37* html #TB_window { /* ie6 hack */
38position: absolute;
39margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
40}
41
42#TB_window img#TB_Image {
43 display:block;
44}
45
46#TB_caption{
47 padding:7px 30px 10px 25px;
48 float:left;
49 overflow:hidden;
50 word-wrap: break-word;
51}
52
53#TB_closeWindow{
54 height:25px;
55 padding:11px 25px 10px 0;
56 float:right;
57}
58
59#TB_closeAjaxWindow{
60 float:right;
61 padding:5px 15px 5px 0;
62 margin-bottom:1px;
63 text-align:right;
64}
65
66#TB_ajaxWindowTitle{
67 float:left;
68 padding:5px 0 5px 15px;
69}
70
71#TB_title{
72 height:27px;
73}
74
75#TB_ImageWrapper {
76 margin:15px 15px 0;
77 position:relative;
78}
79#TB_ImageHoverNav {
80 height:100%;
81 top:0;
82 width: 100%;
83 position:absolute;
84 zoom:1;
85}
86a#TB_prev,
87a#TB_next {
88 background:transparent url(../img/blank.gif); /* IE6 hover area hack */
89 height:100%;
90 width: 49%;
91 text-indent:-32000px;
92}
93a#TB_prev {
94 float:left;
95}
96a#TB_next {
97 float:right;
98}
99
100#TB_ajaxContent{
101 clear:both;
102 padding:2px 15px 15px 15px;
103 overflow:auto;
104 text-align:left;
105 line-height:1.4em;
106}
107
108#TB_ajaxContent.TB_modal{
109 padding:15px;
110}
111
112#TB_ajaxContent p{
113 padding:5px 0px 5px 0px;
114}
115
116#TB_load{
117 position: fixed;
118 display:none;
119 height:13px;
120 width:208px;
121 z-index:103;
122 top: 50%;
123 left: 50%;
124 margin: -6px 0 0 -104px; /* -height/2 0 0 -width/2 */
125}
126
127* html #TB_load { /* ie6 hack */
128position: absolute;
129margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
130}
131
132#TB_HideSelect{
133 z-index:99;
134 position:fixed;
135 top: 0;
136 left: 0;
137 background-color:#fff;
138 border:none;
139 filter:alpha(opacity=0);
140 -moz-opacity: 0;
141 opacity: 0;
142 height:100%;
143 width:100%;
144}
145
146* html #TB_HideSelect { /* ie6 hack */
147 position: absolute;
148 height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
149}
150
151#TB_iframeContent{
152 clear:both;
153 border:none;
154 margin-bottom:-1px;
155 margin-top:1px;
156 _margin-bottom:1px;
157}
Note: See TracBrowser for help on using the repository browser.