Project

General

Profile

Download (4.27 KB) Statistics
| Branch: | Tag: | Revision:
1
/* ----------------------------------------------------------------------------------------------------------------*/
2
/* ---------->>> global settings needed for thickbox <<<-----------------------------------------------------------*/
3
/* ----------------------------------------------------------------------------------------------------------------*/
4
*{padding: 0; margin: 0;}
5

    
6
/* ----------------------------------------------------------------------------------------------------------------*/
7
/* ---------->>> thickbox specific link and font settings <<<------------------------------------------------------*/
8
/* ----------------------------------------------------------------------------------------------------------------*/
9
#TB_window {
10
	font: 12px Arial, Helvetica, sans-serif;
11
	color: #333333;
12
}
13

    
14
#TB_secondLine {
15
	font: 10px Arial, Helvetica, sans-serif;
16
	color:#666666;
17
}
18

    
19
#TB_window a:link {color: #666666;}
20
#TB_window a:visited {color: #666666;}
21
#TB_window a:hover {color: #000;}
22
#TB_window a:active {color: #666666;}
23
#TB_window a:focus{color: #666666;}
24

    
25
/* ----------------------------------------------------------------------------------------------------------------*/
26
/* ---------->>> thickbox settings <<<-----------------------------------------------------------------------------*/
27
/* ----------------------------------------------------------------------------------------------------------------*/
28
#TB_overlay {
29
	position: fixed;
30
	z-index:100;
31
	top: 0px;
32
	left: 0px;
33
	height:100%;
34
	width:100%;
35
}
36

    
37
.TB_overlayMacFFBGHack {background: url('images/macFFBgHack.png') repeat;}
38
.TB_overlayBG {
39
	background-color:#000;
40
	filter:alpha(opacity=40);
41
	-moz-opacity: 0.40;
42
	opacity: 0.40;
43
}
44

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

    
50
#TB_window {
51
	position: fixed;
52
	background: #ffffff;
53
	z-index: 102;
54
	color:#000000;
55
	display:none;
56
	border: 1px solid #525252;
57
	text-align:left;
58
	top:50%;
59
	left:50%;
60
}
61

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

    
67
#TB_window img#TB_Image {
68
	display:block;
69
	margin: 15px 0 0 15px;
70
	padding: 1px;
71
	border-right: 1px solid #ccc;
72
	border-bottom: 1px solid #ccc;
73
	border-top: 1px solid #666;
74
	border-left: 1px solid #666;
75
}
76

    
77
#TB_caption{
78
	height:25px;
79
	padding:7px 30px 10px 25px;
80
	float:left;
81
}
82

    
83
#TB_zoom_instructions{
84
	height:25px;
85
	padding:7px 0 10px 0;
86
	margin: 0 auto;
87
	float:left;
88
}
89

    
90
#TB_closeWindow{
91
	height:25px;
92
	padding:11px 25px 10px 0;
93
	float:right;
94
}
95

    
96
#TB_closeAjaxWindow{
97
	padding:7px 10px 5px 0;
98
	margin-bottom:1px;
99
	text-align:right;
100
	float:right;
101
}
102

    
103
#TB_ajaxWindowTitle{
104
	float:left;
105
	padding:7px 0 5px 10px;
106
	margin-bottom:1px;
107
}
108

    
109
#TB_title{
110
	background-color:#e8e8e8;
111
	height:27px;
112
}
113

    
114
#TB_ajaxContent{
115
	clear:both;
116
	padding:2px 15px 15px 15px;
117
	overflow:auto;
118
	text-align:left;
119
	line-height:1.4em;
120
}
121

    
122
#TB_ajaxContent.TB_modal{
123
	padding:15px;
124
}
125

    
126
#TB_ajaxContent p{
127
	padding:5px 0px 5px 0px;
128
}
129

    
130
#TB_ajaxContent tbody {
131
  	border-width: 0px;
132
  	font-size: 90%;	
133
}
134

    
135
#TB_load{
136
	background-image: url('../images/loading.gif');
137
	background-repeat: no-repeat;
138
	background-color: #ffffff;
139
	background-position: center center;
140
  	border: 1px solid #525252;
141
	position: fixed;
142
	display:none;
143
	height:70px;
144
	width:210px;
145
	z-index:103;
146
	top: 50%;
147
	left: 50%;
148
	margin: -6px 0 0 -104px; /* -height/2 0 0 -width/2 */
149
}
150

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

    
156
#TB_HideSelect{
157
	z-index:99;
158
	position:fixed;
159
	top: 0;
160
	left: 0;
161
	background-color:#fff;
162
	border:none;
163
	filter:alpha(opacity=0);
164
	-moz-opacity: 0;
165
	opacity: 0;
166
	height:100%;
167
	width:100%;
168
}
169

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

    
175
#TB_iframeContent{
176
	clear:both;
177
	border:none;
178
	margin-bottom:-1px;
179
	margin-top:1px;
180
	_margin-bottom:1px;
181
}
(1-1/2)