alecpl
2008-09-12 620ca6644808ad4dd489e15e8d7a6e0417675a3e
commit | author | age
4e17e6 1 /***** RoundCube|Mail address book task styles *****/
T 2
3 #abooktoolbar
4 {
5   position: absolute;
7902df 6   top: 45px;
4e17e6 7   left: 200px;
T 8   height: 35px;
9 }
10
11 #abooktoolbar a
12 {
13   padding-right: 10px;
14 }
15
16 #abookcountbar
17 {
18   position: absolute;
f11541 19   bottom: 16px;
e5686f 20   left: 190px;
24053e 21   width: 240px;
4e17e6 22   height: 20px;
T 23   text-align: left;
24 }
25
26 #abookcountbar span
27 {
28   font-size: 11px;
29   color: #333333;
30 }
31
e5686f 32 #mainscreen
A 33 {
34   position: absolute;
35   top: 85px;
36   right: 20px;
37   bottom: 40px;
38   left: 200px;
39   /* css hack for IE */
40   width: expression((parseInt(document.documentElement.clientWidth)-220)+'px');
41   height: expression((parseInt(document.documentElement.clientHeight)-125)+'px');
42 }
43
44 #directorylist
4e17e6 45 {
T 46   position: absolute;
7902df 47   top: 85px;
T 48   bottom: 40px;
e5686f 49   left: 20px;
A 50   width: 170px;
4e17e6 51   border: 1px solid #999999;
T 52   background-color: #F9F9F9;
e5686f 53   overflow: hidden;
A 54   /* css hack for IE */
55   height: expression((parseInt(document.documentElement.clientHeight)-125)+'px');  
56 }
57
58 #addresslist
59 {
60   position: absolute;
61   top: 0px;
62   bottom: 0px;
63   border: 1px solid #999999;
64   background-color: #F9F9F9;
65   overflow: auto;
66   /* css hack for IE */
67   height: expression(parseInt(this.parentNode.offsetHeight)+'px');
68 }
69
70 #importbox
71 {
72   position: absolute;
73   top: 85px;
74   bottom: 40px;
75   left: 20px;
76   right: 20px;
77   border: 1px solid #999999;
78   background-color: #F9F9F9;
79   padding-bottom: 4ex;
4e17e6 80   overflow: auto;
T 81   /* css hack for IE */
f11541 82   height: expression((parseInt(document.documentElement.clientHeight)-135)+'px');  
4e17e6 83 }
f11541 84
T 85 #addresslist
86 {
e5686f 87   left: 0px;
f11541 88   width: 340px;
ed132e 89 }
T 90
91 #importbox a
92 {
93   color: blue;
94 }
95
f11541 96 #directorylist ul
T 97 {
98   list-style: none;
99   margin: 0;
100   padding: 0;
101 }
102
a549a9 103 #directorylist ul li
f11541 104 {
T 105   font-size: 11px;
106   border-bottom: 1px solid #EBEBEB;
f89f03 107   white-space: nowrap;
f11541 108 }
T 109
110 #directorylist ul li a
111 {
112   display: block;
113   padding-left: 6px;
114   padding-top: 2px;
115   padding-bottom: 2px;
116   text-decoration: none;
f89f03 117   white-space: nowrap;
f11541 118 }
T 119
120 #directorylist li.selected
121 {
122   background-color: #929292;
123   border-bottom: 1px solid #898989;
124 }
125
126 #directorylist li.selected a
127 {
128   color: #FFF;
129   font-weight: bold;
130 }
131
132 #directorylist li.droptarget
133 {
134   background-color: #FFFFA6;
135 }
136
4e17e6 137
T 138 #contacts-table
139 {
140   width: 100%;
141   table-layout: fixed;
142   /* css hack for IE */
143   width: expression(document.getElementById('addresslist').clientWidth);
144 }
145
146
147 #contacts-table tbody td
148 {
1996d8 149   cursor: default;
4e17e6 150 }
T 151
152
153 #contacts-box
154 {
155   position: absolute;
e5686f 156   top: 0px;
f89f03 157   left: 555px;
e5686f 158   right: 0px;
A 159   bottom: 0px;
4e17e6 160   border: 1px solid #999999;
T 161   overflow: hidden;
162   /* css hack for IE */
e5686f 163   height: expression(parseInt(this.parentNode.offsetHeight)+'px');
A 164   width: expression((parseInt(this.parentNode.offsetWidth)-555)+'px');
4e17e6 165 }
a7d5c6 166
4e17e6 167 body.iframe,
T 168 #contact-frame
169 {
170   background-color: #F9F9F9;
171 }
172
173 #contact-frame
174 {
175   border: none;
176 /* visibility: hidden; */
177 }
178
f11541 179 #contact-title, #groups-title
T 180 {
181   height: 12px !important;
182 /*  height: 20px; */
183   padding: 4px 5px 3px 5px;
184   border-bottom: 1px solid #999;
185   color: #333;
186   font-size: 11px;
187   font-weight: bold;
188   background-color: #EBEBEB;
189   background-image: url(images/listheader_aqua.gif);
190   white-space: nowrap;
191 }
192
193 #contact-title
194 {
195   padding: 4px 10px 3px 10px;
196 }
4e17e6 197
T 198 #contact-details
199 {
f11541 200   padding: 15px 10px 10px 10px;
4e17e6 201 }
T 202
203 #contact-details table td.title
204 {
f11541 205   color: #666;
4e17e6 206   font-weight: bold;
T 207   text-align: right;
208   padding-right: 10px;
209 }
210
211