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