source: trunk/spip/esqueleto-redcta/plugins/magusine-portage2/themes/cepetel/thickbox.css @ 394

Last change on this file since 394 was 394, checked in by guille, 15 years ago

se agrego theme cepetel

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