alecpl
2008-09-29 bf2f39ea6d2b49c7495a43cca19ab18f27f8292e
commit | author | age
4e17e6 1 /***** RoundCube|Mail settings task styles *****/
T 2
3
4 #tabsbar
5 {
6   position: absolute;
a95e0e 7   top: 50px;
4e17e6 8   left: 220px;
795588 9   right: 20px;
4e17e6 10   height: 22px;
T 11   border-bottom: 1px solid #999999;
12   white-space: nowrap;
13   /* css hack for IE */
795588 14   width: expression((parseInt(document.documentElement.clientWidth)-240)+'px');
4e17e6 15 }
T 16
17 span.tablink,
18 span.tablink-selected
19 {
20   float: left;
455c2b 21   width: 100px;
T 22   height: 24px !important;
23   height: 22px;
4e17e6 24   background: url('images/tab_pas.gif') top left no-repeat;
T 25 }
26
27 span.tablink-selected
28 {
29   background: url('images/tab_act.gif') top left no-repeat;
30 }
31
32 span.tablink a,
33 span.tablink-selected a
34 {
455c2b 35   display: block;
T 36   padding-left: 10px;
37   padding-top: 5px;
38   color: #555555;
4e17e6 39   text-decoration: none;
T 40 }
41
455c2b 42 span.tablink-selected a
T 43 {
44   color: #000000;
45 }
46
4e17e6 47 #userprefs-box
T 48 {
49   position: absolute;
a95e0e 50   top: 95px;
4e17e6 51   left: 20px;
5d480c 52   bottom: 60px;
T 53   width: 640px;
c02492 54   overflow: auto;
5d480c 55   border: 1px solid #999999;
c02492 56   /* css hack for IE */
5d480c 57   height: expression((parseInt(document.documentElement.clientHeight)-155)+'px');
4e17e6 58 }
T 59
60 #userprefs-box table td.title
61 {
62   color: #666666;
63   padding-right: 10px;
64 }
65
ffae15 66 #userprefs-box table tr.advanced
A 67 {
68   display: none;
69 }
70
4e17e6 71 #identities-list,
T 72 #folder-manager
73 {
74   position: absolute;
a95e0e 75   top: 95px;
4e17e6 76   left: 20px;
T 77 }
78
24053e 79 #folder-manager
T 80 {
da35b6 81   width: 600px;
a8d23d 82   bottom: 140px;
24053e 83   overflow: auto;
T 84   border: 1px solid #999999;
c02492 85   /* css hack for IE */
1a39ba 86   height: expression((parseInt(document.documentElement.clientHeight)-235)+'px');
24053e 87 }
T 88
b0dbf3 89 #folder-manager.droptarget
S 90 {
91   border: 1px solid #CC3333;
92   background-color: #FFFFA6;
93 }
94
f645ce 95 #identities-list
T 96 {
97   bottom: 60px;
98   width: 420px;
99   border: 1px solid #999999;
795588 100   /* css hack for IE */
A 101   height: expression((parseInt(document.documentElement.clientHeight)-160)+'px');
f645ce 102 }
T 103
104 #listbuttons
105 {
106   position: absolute;
107   left: 20px;
108   bottom: 18px;
109 }
110
4e17e6 111 #identities-table
T 112 {
f645ce 113   width: 420px;
T 114   table-layout: fixed;
4e17e6 115   background-color: #F9F9F9;
T 116 }
117
118 #identities-table tbody td
119 {
1996d8 120   cursor: default;
f645ce 121   overflow: hidden;
T 122   text-overflow: ellipsis;
123 }
124
125 #identities-table thead td.name
126 {
127   width: 55%;
128 }
129
130 #identities-table thead td.email
131 {
132   width: 45%;
4e17e6 133 }
T 134
135 #identity-frame
136 {
137   position: relative;
138   margin-top: 20px;
139   border: 1px solid #999999;
140 }
141
142 #identity-details
143 {
f645ce 144   position: absolute;
T 145   top: 95px;
146   left: 450px;
795588 147   right: 20px;
f645ce 148   bottom: 60px;
4e17e6 149   border: 1px solid #999999;
f645ce 150   overflow: auto;
T 151   /* css hack for IE */
795588 152   width: expression((parseInt(document.documentElement.clientWidth)-470)+'px');
f645ce 153   height: expression((parseInt(document.documentElement.clientHeight)-160)+'px');
4e17e6 154 }
T 155
156 #identity-details table td.title
157 {
158   color: #666666;
159   font-weight: bold;
160   text-align: right;
161   padding-right: 10px;
162 }
163
24053e 164 #bottomboxes
T 165 {
166   position: absolute;
da35b6 167   width: 600px;
a8d23d 168   height: 120px;
24053e 169   left: 20px;
T 170   bottom: 20px;
171 }
172
4e17e6 173 #userprefs-title,
T 174 #identity-title,
175 div.boxtitle,
176 #subscription-table thead td
177 {
178   height: 12px !important;
179   padding: 4px 20px 3px 6px;
180   border-bottom: 1px solid #999999;
181   color: #333333;
182   font-size: 11px;
183   font-weight: bold;
184   background-color: #EBEBEB;
185   background-image: url(images/listheader_aqua.gif); 
186 }
187
188 div.settingsbox
189 {
da35b6 190   width: 600px;
4e17e6 191   margin-top: 20px;
T 192   border: 1px solid #999999;
193 }
194
195 div.settingspart
196 {
197   display: block;
198   padding: 10px;
199 }
200
201 #subscription-table
202 {
24053e 203   width: 100%;
4e17e6 204 }
T 205
206 #subscription-table tbody td
207 {
3e8bd7 208   height: 20px;
4e17e6 209   padding-left: 6px;
a8d23d 210   padding-right: 10px;
4e17e6 211   white-space: nowrap;
T 212   border-bottom: 1px solid #EBEBEB;
213   background-color: #F9F9F9;
cf507b 214   cursor: default;
b0dbf3 215 }
S 216
3e8bd7 217 #subscription-table tr.virtual td
T 218 {
219   color: #666;
220 }
221
b0dbf3 222 #subscription-table tr.selected td,
S 223 #subscription-table tr.selected td a
224 {
225   color: #FFFFFF;
226   background-color: #CC3333;
227 }
228
229 #subscription-table tr.droptarget td,
230 #subscription-table tr.droptarget td a
231 {
232   background-color: #FFFFA6;
4e17e6 233 }
T 234
a8d23d 235 #subscription-table thead td.name
4e17e6 236 {
da35b6 237   width: 250px;
4e17e6 238 }
T 239
a8d23d 240 #subscription-table thead td.msgcount
24053e 241 {
da35b6 242   width: 90px;
a8d23d 243 }
T 244
245 #subscription-table thead td.subscribed
246 {
da35b6 247   width: 90px;
24053e 248 }
a901aa 249
A 250 fieldset 
251 {
252   margin-bottom: 0.5em;
253   border: 1px solid #999999;
dea674 254   padding: 4px 8px 9px 8px; 
a901aa 255 }
A 256
257 legend
258 {
259   color: #999999;
260 }
ffae15 261
A 262 div.advswitch
263 {
264   white-space: nowrap;
265   text-align: right;
266   position: absolute;
267   bottom: 35px;
268   left: 20px;
269   width: 640px;
270 }