-
Notifications
You must be signed in to change notification settings - Fork 8
/
calendar.css
216 lines (187 loc) · 4.38 KB
/
calendar.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
#cal {
position: absolute;
top: 43px;
left: 210px;
right: 0px;
bottom: 0px;
background-color: #ffffff;
}
/** groupbox list styles */
#grouplist-container {
position: absolute;
top: 0px;
left: 0px;
width: 209px;
height: 100%;
border-right: 1px solid #bcc2c7;
background-color: #dfe1e3;
overflow: auto;
}
#groupboxlist {
margin: 43px 0px 0px 0px;
padding: 0px;
list-style: none;
white-space: nowrap;
}
#groupboxlist li {
height: 32px;
border-top: 1px solid #e9eaeb;
border-bottom: 1px solid #c7ccd1;
}
#groupboxlist li a {
height: 22px;
display: block;
font-size: 12px;
font-weight: bold;
text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.3);
font-family: Helvetica,Arial,sans-serif;
color: #40474D;
padding-left: 37px;
padding-top: 9px;
text-decoration: none;
cursor: default;
background: transparent url("images/icons/contacts.png") 13px 7px no-repeat;
}
#groupboxlist li.unread {
font-weight: bold;
}
#groupboxlist li.selected,
#groupboxlist li.droptarget li.selected {
background: #778da8 url("images/listselected.png") top left repeat-x;
border-top: 1px solid #87929c;
border-bottom: 1px solid #677482;
}
#groupboxlist li.selected > a,
#groupboxlist li.droptarget li.selected a
{
color: #FFF;
font-weight: bold;
}
#groupboxlist li.droptarget {
background-color: #c5d4e4;
}
/* styles for nested folders */
#groupboxlist ul {
margin: 0px;
padding: 2px 0px 0px 15px;
list-style: none;
white-space: nowrap;
background-position: 25px 0px;
}
#groupboxcontrols {
position: absolute;
left: 0px;
width: 209px;
bottom: 0px;
height: 33px;
overflow: hidden;
border-top: 1px solid #bcc2c7;
}
#groupboxcontrols a {
width: 37px;
height: 32px;
display: block;
overflow: hidden;
border-top: 1px solid #e9eaeb;
border-left: 1px solid #bcc2c7;
border-right: 1px solid #e9eaeb;
color: transparent;
float: left;
}
#groupboxcontrols a {
width: 36px;
background: transparent url("images/icons/export.png") 12px 10px no-repeat;
border-left: 0px solid transparent;
}
#groupboxcontrols a img {
display: none;
}
#groupboxcontrols #rcmcountdisplay {
width: 162px;
height: 33px;
border-top: 1px solid #e9eaeb;
border-left: 1px solid #bcc2c7;
color: #677482;
font-size: 11px;
font-weight: bold;
font-family: Helvetica,Arial,sans-serif;
text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
display: block;
margin: 0px 0px 0px 37px;
padding: 9px 0px 0px 9px;
}
#settingslist-container {
width: 209px;
height: 100%;
position: fixed;
top: 43px;
left: 0px;
bottom: auto;
border-right: 1px solid #bcc2c7;
background-color: #dfe1e3;
overflow: auto;
}
#settingslist {
margin: 0px 0px 0px 0px;
padding: 0px;
list-style: none;
white-space: nowrap;
}
#settingslist li {
height: 32px;
border-top: 1px solid #e9eaeb;
border-bottom: 1px solid #c7ccd1;
}
#settingslist li a {
height: 22px;
display: block;
font-size: 12px;
font-weight: bold;
text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.3);
font-family: Helvetica,Arial,sans-serif;
color: #40474D;
padding-left: 37px;
padding-top: 9px;
text-decoration: none;
cursor: default;
background: transparent url("images/icons/contacts.png") 13px 7px no-repeat;
}
#settingslist li.selected,
#settingslist li.droptarget li.selected {
background: #778da8 url("images/listselected.png") top left repeat-x;
border-top: 1px solid #87929c;
border-bottom: 1px solid #677482;
}
#settingslist li.selected > a,
#settingslist li.droptarget li.selected a
{
color: #FFF;
font-weight: bold;
}
#settingslist li.preferences a {
background: transparent url("images/icons/preferences.png") 12px 7px no-repeat;
}
#settingslist li.identities a {
background: transparent url("images/icons/identities.png") 12px 7px no-repeat;
}
#settingslist li.folders a {
background: transparent url("images/icons/folders.png") 12px 7px no-repeat;
}
#settingslist li.export a {
background: transparent url("images/icons/export.png") 12px 7px no-repeat;
}
#settingslist li.personal a {
background: transparent url("images/icons/personal.png") 12px 7px no-repeat;
}
#settingslist li.work a {
background: transparent url("images/icons/work.png") 12px 7px no-repeat;
}
#settingslist li.family a {
background: transparent url("images/icons/family.png") 12px 7px no-repeat;
}
#settingslist li.holiday a {
background: transparent url("images/icons/holiday.png") 12px 7px no-repeat;
}
#settingslist li.other a {
background: transparent url("images/icons/other.png") 12px 7px no-repeat;
}