source: trunk/web/app/out/dist/css/thickbox.css @ 1

Last change on this file since 1 was 1, checked in by dj3c1t, 12 years ago

import initial

File size: 4.1 KB
Line 
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(macFFBgHack.png) repeat;}
38.TB_overlayBG {
39        background-color:#000;
40        filter:alpha(opacity=75);
41        -moz-opacity: 0.75;
42        opacity: 0.75;
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: 4px solid #525252;
57        text-align:left;
58        top:50%;
59        left:50%;
60}
61
62* html #TB_window { /* ie6 hack */
63position: absolute;
64margin-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        border-right: 1px solid #ccc;
71        border-bottom: 1px solid #ccc;
72        border-top: 1px solid #666;
73        border-left: 1px solid #666;
74}
75
76#TB_caption{
77        height:25px;
78        padding:7px 30px 10px 25px;
79        float:left;
80}
81
82#TB_closeWindow{
83        height:25px;
84        padding:11px 25px 10px 0;
85        float:right;
86}
87
88#TB_closeAjaxWindow{
89        padding:7px 10px 5px 0;
90        margin-bottom:1px;
91        text-align:right;
92        float:right;
93}
94
95#TB_closeAjaxWindow a
96{ text-decoration: none;
97  background-image: url("../icons/del.gif");
98  background-repeat: no-repeat;
99  line-height: 11px;
100  padding: 0 13px 0 0;
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_load{
131        position: fixed;
132        display:none;
133        height:13px;
134        width:208px;
135        z-index:103;
136        top: 50%;
137        left: 50%;
138        margin: -6px 0 0 -104px; /* -height/2 0 0 -width/2 */
139}
140
141* html #TB_load { /* ie6 hack */
142position: absolute;
143margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
144}
145
146#TB_HideSelect{
147        z-index:99;
148        position:fixed;
149        top: 0;
150        left: 0;
151        background-color:#fff;
152        border:none;
153        filter:alpha(opacity=0);
154        -moz-opacity: 0;
155        opacity: 0;
156        height:100%;
157        width:100%;
158}
159
160* html #TB_HideSelect { /* ie6 hack */
161     position: absolute;
162     height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
163}
164
165#TB_iframeContent{
166        clear:both;
167        border:none;
168        margin-bottom:-1px;
169        margin-top:1px;
170        _margin-bottom:1px;
171}
Note: See TracBrowser for help on using the repository browser.