diff options
author | Starla Insigna <hatkirby@fourisland.com> | 2008-12-21 08:22:33 -0500 |
---|---|---|
committer | Starla Insigna <hatkirby@fourisland.com> | 2008-12-21 08:22:33 -0500 |
commit | d2f5be11cca19c8ea159bb5add21322d4331ea51 (patch) | |
tree | c0f2c0eab39140775b860ea4f403452a20ac0e7a /theme/css | |
parent | 5d41d15d6a03cca11ba8972b525a04ab83f53f56 (diff) | |
download | fourisland-d2f5be11cca19c8ea159bb5add21322d4331ea51.tar.gz fourisland-d2f5be11cca19c8ea159bb5add21322d4331ea51.tar.bz2 fourisland-d2f5be11cca19c8ea159bb5add21322d4331ea51.zip |
Removed splash screen
Diffstat (limited to 'theme/css')
-rwxr-xr-x | theme/css/thickbox.css | 164 |
1 files changed, 0 insertions, 164 deletions
diff --git a/theme/css/thickbox.css b/theme/css/thickbox.css deleted file mode 100755 index 0de29b2..0000000 --- a/theme/css/thickbox.css +++ /dev/null | |||
@@ -1,164 +0,0 @@ | |||
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 */ | ||
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 | 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_ajaxWindowTitle{ | ||
96 | float:left; | ||
97 | padding:7px 0 5px 10px; | ||
98 | margin-bottom:1px; | ||
99 | } | ||
100 | |||
101 | #TB_title{ | ||
102 | background-color:#e8e8e8; | ||
103 | height:27px; | ||
104 | } | ||
105 | |||
106 | #TB_ajaxContent{ | ||
107 | clear:both; | ||
108 | padding:2px 15px 15px 15px; | ||
109 | overflow:auto; | ||
110 | text-align:center; | ||
111 | line-height:1.4em; | ||
112 | background: url(/theme/images/backgrounds/island6.PNG) bottom; | ||
113 | } | ||
114 | |||
115 | #TB_ajaxContent.TB_modal{ | ||
116 | padding:15px; | ||
117 | } | ||
118 | |||
119 | #TB_ajaxContent p{ | ||
120 | padding:5px 0px 5px 0px; | ||
121 | } | ||
122 | |||
123 | #TB_load{ | ||
124 | position: fixed; | ||
125 | display:none; | ||
126 | height:13px; | ||
127 | width:208px; | ||
128 | z-index:103; | ||
129 | top: 50%; | ||
130 | left: 50%; | ||
131 | margin: -6px 0 0 -104px; /* -height/2 0 0 -width/2 */ | ||
132 | } | ||
133 | |||
134 | * html #TB_load { /* ie6 hack */ | ||
135 | position: absolute; | ||
136 | margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px'); | ||
137 | } | ||
138 | |||
139 | #TB_HideSelect{ | ||
140 | z-index:99; | ||
141 | position:fixed; | ||
142 | top: 0; | ||
143 | left: 0; | ||
144 | background-color:#fff; | ||
145 | border:none; | ||
146 | filter:alpha(opacity=0); | ||
147 | -moz-opacity: 0; | ||
148 | opacity: 0; | ||
149 | height:100%; | ||
150 | width:100%; | ||
151 | } | ||
152 | |||
153 | * html #TB_HideSelect { /* ie6 hack */ | ||
154 | position: absolute; | ||
155 | height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px'); | ||
156 | } | ||
157 | |||
158 | #TB_iframeContent{ | ||
159 | clear:both; | ||
160 | border:none; | ||
161 | margin-bottom:-1px; | ||
162 | margin-top:1px; | ||
163 | _margin-bottom:1px; | ||
164 | } | ||