@aleen42/calendar 1.0.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -0
- package/demo.html +119 -0
- package/dist/9eceb62f790dc6664c0f.woff +0 -0
- package/dist/b2e9f38f50b2856cfb7b.svg +19 -0
- package/dist/calendar.css +3232 -0
- package/dist/calendar.js +33546 -0
- package/dist/calendar.legacy.min.js +2 -0
- package/dist/calendar.legacy.min.js.LICENSE.txt +27 -0
- package/dist/calendar.min.css +1 -0
- package/dist/calendar.min.js +2 -0
- package/dist/calendar.min.js.LICENSE.txt +27 -0
- package/dist/d1e19c206521a2f6e312.svg +479 -0
- package/dist/e5beb85938a21e19d919.eot +0 -0
- package/dist/f0ff85322612bef16e97.ttf +0 -0
- package/dist/f2902003dc9982a911dc.svg +19 -0
- package/dist/iconfont.css +1 -0
- package/dist/iconfont.js +1 -0
- package/package.json +27 -0
|
@@ -0,0 +1,3232 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2025 Mailtech.cn, Ltd. All Rights Reserved.
|
|
3
|
+
*/
|
|
4
|
+
/*
|
|
5
|
+
* Copyright (c) 2018 Mailtech.cn, Ltd. All Rights Reserved.
|
|
6
|
+
*/
|
|
7
|
+
.radio,
|
|
8
|
+
.checkbox {
|
|
9
|
+
/* width and height of one radio/checkbox */
|
|
10
|
+
font-size: 16px;
|
|
11
|
+
/* desired margin */
|
|
12
|
+
margin: 2px 0;
|
|
13
|
+
display: inline-block;
|
|
14
|
+
vertical-align: middle;
|
|
15
|
+
/* ie 6 */
|
|
16
|
+
overflow: hidden;
|
|
17
|
+
}
|
|
18
|
+
.radio:before,
|
|
19
|
+
.checkbox:before {
|
|
20
|
+
float: left;
|
|
21
|
+
transition: all 0.1s cubic-bezier(0.17, 0.17, 0, 1);
|
|
22
|
+
}
|
|
23
|
+
/* hide input from view but still visible (ie & opera support) */
|
|
24
|
+
.rc-hidden {
|
|
25
|
+
position: absolute !important;
|
|
26
|
+
left: -999em;
|
|
27
|
+
}
|
|
28
|
+
.rc-disabled {
|
|
29
|
+
opacity: 0.3;
|
|
30
|
+
}
|
|
31
|
+
/* switch button 切换按钮*/
|
|
32
|
+
.u-switch-onoff {
|
|
33
|
+
float: left;
|
|
34
|
+
position: relative;
|
|
35
|
+
width: 32px;
|
|
36
|
+
height: 18px;
|
|
37
|
+
border-radius: 100px;
|
|
38
|
+
background-color: #505052;
|
|
39
|
+
border: 1px solid #505052;
|
|
40
|
+
overflow: hidden;
|
|
41
|
+
}
|
|
42
|
+
.u-switch-onoff:not(.rc-disabled) {
|
|
43
|
+
cursor: pointer;
|
|
44
|
+
}
|
|
45
|
+
.u-switch-onoff .switch,
|
|
46
|
+
.u-switch-onoff .track {
|
|
47
|
+
transition: all 0.1s cubic-bezier(0.17, 0.17, 0, 1);
|
|
48
|
+
}
|
|
49
|
+
.u-switch-onoff .switch {
|
|
50
|
+
left: 1px;
|
|
51
|
+
top: 1px;
|
|
52
|
+
bottom: 1px;
|
|
53
|
+
right: 16px;
|
|
54
|
+
background-color: #505052;
|
|
55
|
+
border-radius: 36px;
|
|
56
|
+
z-index: 1;
|
|
57
|
+
}
|
|
58
|
+
.u-switch-onoff .track {
|
|
59
|
+
left: 0;
|
|
60
|
+
top: 0;
|
|
61
|
+
right: 0;
|
|
62
|
+
bottom: 0;
|
|
63
|
+
border-radius: 100px;
|
|
64
|
+
background: #fff;
|
|
65
|
+
}
|
|
66
|
+
.u-switch-onoff .switch,
|
|
67
|
+
.u-switch-onoff .track {
|
|
68
|
+
position: absolute;
|
|
69
|
+
}
|
|
70
|
+
.u-switch-onoff.checkbox-checked {
|
|
71
|
+
border-color: #2c6ccc;
|
|
72
|
+
background-color: #2c6ccc;
|
|
73
|
+
}
|
|
74
|
+
.u-switch-onoff.checkbox-checked .switch {
|
|
75
|
+
right: 1px;
|
|
76
|
+
left: 16px;
|
|
77
|
+
background: #fff;
|
|
78
|
+
}
|
|
79
|
+
.u-switch-onoff.checkbox-checked .track {
|
|
80
|
+
background-color: transparent;
|
|
81
|
+
}
|
|
82
|
+
.u-btn * {
|
|
83
|
+
margin: 0;
|
|
84
|
+
padding: 0;
|
|
85
|
+
}
|
|
86
|
+
.u-btn {
|
|
87
|
+
position: relative;
|
|
88
|
+
display: inline-block;
|
|
89
|
+
*display: inline;
|
|
90
|
+
height: 30px;
|
|
91
|
+
line-height: 30px;
|
|
92
|
+
text-align: center;
|
|
93
|
+
text-decoration: none;
|
|
94
|
+
vertical-align: middle;
|
|
95
|
+
cursor: pointer;
|
|
96
|
+
font-size: 14px;
|
|
97
|
+
font-family: inherit;
|
|
98
|
+
/* Correct font family not being inherited in all browsers for <button> <input> */
|
|
99
|
+
font-weight: normal;
|
|
100
|
+
border: 1px solid #e8e8e8;
|
|
101
|
+
border-radius: 4px;
|
|
102
|
+
padding: 0 6px;
|
|
103
|
+
*zoom: 1;
|
|
104
|
+
*overflow: visible;
|
|
105
|
+
/* for a ie6/7 bug http://blog.csdn.net/jyy_12/article/details/6636099 */
|
|
106
|
+
background-image: none;
|
|
107
|
+
white-space: nowrap;
|
|
108
|
+
user-select: none;
|
|
109
|
+
outline: none;
|
|
110
|
+
}
|
|
111
|
+
.u-btn::-moz-focus-inner {
|
|
112
|
+
margin: 0;
|
|
113
|
+
padding: 0;
|
|
114
|
+
border: 0;
|
|
115
|
+
}
|
|
116
|
+
.u-btn .u-btn-text {
|
|
117
|
+
background: none;
|
|
118
|
+
padding: 0;
|
|
119
|
+
height: auto;
|
|
120
|
+
line-height: 1;
|
|
121
|
+
}
|
|
122
|
+
.u-btn:hover {
|
|
123
|
+
text-decoration: none;
|
|
124
|
+
}
|
|
125
|
+
.u-btn:active {
|
|
126
|
+
outline: 0;
|
|
127
|
+
background-image: none;
|
|
128
|
+
}
|
|
129
|
+
.u-btn.disabled,
|
|
130
|
+
.u-btn[disabled],
|
|
131
|
+
.u-btn.disabled:active,
|
|
132
|
+
.u-btn[disabled]:active {
|
|
133
|
+
cursor: not-allowed;
|
|
134
|
+
pointer-events: none;
|
|
135
|
+
box-shadow: none;
|
|
136
|
+
opacity: 0.5;
|
|
137
|
+
}
|
|
138
|
+
/* 按钮组 */
|
|
139
|
+
.u-btns {
|
|
140
|
+
position: relative;
|
|
141
|
+
display: inline-block;
|
|
142
|
+
vertical-align: middle;
|
|
143
|
+
zoom: 1;
|
|
144
|
+
}
|
|
145
|
+
.u-btns:before,
|
|
146
|
+
.u-btns:after {
|
|
147
|
+
content: " ";
|
|
148
|
+
display: table;
|
|
149
|
+
}
|
|
150
|
+
.u-btns:after {
|
|
151
|
+
clear: both;
|
|
152
|
+
}
|
|
153
|
+
.u-btns > .u-btn {
|
|
154
|
+
position: relative;
|
|
155
|
+
float: left;
|
|
156
|
+
}
|
|
157
|
+
.u-btns > .u-btn:focus,
|
|
158
|
+
.u-btns > .u-btn:active,
|
|
159
|
+
.u-btns > .u-btn.active {
|
|
160
|
+
z-index: 100;
|
|
161
|
+
}
|
|
162
|
+
.u-btns > .u-btn:hover {
|
|
163
|
+
z-index: 101;
|
|
164
|
+
}
|
|
165
|
+
.u-btns > .u-btn .iconfont {
|
|
166
|
+
line-height: 1;
|
|
167
|
+
}
|
|
168
|
+
.u-btns .u-btn + .u-btn {
|
|
169
|
+
margin-left: -1px;
|
|
170
|
+
}
|
|
171
|
+
.u-btns .u-btn:not(:first-child):not(:last-child) {
|
|
172
|
+
border-radius: 0;
|
|
173
|
+
}
|
|
174
|
+
.u-btns > .u-btn:first-child:not(:last-child) {
|
|
175
|
+
border-top-right-radius: 0;
|
|
176
|
+
border-bottom-right-radius: 0;
|
|
177
|
+
}
|
|
178
|
+
.u-btns > .u-btn:last-child:not(:first-child) {
|
|
179
|
+
border-top-left-radius: 0;
|
|
180
|
+
border-bottom-left-radius: 0;
|
|
181
|
+
}
|
|
182
|
+
/* 按钮尺寸 */
|
|
183
|
+
.u-btn-round {
|
|
184
|
+
border-radius: 50%;
|
|
185
|
+
padding: 0 7px;
|
|
186
|
+
}
|
|
187
|
+
.u-btn-large {
|
|
188
|
+
height: 32px;
|
|
189
|
+
line-height: 32px;
|
|
190
|
+
}
|
|
191
|
+
.u-btn-large.u-btn-round {
|
|
192
|
+
padding: 0 8px;
|
|
193
|
+
}
|
|
194
|
+
input.u-btn.u-btn-large,
|
|
195
|
+
button.u-btn.u-btn-large {
|
|
196
|
+
height: 34px;
|
|
197
|
+
line-height: 32px;
|
|
198
|
+
}
|
|
199
|
+
input.u-btn,
|
|
200
|
+
button.u-btn {
|
|
201
|
+
height: 32px;
|
|
202
|
+
line-height: 30px;
|
|
203
|
+
}
|
|
204
|
+
.u-btn-small {
|
|
205
|
+
font-size: 12px;
|
|
206
|
+
height: 22px;
|
|
207
|
+
line-height: 22px;
|
|
208
|
+
}
|
|
209
|
+
.u-btn-small.u-btn-round {
|
|
210
|
+
padding: 0 3px;
|
|
211
|
+
}
|
|
212
|
+
input.u-btn.u-btn-small,
|
|
213
|
+
button.u-btn.u-btn-small {
|
|
214
|
+
height: 24px;
|
|
215
|
+
line-height: 22px;
|
|
216
|
+
}
|
|
217
|
+
/* 按钮样式 */
|
|
218
|
+
.u-btn-default {
|
|
219
|
+
color: #505052;
|
|
220
|
+
background-color: #fff;
|
|
221
|
+
border-color: #D9D9D9;
|
|
222
|
+
}
|
|
223
|
+
.u-btn-default:hover {
|
|
224
|
+
color: #505052;
|
|
225
|
+
background-color: #F5F6F7;
|
|
226
|
+
border-color: #B2B2B2;
|
|
227
|
+
}
|
|
228
|
+
.u-btn-default.focus,
|
|
229
|
+
.u-btn-default:active,
|
|
230
|
+
.u-btn-default.active {
|
|
231
|
+
color: #505052;
|
|
232
|
+
background-color: #E8E9EB;
|
|
233
|
+
border-color: #B2B2B2;
|
|
234
|
+
}
|
|
235
|
+
.u-btn-default.disabled,
|
|
236
|
+
.u-btn-default[disabled],
|
|
237
|
+
.u-btn-default.disabled:hover,
|
|
238
|
+
.u-btn-default[disabled]:hover,
|
|
239
|
+
.u-btn-default.disabled.focus,
|
|
240
|
+
.u-btn-default[disabled].focus,
|
|
241
|
+
.u-btn-default.disabled:active,
|
|
242
|
+
.u-btn-default[disabled]:active,
|
|
243
|
+
.u-btn-default.disabled.active,
|
|
244
|
+
.u-btn-default[disabled].active {
|
|
245
|
+
background-color: #F5F6F7;
|
|
246
|
+
border-color: #D9D9D9;
|
|
247
|
+
}
|
|
248
|
+
.u-btn-primary {
|
|
249
|
+
color: #fff;
|
|
250
|
+
background-color: #2c6ccc;
|
|
251
|
+
border-color: #2c6ccc;
|
|
252
|
+
}
|
|
253
|
+
.u-btn-primary:hover {
|
|
254
|
+
color: #fff;
|
|
255
|
+
background-color: #188BCE;
|
|
256
|
+
border-color: #2c6ccc;
|
|
257
|
+
}
|
|
258
|
+
.u-btn-primary.focus,
|
|
259
|
+
.u-btn-primary:active,
|
|
260
|
+
.u-btn-primary.active {
|
|
261
|
+
color: #fff;
|
|
262
|
+
background-color: #11699C;
|
|
263
|
+
border-color: #11699C;
|
|
264
|
+
}
|
|
265
|
+
.u-btn-primary.disabled,
|
|
266
|
+
.u-btn-primary[disabled],
|
|
267
|
+
.u-btn-primary.disabled:hover,
|
|
268
|
+
.u-btn-primary[disabled]:hover,
|
|
269
|
+
.u-btn-primary.disabled.focus,
|
|
270
|
+
.u-btn-primary[disabled].focus,
|
|
271
|
+
.u-btn-primary.disabled:active,
|
|
272
|
+
.u-btn-primary[disabled]:active,
|
|
273
|
+
.u-btn-primary.disabled.active,
|
|
274
|
+
.u-btn-primary[disabled].active {
|
|
275
|
+
background-color: #2c6ccc;
|
|
276
|
+
border-color: #2c6ccc;
|
|
277
|
+
}
|
|
278
|
+
.u-btn-success {
|
|
279
|
+
color: #fff;
|
|
280
|
+
background-color: #26AF1E;
|
|
281
|
+
border-color: #26AF1E;
|
|
282
|
+
}
|
|
283
|
+
.u-btn-success:hover {
|
|
284
|
+
color: #fff;
|
|
285
|
+
background-color: #27B820;
|
|
286
|
+
border-color: #26AF1E;
|
|
287
|
+
}
|
|
288
|
+
.u-btn-success.focus,
|
|
289
|
+
.u-btn-success:active,
|
|
290
|
+
.u-btn-success.active {
|
|
291
|
+
color: #fff;
|
|
292
|
+
background-color: #219E1A;
|
|
293
|
+
border-color: #26AF1E;
|
|
294
|
+
}
|
|
295
|
+
.u-btn-success.disabled,
|
|
296
|
+
.u-btn-success[disabled],
|
|
297
|
+
.u-btn-success.disabled:hover,
|
|
298
|
+
.u-btn-success[disabled]:hover,
|
|
299
|
+
.u-btn-success.disabled.focus,
|
|
300
|
+
.u-btn-success[disabled].focus,
|
|
301
|
+
.u-btn-success.disabled:active,
|
|
302
|
+
.u-btn-success[disabled]:active,
|
|
303
|
+
.u-btn-success.disabled.active,
|
|
304
|
+
.u-btn-success[disabled].active {
|
|
305
|
+
background-color: #26AF1E;
|
|
306
|
+
border-color: #26AF1E;
|
|
307
|
+
}
|
|
308
|
+
.u-btn-warning {
|
|
309
|
+
color: #fff;
|
|
310
|
+
background-color: #F1BA31;
|
|
311
|
+
border-color: #F1BA31;
|
|
312
|
+
}
|
|
313
|
+
.u-btn-warning:hover {
|
|
314
|
+
color: #fff;
|
|
315
|
+
background-color: #FEC535;
|
|
316
|
+
border-color: #F1BA31;
|
|
317
|
+
}
|
|
318
|
+
.u-btn-warning.focus,
|
|
319
|
+
.u-btn-warning:active,
|
|
320
|
+
.u-btn-warning.active {
|
|
321
|
+
color: #fff;
|
|
322
|
+
background-color: #E5B02E;
|
|
323
|
+
border-color: #F1BA31;
|
|
324
|
+
}
|
|
325
|
+
.u-btn-warning.disabled,
|
|
326
|
+
.u-btn-warning[disabled],
|
|
327
|
+
.u-btn-warning.disabled:hover,
|
|
328
|
+
.u-btn-warning[disabled]:hover,
|
|
329
|
+
.u-btn-warning.disabled.focus,
|
|
330
|
+
.u-btn-warning[disabled].focus,
|
|
331
|
+
.u-btn-warning.disabled:active,
|
|
332
|
+
.u-btn-warning[disabled]:active,
|
|
333
|
+
.u-btn-warning.disabled.active,
|
|
334
|
+
.u-btn-warning[disabled].active {
|
|
335
|
+
background-color: #F1BA31;
|
|
336
|
+
border-color: #F1BA31;
|
|
337
|
+
}
|
|
338
|
+
.u-btn-error {
|
|
339
|
+
color: #fff;
|
|
340
|
+
background-color: #E15051;
|
|
341
|
+
border-color: #E15051;
|
|
342
|
+
}
|
|
343
|
+
.u-btn-error:hover {
|
|
344
|
+
color: #fff;
|
|
345
|
+
background-color: #FD595B;
|
|
346
|
+
border-color: #E15051;
|
|
347
|
+
}
|
|
348
|
+
.u-btn-error.focus,
|
|
349
|
+
.u-btn-error:active,
|
|
350
|
+
.u-btn-error.active {
|
|
351
|
+
color: #fff;
|
|
352
|
+
background-color: #CF3D3F;
|
|
353
|
+
border-color: #E15051;
|
|
354
|
+
}
|
|
355
|
+
.u-btn-error.disabled,
|
|
356
|
+
.u-btn-error[disabled],
|
|
357
|
+
.u-btn-error.disabled:hover,
|
|
358
|
+
.u-btn-error[disabled]:hover,
|
|
359
|
+
.u-btn-error.disabled.focus,
|
|
360
|
+
.u-btn-error[disabled].focus,
|
|
361
|
+
.u-btn-error.disabled:active,
|
|
362
|
+
.u-btn-error[disabled]:active,
|
|
363
|
+
.u-btn-error.disabled.active,
|
|
364
|
+
.u-btn-error[disabled].active {
|
|
365
|
+
background-color: #E15051;
|
|
366
|
+
border-color: #E15051;
|
|
367
|
+
}
|
|
368
|
+
/* 局部遮罩 */
|
|
369
|
+
.u-lmask {
|
|
370
|
+
position: absolute;
|
|
371
|
+
top: 0;
|
|
372
|
+
left: 0;
|
|
373
|
+
width: 100%;
|
|
374
|
+
height: 100%;
|
|
375
|
+
z-index: 100;
|
|
376
|
+
background: #fff;
|
|
377
|
+
opacity: 0.8;
|
|
378
|
+
}
|
|
379
|
+
.u-lmask-floater {
|
|
380
|
+
position: relative;
|
|
381
|
+
height: 50%;
|
|
382
|
+
margin-bottom: -50px;
|
|
383
|
+
}
|
|
384
|
+
.u-lmask-content {
|
|
385
|
+
position: relative;
|
|
386
|
+
height: 100px;
|
|
387
|
+
width: 80%;
|
|
388
|
+
margin: 0 auto;
|
|
389
|
+
text-align: center;
|
|
390
|
+
}
|
|
391
|
+
.u-lmask-loading {
|
|
392
|
+
background: url(data:image/gif;base64,R0lGODlhZAAoAMQdAC+QxAt9uqvS56rS5y2PwxKBvK3T6KzT5wp9uSeMwiGJwODu9iKKwOHv9rjZ64G822uw1Wmv1PX6/Pb6/D6YyGqw1ROBvH+72yWLwSaMwYC724K82wV6uP///wAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/wtYTVAgRGF0YVhNUDw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMDE0IDc5LjE1Njc5NywgMjAxNC8wOC8yMC0wOTo1MzowMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkRFRjVFQTI3Qzg4MzExRTRBQTdDRUEyMDdENEI3QzZGIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkRFRjVFQTI4Qzg4MzExRTRBQTdDRUEyMDdENEI3QzZGIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6REVGNUVBMjVDODgzMTFFNEFBN0NFQTIwN0Q0QjdDNkYiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6REVGNUVBMjZDODgzMTFFNEFBN0NFQTIwN0Q0QjdDNkYiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4B//79/Pv6+fj39vX08/Lx8O/u7ezr6uno5+bl5OPi4eDf3t3c29rZ2NfW1dTT0tHQz87NzMvKycjHxsXEw8LBwL++vby7urm4t7a1tLOysbCvrq2sq6qpqKempaSjoqGgn56dnJuamZiXlpWUk5KRkI+OjYyLiomIh4aFhIOCgYB/fn18e3p5eHd2dXRzcnFwb25tbGtqaWhnZmVkY2JhYF9eXVxbWllYV1ZVVFNSUVBPTk1MS0pJSEdGRURDQkFAPz49PDs6OTg3NjU0MzIxMC8uLSwrKikoJyYlJCMiISAfHh0cGxoZGBcWFRQTEhEQDw4NDAsKCQgHBgUEAwIBAAAh+QQJDAAdACwAAAAAZAAoAAAF/WAnjmRpnmiqrmzrvnAsz3Rt33iu73zv/8CgcEgsGo/IpHLJbDqf0Kh0Sq1afQ0II8CANK5FR4FDJhccYOHCUm4XFiUBIAAQoOR0+wlfv8/7e396ORFthhAkBoaDI4ptjCKOZZAdkmSUlhyUNAqGbQwkAIYAJqJtpCWmZaiho6WuOQGeZQEksm21Jbe0JrtkubaGwCO+HMM2nbMcoCOqZKzNsK2nr9Sp0jeFyhEkB4YDJt5t4CXiZeTd3+HqOQtjnm8lAwQIBOjy9PYo8/X3JPz6TgD0d0OMoTNphjSooCCAggpfEkqcSLGixYsYM2rcyLGjx48gQ4ocSbJklBAAIfkECQwAHQAsAAAAAGQAKAAABf9gJ45kaZ5oqq5s675wLM90bd94ru987//AoHBILBqPyKRyyWw6n9CodEqtWpcNCCPAgDSuuckjEUg8JiVHgcNmFxxgm4TSZlMko4Wl3i4sSgIAAQACKIGDhSeHhIaCjDsafGwbIxGSbRAkBnyJmpwmm3WdI6FtozcJlxkjCpdsDCQAfAAmsnW0JbZtuLGzOwGXASPArsLDfMYkxG3Jx3XNIsts0DapkhisrhywI7psvN2+ueK9tzsXlw+V2hEkB3wDJu918SXzbfXu8DtzfHd5ayT5KTGAAAIC+QgaRIii4MGEJBwy5CGGjBk0JNTweRNnSIMKCgIoqPClo8mTKFMVqlzJsqXLlzBjypxJs6bNmzhzEgkBACH5BAkMAB0ALAAAAABkACgAAAX/YCeOZGmeaKqubOu+cCzPdG3feK7vfO//wKBwSCwaj8ikcslsOp/QqHRKrVqvnQaEEWBAGljc5JEIJB6TkqPAabcLjrBKAAgABCYJxd2mSEYLFnxuBQsldHZ4J4h3KIyKOwaDkCIag20bIxGXbhAkknyUIqBuoh2kbaY2AIMAJQmcGSMKnG0MJKx8riW5bru4rTwBgwElw5fFIsecycrEJsttzSPRHNM4vW2/IrCXGLO1HLcj2RzbIuXnHek8B4MDJRecD5rhESTufPAl+W77+O96DCCAgMC/EXoG+QHE5lKhEgMLHiQR0SCKihOLjClzJg2JNYPgyBHSoIKCAAoqHIAZybKly5cwY8qcSbOmzZs4c+rcybOnz58iQgAAIfkECQwAHQAsAAAAAGQAKAAABf9gJ45kaZ5oqq5s675wLM90bd94ru987//AoHBILBqPyKRyyWw6n9CodEqtWq+uBoQRYEAaWNzkkQgkHpOSo8BptwsOqwAQAAhQ8/q9JKG42xQSIwsWf24FCyV5dnh0jDwGhnskkX+TIhqGbRsjEZpuEJSSJpVulzgAhgAmqX+rJAmfGSMKn20MJK1ur7mqPAGGASbAf8IkxMEjyJrGIssczcrJO7ptvCPVHNcdsZoYtLYcuNi+JdnbNweGAybqf+wkF58PneERJO5u8PjrPQMECAjsK/Ev4EARfQwFGsRGEyKCAAWiKCjRypgyZ9KQWGMITpghDSooCKCgApiPKFMXqlzJsqXLlzBjypxJs6bNmzhz6typIgQAIfkECQwAHQAsAAAAAGQAKAAABf9gJ45kaZ5oqq5s675wLM90bd94ru987//AoHBILBqPyKRyyWw6n9CodEqtWq+7BoQRYEAaWNzkkQgkHpOSo8BptwuOpAAQAAhQ8/r9lLebJBRubRQSIwsWgm4FCyV9ezsGiY8jkYKTIpVulxqJbRsjEZ1uECSZbZc3AIkAJqqCrCWubrAjCaIZIwqibQwksm20OQGJASbDgsUlx27JI8vIzrsczR3P0zy/HMEi2dsd3SW2nRi50r0j4DsHiQMm64LtJe9u8SMXog+g0hEk8231OgYQQEAAIAmBBA2OQFjwTyBBhAyx6bSoBEOFYUqMKXMmDYk1ieBkFNKggoIACiobgBnJsqXLlzBjypxJs6bNmzhz6tzJs6fPKyEAACH5BAkMAB0ALAAAAABkACgAAAX/YCeOZGmeaKqubOu+cCzPdG3feK7vfO//wKBwSCwaj8ikcslsOp/QqHRKrVqvyAaEEWBAGljc5JEIJB6TkqPAabcLDp4AEAAIUPP6/ZS34+l+JRIUbm0UEiMLFoVuBQs6Box7JJGFkyOVbpcimW2bGoxtGyMRoW4QOgCMACaqhawlrm6wJLJttCIJphkjCqZtDDoBjAEmw4XFJcduySTLbc0iz8wj08ipq63Zsdu13bmmGL2/HME5B4wDJuiF6iXsbu4k8G3yIhemD6TkETsDBAgI2CPxL+DAEQUFokh4cBCjQ4nYhHIUpsaYMmfSkFjDCE5FIQ0qKAigoAKYjyhTFqpcybKly5cwY8qcSbOmzZs4c+pUEgIAIfkECQwAHQAsAAAAAGQAKAAABf9gJ45kaZ5oqq5s675wLM90bd94ru987//AoHBILBqPyKRyyWw6n9CodEqtWq/IBoQRYEAaWKKjwCmXCw6eABAACFDr9vsUd8PZdjp+PlpYzIAFCzoGgBx8I4WAiCKKZowdjmWQkockEYaAEDoAhgAmnYCfJaFmoySlZacjqRyrCplmDDoBhgEmtYC3JblmuyS9Zb8jwRzDxbqcnqDLpM2oz6zRsLEcszkHhgMm2YDbJd1m3yThZeMj5RznmNUROwMECATnJPDy9CP28yj6+CL9JRaQySQoTJAxhtAYFNKggoIACiqAWUixosWLGDNq3Mixo8ePIEOKHEmypEklIQAAIfkEBQwAHQAsAAAAAGQAKAAABddgJ45kaZ5oqq5s675wLM90bd94ru987//AoHBILBqPyKRyyWw6n9CodEqtWq/YrLYkAAQAAlT3Gz6NwWIv2qwum85unYFDp8dF8zrn3snX+X52JoF7g3qFOwCHACaKeowljnWQJJJ0lCOWHJgimpw3AYcBJqF6oyWldackqXSrI60cryKxszeejYu5j7uTvZe/mzwHhwMmxHrGJch1yiTMdM4j0BzSItTWOAMECATZItvd3x3h3ijl4+jn3OZb7u/w8fLz9PX29/j5+vv8/f7/AAMKHDgiBAA7) no-repeat center center;
|
|
393
|
+
width: 100px;
|
|
394
|
+
height: 40px;
|
|
395
|
+
margin: 0 auto;
|
|
396
|
+
}
|
|
397
|
+
.u-lmask-message {
|
|
398
|
+
font-size: 13px;
|
|
399
|
+
color: #333;
|
|
400
|
+
}
|
|
401
|
+
.u-menu-dropdown {
|
|
402
|
+
position: absolute;
|
|
403
|
+
z-index: 100;
|
|
404
|
+
top: 100%;
|
|
405
|
+
left: 0;
|
|
406
|
+
}
|
|
407
|
+
.u-menu-dropdown:not(.u-menu-show) .u-menu {
|
|
408
|
+
margin-top: -5px;
|
|
409
|
+
}
|
|
410
|
+
.u-menu-dropdown:not(.u-menu-show).over-height .u-menu {
|
|
411
|
+
margin-top: 5px;
|
|
412
|
+
}
|
|
413
|
+
.u-menu-dropdown.color .u-menu-choose {
|
|
414
|
+
font-weight: 600;
|
|
415
|
+
}
|
|
416
|
+
.u-menu-dropdown.color .u-menu-choose .iconchoose {
|
|
417
|
+
color: #0e931b;
|
|
418
|
+
font-weight: normal;
|
|
419
|
+
}
|
|
420
|
+
.u-menu-dropdown.color .u-menu-choose.u-menu-disabled a,
|
|
421
|
+
.u-menu-dropdown.color .u-menu-choose.u-menu-disabled a:hover {
|
|
422
|
+
color: #333333;
|
|
423
|
+
}
|
|
424
|
+
input[disabled][role=dropdown] {
|
|
425
|
+
background: #f3f3f3;
|
|
426
|
+
color: rgba(42, 42, 42, 0.3);
|
|
427
|
+
}
|
|
428
|
+
input[disabled][role=dropdown] + i {
|
|
429
|
+
opacity: 0.3;
|
|
430
|
+
}
|
|
431
|
+
/* 下拉菜单 */
|
|
432
|
+
.u-menu {
|
|
433
|
+
line-height: 1.5;
|
|
434
|
+
margin: 2px 0 0;
|
|
435
|
+
padding: 4px;
|
|
436
|
+
border-radius: 4px;
|
|
437
|
+
background: #fff;
|
|
438
|
+
list-style: none;
|
|
439
|
+
text-align: left;
|
|
440
|
+
transition: all 0.1s cubic-bezier(0.17, 0.17, 0, 1);
|
|
441
|
+
box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
|
|
442
|
+
}
|
|
443
|
+
.u-menu .u-input-container {
|
|
444
|
+
padding: 0 5px 0 27px;
|
|
445
|
+
}
|
|
446
|
+
.u-menu li {
|
|
447
|
+
position: relative;
|
|
448
|
+
}
|
|
449
|
+
.u-menu li a {
|
|
450
|
+
display: block;
|
|
451
|
+
padding: 6px 30px 6px 38px;
|
|
452
|
+
overflow: hidden;
|
|
453
|
+
word-wrap: normal;
|
|
454
|
+
white-space: nowrap;
|
|
455
|
+
text-overflow: ellipsis;
|
|
456
|
+
color: #333333;
|
|
457
|
+
text-decoration: none;
|
|
458
|
+
height: 32px;
|
|
459
|
+
box-sizing: border-box;
|
|
460
|
+
line-height: 19px;
|
|
461
|
+
border-radius: 4px;
|
|
462
|
+
}
|
|
463
|
+
.u-menu li a:focus {
|
|
464
|
+
outline: none;
|
|
465
|
+
}
|
|
466
|
+
.u-menu li a:hover,
|
|
467
|
+
.u-menu li.active a {
|
|
468
|
+
color: #333333;
|
|
469
|
+
text-decoration: none;
|
|
470
|
+
}
|
|
471
|
+
.u-menu li a:hover {
|
|
472
|
+
background: #f5f5f5;
|
|
473
|
+
}
|
|
474
|
+
.u-menu li.active > a,
|
|
475
|
+
.u-menu li:active > a {
|
|
476
|
+
background: #e5e5e5;
|
|
477
|
+
}
|
|
478
|
+
.u-menu li.u-menu-disabled i,
|
|
479
|
+
.u-menu li.u-menu-disabled a,
|
|
480
|
+
.u-menu li.u-menu-disabled a:hover {
|
|
481
|
+
cursor: not-allowed;
|
|
482
|
+
opacity: 0.5;
|
|
483
|
+
}
|
|
484
|
+
.u-menu li .iconfont {
|
|
485
|
+
position: absolute;
|
|
486
|
+
line-height: 1;
|
|
487
|
+
top: 50%;
|
|
488
|
+
margin-top: -10px;
|
|
489
|
+
font-size: 20px;
|
|
490
|
+
}
|
|
491
|
+
.u-menu li .iconfont.checkbox,
|
|
492
|
+
.u-menu li .iconfont.radio {
|
|
493
|
+
margin: -8px 0 0 2px;
|
|
494
|
+
font-size: 16px;
|
|
495
|
+
}
|
|
496
|
+
.u-menu li .iconfont.left {
|
|
497
|
+
left: 8px;
|
|
498
|
+
}
|
|
499
|
+
.u-menu li .iconfont.right {
|
|
500
|
+
right: 8px;
|
|
501
|
+
}
|
|
502
|
+
.u-menu .divider {
|
|
503
|
+
height: 0;
|
|
504
|
+
line-height: 0;
|
|
505
|
+
font-size: 0;
|
|
506
|
+
margin: 4px 0;
|
|
507
|
+
border-top: 1px solid #e8e8e8;
|
|
508
|
+
}
|
|
509
|
+
.u-menu-right {
|
|
510
|
+
left: auto;
|
|
511
|
+
right: 0;
|
|
512
|
+
}
|
|
513
|
+
.u-menu-top {
|
|
514
|
+
top: auto;
|
|
515
|
+
bottom: 100%;
|
|
516
|
+
margin: 0 0 1px;
|
|
517
|
+
}
|
|
518
|
+
/*二级菜单*/
|
|
519
|
+
.u-submenu {
|
|
520
|
+
position: relative;
|
|
521
|
+
}
|
|
522
|
+
.u-submenu .u-menu {
|
|
523
|
+
position: absolute;
|
|
524
|
+
left: 100%;
|
|
525
|
+
top: -4px;
|
|
526
|
+
margin: 0;
|
|
527
|
+
}
|
|
528
|
+
.u-submenu .u-menu-right {
|
|
529
|
+
left: auto;
|
|
530
|
+
right: 100%;
|
|
531
|
+
}
|
|
532
|
+
.u-submenu .u-menu-top {
|
|
533
|
+
top: auto;
|
|
534
|
+
bottom: 0;
|
|
535
|
+
margin: 0 0 2px;
|
|
536
|
+
}
|
|
537
|
+
/* 翻页器 */
|
|
538
|
+
.u-page {
|
|
539
|
+
margin: 10px 0 0;
|
|
540
|
+
text-align: center;
|
|
541
|
+
font-size: 0;
|
|
542
|
+
letter-spacing: normal;
|
|
543
|
+
word-wrap: normal;
|
|
544
|
+
white-space: nowrap;
|
|
545
|
+
}
|
|
546
|
+
.u-page > a,
|
|
547
|
+
.u-page > i {
|
|
548
|
+
height: 30px;
|
|
549
|
+
line-height: 30px;
|
|
550
|
+
}
|
|
551
|
+
.u-page a,
|
|
552
|
+
.u-page i {
|
|
553
|
+
height: 32px;
|
|
554
|
+
line-height: 32px;
|
|
555
|
+
display: inline-block;
|
|
556
|
+
vertical-align: top;
|
|
557
|
+
padding: 0 6px;
|
|
558
|
+
margin-left: -1px;
|
|
559
|
+
font-size: 13px;
|
|
560
|
+
letter-spacing: normal;
|
|
561
|
+
word-spacing: normal;
|
|
562
|
+
background: #fff;
|
|
563
|
+
}
|
|
564
|
+
.u-page a {
|
|
565
|
+
border-radius: 4px;
|
|
566
|
+
}
|
|
567
|
+
.u-page a,
|
|
568
|
+
.u-page a:hover,
|
|
569
|
+
.u-page a:active {
|
|
570
|
+
text-decoration: none;
|
|
571
|
+
color: #505052;
|
|
572
|
+
}
|
|
573
|
+
.u-page a:hover {
|
|
574
|
+
background: #ebebeb;
|
|
575
|
+
}
|
|
576
|
+
.u-page a:active {
|
|
577
|
+
background: #e0e0e0;
|
|
578
|
+
}
|
|
579
|
+
/* current当前值 */
|
|
580
|
+
.u-page a.z-current,
|
|
581
|
+
.u-page a.z-current:hover,
|
|
582
|
+
.u-page a.z-current:active {
|
|
583
|
+
cursor: not-allowed;
|
|
584
|
+
pointer-events: none;
|
|
585
|
+
opacity: 0.3;
|
|
586
|
+
}
|
|
587
|
+
/* disable非选中 */
|
|
588
|
+
.u-page a.z-disabled,
|
|
589
|
+
.u-page a.z-disabled:hover,
|
|
590
|
+
.u-page a.z-disabled:active {
|
|
591
|
+
cursor: not-allowed;
|
|
592
|
+
pointer-events: none;
|
|
593
|
+
color: #ccc;
|
|
594
|
+
background: #fff;
|
|
595
|
+
}
|
|
596
|
+
/* 上下分页圆角 */
|
|
597
|
+
.u-page-round .u-page-prev {
|
|
598
|
+
border-radius: 16px 0 0 16px;
|
|
599
|
+
}
|
|
600
|
+
.u-page-round .u-page-next {
|
|
601
|
+
border-radius: 0 16px 16px 0;
|
|
602
|
+
}
|
|
603
|
+
/* 分离 */
|
|
604
|
+
.u-page-sep a,
|
|
605
|
+
.u-page-sep i {
|
|
606
|
+
margin: 0 3px;
|
|
607
|
+
}
|
|
608
|
+
.u-page-sep i {
|
|
609
|
+
border: 0;
|
|
610
|
+
}
|
|
611
|
+
/* 尺寸 */
|
|
612
|
+
.u-page-small {
|
|
613
|
+
line-height: 22px;
|
|
614
|
+
}
|
|
615
|
+
.u-page-small a,
|
|
616
|
+
.u-page-small i {
|
|
617
|
+
font-size: 12px;
|
|
618
|
+
padding: 0 8px;
|
|
619
|
+
}
|
|
620
|
+
/* 跳页菜单 */
|
|
621
|
+
.u-page-btns {
|
|
622
|
+
position: relative;
|
|
623
|
+
display: inline-block;
|
|
624
|
+
margin: 0 3px;
|
|
625
|
+
}
|
|
626
|
+
.u-page-btns-center {
|
|
627
|
+
margin-left: 0;
|
|
628
|
+
margin-right: 1px;
|
|
629
|
+
}
|
|
630
|
+
.u-page-btns-center .u-page-btn {
|
|
631
|
+
background-color: #fff;
|
|
632
|
+
}
|
|
633
|
+
.u-page-btns-center .u-page-menu {
|
|
634
|
+
top: auto;
|
|
635
|
+
bottom: 100%;
|
|
636
|
+
margin-bottom: 4px;
|
|
637
|
+
}
|
|
638
|
+
.u-page-btn {
|
|
639
|
+
width: 84px;
|
|
640
|
+
display: inline-block;
|
|
641
|
+
font-size: 13px;
|
|
642
|
+
margin: 0 6px;
|
|
643
|
+
word-spacing: normal;
|
|
644
|
+
text-align: center;
|
|
645
|
+
vertical-align: middle;
|
|
646
|
+
cursor: default;
|
|
647
|
+
line-height: 32px;
|
|
648
|
+
height: 32px;
|
|
649
|
+
border-radius: 4px;
|
|
650
|
+
outline: none;
|
|
651
|
+
background-color: #fff;
|
|
652
|
+
border: none;
|
|
653
|
+
opacity: 0.3;
|
|
654
|
+
}
|
|
655
|
+
.u-page-btn:not(.disabled) {
|
|
656
|
+
opacity: 1;
|
|
657
|
+
cursor: pointer;
|
|
658
|
+
}
|
|
659
|
+
.u-page-btn:not(.disabled):hover {
|
|
660
|
+
background: #ebebeb;
|
|
661
|
+
}
|
|
662
|
+
.u-page-btn:not(.disabled):active,
|
|
663
|
+
.u-page-btn:not(.disabled).active {
|
|
664
|
+
background: #e5e5e5;
|
|
665
|
+
}
|
|
666
|
+
.u-page-btnsel.iconfont {
|
|
667
|
+
display: inline-block;
|
|
668
|
+
overflow: hidden;
|
|
669
|
+
vertical-align: top;
|
|
670
|
+
font-size: 16px;
|
|
671
|
+
}
|
|
672
|
+
.u-page-menu {
|
|
673
|
+
position: absolute;
|
|
674
|
+
z-index: 100;
|
|
675
|
+
top: 100%;
|
|
676
|
+
left: 7px /** border-left = */;
|
|
677
|
+
max-height: 200px;
|
|
678
|
+
max-width: 120px;
|
|
679
|
+
margin: -5px 0 0;
|
|
680
|
+
opacity: 0;
|
|
681
|
+
list-style: none;
|
|
682
|
+
box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
|
|
683
|
+
border-radius: 3px;
|
|
684
|
+
line-height: 1.5;
|
|
685
|
+
background: #fff;
|
|
686
|
+
overflow-y: auto;
|
|
687
|
+
overflow-x: auto;
|
|
688
|
+
transition: margin-top 0.1s cubic-bezier(0.17, 0.17, 0, 1), opacity 0.1s cubic-bezier(0.17, 0.17, 0, 1);
|
|
689
|
+
}
|
|
690
|
+
.u-page-menu li.current a {
|
|
691
|
+
font-weight: 600;
|
|
692
|
+
background: #e5e5e5;
|
|
693
|
+
}
|
|
694
|
+
.u-page-menu li a {
|
|
695
|
+
display: block;
|
|
696
|
+
min-width: 50px;
|
|
697
|
+
margin: 0;
|
|
698
|
+
height: 24px /** horizontal padding = */;
|
|
699
|
+
line-height: 24px /** horizontal padding = */;
|
|
700
|
+
padding: 4px 9px;
|
|
701
|
+
border: none;
|
|
702
|
+
color: #333333;
|
|
703
|
+
border-radius: 0;
|
|
704
|
+
}
|
|
705
|
+
.u-page-menu-show {
|
|
706
|
+
display: block;
|
|
707
|
+
margin-top: 1px;
|
|
708
|
+
opacity: 1;
|
|
709
|
+
}
|
|
710
|
+
.u-page-menu-hidden {
|
|
711
|
+
top: -9999px !important;
|
|
712
|
+
left: -9999px !important;
|
|
713
|
+
}
|
|
714
|
+
.icon-current {
|
|
715
|
+
background: none;
|
|
716
|
+
display: inline-block;
|
|
717
|
+
vertical-align: middle;
|
|
718
|
+
}
|
|
719
|
+
.icon-current:after {
|
|
720
|
+
content: '';
|
|
721
|
+
display: block;
|
|
722
|
+
border-radius: 50%;
|
|
723
|
+
height: 6px;
|
|
724
|
+
width: 6px;
|
|
725
|
+
margin-right: 5px;
|
|
726
|
+
}
|
|
727
|
+
.f-cf:before,
|
|
728
|
+
.f-cf:after {
|
|
729
|
+
content: " ";
|
|
730
|
+
display: table;
|
|
731
|
+
}
|
|
732
|
+
.f-cf:after {
|
|
733
|
+
clear: both;
|
|
734
|
+
}
|
|
735
|
+
.f-fl {
|
|
736
|
+
float: left !important;
|
|
737
|
+
}
|
|
738
|
+
.f-fr {
|
|
739
|
+
float: right !important;
|
|
740
|
+
}
|
|
741
|
+
.f-ib {
|
|
742
|
+
display: inline-block;
|
|
743
|
+
}
|
|
744
|
+
.f-dn {
|
|
745
|
+
display: none;
|
|
746
|
+
}
|
|
747
|
+
.f-dni {
|
|
748
|
+
display: none !important;
|
|
749
|
+
}
|
|
750
|
+
.f-db {
|
|
751
|
+
display: block;
|
|
752
|
+
}
|
|
753
|
+
.f-dbi {
|
|
754
|
+
display: block !important;
|
|
755
|
+
}
|
|
756
|
+
.f-pr {
|
|
757
|
+
position: relative;
|
|
758
|
+
}
|
|
759
|
+
.f-prz {
|
|
760
|
+
position: relative;
|
|
761
|
+
zoom: 1;
|
|
762
|
+
}
|
|
763
|
+
.f-oh {
|
|
764
|
+
overflow: hidden !important;
|
|
765
|
+
}
|
|
766
|
+
.f-tal {
|
|
767
|
+
text-align: left;
|
|
768
|
+
}
|
|
769
|
+
.f-tac {
|
|
770
|
+
text-align: center;
|
|
771
|
+
}
|
|
772
|
+
.f-tar {
|
|
773
|
+
text-align: right;
|
|
774
|
+
}
|
|
775
|
+
.f-vat {
|
|
776
|
+
vertical-align: top;
|
|
777
|
+
}
|
|
778
|
+
.f-vam {
|
|
779
|
+
vertical-align: middle;
|
|
780
|
+
}
|
|
781
|
+
.f-vab {
|
|
782
|
+
vertical-align: bottom;
|
|
783
|
+
}
|
|
784
|
+
.f-taj {
|
|
785
|
+
text-align: justify;
|
|
786
|
+
text-justify: inter-ideograph;
|
|
787
|
+
}
|
|
788
|
+
.f-tdn {
|
|
789
|
+
text-decoration: none;
|
|
790
|
+
}
|
|
791
|
+
.f-fwb {
|
|
792
|
+
font-weight: bold;
|
|
793
|
+
}
|
|
794
|
+
.f-fwn {
|
|
795
|
+
font-weight: normal;
|
|
796
|
+
}
|
|
797
|
+
.f-wsn {
|
|
798
|
+
word-wrap: normal;
|
|
799
|
+
white-space: nowrap;
|
|
800
|
+
}
|
|
801
|
+
.f-pre {
|
|
802
|
+
overflow: hidden;
|
|
803
|
+
text-align: left;
|
|
804
|
+
white-space: pre-wrap;
|
|
805
|
+
word-wrap: break-word;
|
|
806
|
+
word-break: break-all;
|
|
807
|
+
}
|
|
808
|
+
.f-wwb {
|
|
809
|
+
white-space: normal;
|
|
810
|
+
word-wrap: break-word;
|
|
811
|
+
word-break: break-all;
|
|
812
|
+
}
|
|
813
|
+
.f-ellipsis {
|
|
814
|
+
overflow: hidden;
|
|
815
|
+
word-wrap: normal;
|
|
816
|
+
white-space: nowrap;
|
|
817
|
+
text-overflow: ellipsis;
|
|
818
|
+
}
|
|
819
|
+
.f-csp {
|
|
820
|
+
cursor: pointer;
|
|
821
|
+
}
|
|
822
|
+
.f-csd {
|
|
823
|
+
cursor: default;
|
|
824
|
+
}
|
|
825
|
+
.f-csh {
|
|
826
|
+
cursor: help;
|
|
827
|
+
}
|
|
828
|
+
.f-csm {
|
|
829
|
+
cursor: move;
|
|
830
|
+
}
|
|
831
|
+
.f-usn {
|
|
832
|
+
user-select: none;
|
|
833
|
+
}
|
|
834
|
+
.f-mgr {
|
|
835
|
+
margin-right: 10px;
|
|
836
|
+
}
|
|
837
|
+
.f-mgl {
|
|
838
|
+
margin-left: 10px;
|
|
839
|
+
}
|
|
840
|
+
.f-mgr-l {
|
|
841
|
+
margin-right: 16px;
|
|
842
|
+
}
|
|
843
|
+
.f-mgl-l {
|
|
844
|
+
margin-left: 16px;
|
|
845
|
+
}
|
|
846
|
+
.f-mgt {
|
|
847
|
+
margin-top: 10px;
|
|
848
|
+
}
|
|
849
|
+
.f-mgb {
|
|
850
|
+
margin-bottom: 10px;
|
|
851
|
+
}
|
|
852
|
+
.f-vh {
|
|
853
|
+
visibility: hidden;
|
|
854
|
+
}
|
|
855
|
+
.disable-mask {
|
|
856
|
+
position: absolute;
|
|
857
|
+
z-index: 99;
|
|
858
|
+
left: 0;
|
|
859
|
+
right: 0;
|
|
860
|
+
opacity: 0.5;
|
|
861
|
+
background-color: #fff;
|
|
862
|
+
}
|
|
863
|
+
.f-abs {
|
|
864
|
+
position: absolute;
|
|
865
|
+
top: 0;
|
|
866
|
+
bottom: 0;
|
|
867
|
+
left: 0;
|
|
868
|
+
right: 0;
|
|
869
|
+
}
|
|
870
|
+
.u-scroll {
|
|
871
|
+
overflow: auto;
|
|
872
|
+
}
|
|
873
|
+
*::-webkit-scrollbar {
|
|
874
|
+
width: 14px;
|
|
875
|
+
height: 14px;
|
|
876
|
+
}
|
|
877
|
+
*::-webkit-scrollbar-thumb {
|
|
878
|
+
border: 4px solid transparent;
|
|
879
|
+
background-clip: padding-box;
|
|
880
|
+
background-color: #ccc;
|
|
881
|
+
border-radius: 10px;
|
|
882
|
+
}
|
|
883
|
+
*::-webkit-scrollbar-thumb:hover {
|
|
884
|
+
border-width: 2px;
|
|
885
|
+
background-color: #ccc;
|
|
886
|
+
border-radius: 10px;
|
|
887
|
+
}
|
|
888
|
+
*::-webkit-scrollbar-track {
|
|
889
|
+
border-radius: 10px;
|
|
890
|
+
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
|
|
891
|
+
}
|
|
892
|
+
/*
|
|
893
|
+
* Copyright (c) 2023 Mailtech.cn, Ltd. All Rights Reserved.
|
|
894
|
+
*/
|
|
895
|
+
.aside-animation {
|
|
896
|
+
transition: left 0.1s cubic-bezier(0.17, 0.17, 0, 1);
|
|
897
|
+
}
|
|
898
|
+
.lyToolbar {
|
|
899
|
+
position: relative;
|
|
900
|
+
white-space: nowrap;
|
|
901
|
+
}
|
|
902
|
+
.lyToolbar,
|
|
903
|
+
.lyToolbar[data-view] + .lycontent {
|
|
904
|
+
padding: 0 18px 0 13px;
|
|
905
|
+
}
|
|
906
|
+
.lyToolbar .main-nav.aside {
|
|
907
|
+
padding-left: 40px;
|
|
908
|
+
}
|
|
909
|
+
.lyToolbar .main-nav.aside .icon-nav {
|
|
910
|
+
padding: 8px;
|
|
911
|
+
position: absolute;
|
|
912
|
+
left: -8px;
|
|
913
|
+
top: 0;
|
|
914
|
+
cursor: pointer;
|
|
915
|
+
}
|
|
916
|
+
.lyToolbar .content-wrapper {
|
|
917
|
+
width: 100%;
|
|
918
|
+
height: 38px;
|
|
919
|
+
padding: 3px 4px;
|
|
920
|
+
border-radius: 4px;
|
|
921
|
+
box-shadow: 0 1px 4px rgba(1, 10, 15, 0.2);
|
|
922
|
+
box-sizing: border-box;
|
|
923
|
+
background: #fff;
|
|
924
|
+
position: relative;
|
|
925
|
+
overflow: hidden;
|
|
926
|
+
}
|
|
927
|
+
.lyToolbar .content-wrapper.scrollable {
|
|
928
|
+
padding: 3px 20px;
|
|
929
|
+
}
|
|
930
|
+
.lyToolbar .content-wrapper.scrollable > div.scroll {
|
|
931
|
+
display: block;
|
|
932
|
+
}
|
|
933
|
+
.lyToolbar .content-wrapper > [data-role=panel] {
|
|
934
|
+
overflow: hidden;
|
|
935
|
+
}
|
|
936
|
+
.lyToolbar .content-wrapper > [data-role=panel] > div {
|
|
937
|
+
font-size: 0;
|
|
938
|
+
}
|
|
939
|
+
.lyToolbar .content-wrapper > [data-role=panel] > div .u-list {
|
|
940
|
+
font-size: 14px;
|
|
941
|
+
}
|
|
942
|
+
.lyToolbar .content-wrapper > div.scroll {
|
|
943
|
+
position: absolute;
|
|
944
|
+
top: 0;
|
|
945
|
+
height: 38px;
|
|
946
|
+
line-height: 38px;
|
|
947
|
+
box-sizing: border-box;
|
|
948
|
+
display: none;
|
|
949
|
+
}
|
|
950
|
+
.lyToolbar .content-wrapper > div.scroll:not(.disabled) {
|
|
951
|
+
cursor: pointer;
|
|
952
|
+
}
|
|
953
|
+
.lyToolbar .content-wrapper > div.scroll:not(.disabled):hover {
|
|
954
|
+
background: #fafafa;
|
|
955
|
+
}
|
|
956
|
+
.lyToolbar .content-wrapper > div.scroll.disabled {
|
|
957
|
+
opacity: 0.3;
|
|
958
|
+
}
|
|
959
|
+
.lyToolbar .content-wrapper > div.scroll i {
|
|
960
|
+
font-size: 14px;
|
|
961
|
+
}
|
|
962
|
+
.lyToolbar .content-wrapper > div.scroll.left {
|
|
963
|
+
left: 0;
|
|
964
|
+
border-right: 1px solid #e2e2e2;
|
|
965
|
+
}
|
|
966
|
+
.lyToolbar .content-wrapper > div.scroll.right {
|
|
967
|
+
right: 0;
|
|
968
|
+
border-left: 1px solid #e2e2e2;
|
|
969
|
+
}
|
|
970
|
+
.lyToolbar .toggle-ribbon {
|
|
971
|
+
position: absolute;
|
|
972
|
+
right: 0;
|
|
973
|
+
bottom: 0;
|
|
974
|
+
width: 18px;
|
|
975
|
+
font-size: 18px;
|
|
976
|
+
text-align: center;
|
|
977
|
+
height: 18px;
|
|
978
|
+
line-height: 18px;
|
|
979
|
+
cursor: pointer;
|
|
980
|
+
}
|
|
981
|
+
.lyToolbar .toggle-ribbon:hover {
|
|
982
|
+
background: #e8e8e8;
|
|
983
|
+
}
|
|
984
|
+
.lyToolbar .divider {
|
|
985
|
+
margin-right: 4px;
|
|
986
|
+
height: 26px;
|
|
987
|
+
width: 1px;
|
|
988
|
+
background: #d9d9d9;
|
|
989
|
+
display: inline-block;
|
|
990
|
+
vertical-align: middle;
|
|
991
|
+
}
|
|
992
|
+
.lyToolbar .divider + .divider {
|
|
993
|
+
display: none;
|
|
994
|
+
}
|
|
995
|
+
.lyToolbar .u-btn.f-dni + br,
|
|
996
|
+
.lyToolbar .u-btn.f-dni + .divider {
|
|
997
|
+
display: none;
|
|
998
|
+
}
|
|
999
|
+
.lyToolbar.ribbon .u-btn-groups-2 {
|
|
1000
|
+
margin: 6px 0;
|
|
1001
|
+
line-height: 36px;
|
|
1002
|
+
}
|
|
1003
|
+
.lyToolbar.ribbon .u-btn-groups-3 .u-btn {
|
|
1004
|
+
height: 24px;
|
|
1005
|
+
line-height: 24px;
|
|
1006
|
+
}
|
|
1007
|
+
.lyToolbar.ribbon .u-btn-groups-3 .u-btn:not(:last-child) {
|
|
1008
|
+
margin-bottom: 3px;
|
|
1009
|
+
}
|
|
1010
|
+
.lyToolbar.ribbon .u-btn.u-btn-toolbar.primary {
|
|
1011
|
+
color: #424242;
|
|
1012
|
+
}
|
|
1013
|
+
.lyToolbar.ribbon .u-btn.u-btn-toolbar:not(.small-icon):not([arrow]),
|
|
1014
|
+
.lyToolbar.ribbon .u-btn.u-btn-primary:not(.small-icon):not([arrow]) {
|
|
1015
|
+
height: 84px;
|
|
1016
|
+
line-height: normal;
|
|
1017
|
+
box-sizing: border-box;
|
|
1018
|
+
padding-top: 9px;
|
|
1019
|
+
}
|
|
1020
|
+
.lyToolbar.ribbon .u-btn.u-btn-toolbar:not(.small-icon):not([arrow])[data-dropdown],
|
|
1021
|
+
.lyToolbar.ribbon .u-btn.u-btn-primary:not(.small-icon):not([arrow])[data-dropdown],
|
|
1022
|
+
.lyToolbar.ribbon .u-btn.u-btn-toolbar:not(.small-icon):not([arrow])[role=dropdown],
|
|
1023
|
+
.lyToolbar.ribbon .u-btn.u-btn-primary:not(.small-icon):not([arrow])[role=dropdown],
|
|
1024
|
+
.lyToolbar.ribbon .u-btn.u-btn-toolbar:not(.small-icon):not([arrow]).split,
|
|
1025
|
+
.lyToolbar.ribbon .u-btn.u-btn-primary:not(.small-icon):not([arrow]).split {
|
|
1026
|
+
padding-right: 6px;
|
|
1027
|
+
}
|
|
1028
|
+
.lyToolbar.ribbon .u-btn.u-btn-toolbar:not(.small-icon):not([arrow]).no-icon,
|
|
1029
|
+
.lyToolbar.ribbon .u-btn.u-btn-primary:not(.small-icon):not([arrow]).no-icon {
|
|
1030
|
+
padding-top: 44px /** icon height = */;
|
|
1031
|
+
}
|
|
1032
|
+
.lyToolbar.ribbon .u-btn.u-btn-toolbar:not(.small-icon):not([arrow]) .u-btn[arrow],
|
|
1033
|
+
.lyToolbar.ribbon .u-btn.u-btn-primary:not(.small-icon):not([arrow]) .u-btn[arrow] {
|
|
1034
|
+
height: auto;
|
|
1035
|
+
margin-left: 0;
|
|
1036
|
+
border-radius: 0 0 4px 4px;
|
|
1037
|
+
position: absolute;
|
|
1038
|
+
width: 100%;
|
|
1039
|
+
left: -1px;
|
|
1040
|
+
bottom: -1px;
|
|
1041
|
+
}
|
|
1042
|
+
.lyToolbar.ribbon .u-btn.u-btn-toolbar:not(.small-icon):not([arrow]) .iconfont,
|
|
1043
|
+
.lyToolbar.ribbon .u-btn.u-btn-primary:not(.small-icon):not([arrow]) .iconfont,
|
|
1044
|
+
.lyToolbar.ribbon .u-btn.u-btn-toolbar:not(.small-icon):not([arrow]) .u-btn[arrow],
|
|
1045
|
+
.lyToolbar.ribbon .u-btn.u-btn-primary:not(.small-icon):not([arrow]) .u-btn[arrow] {
|
|
1046
|
+
display: block;
|
|
1047
|
+
}
|
|
1048
|
+
.lyToolbar.ribbon .u-btn.u-btn-toolbar:not(.small-icon):not([arrow]) .iconfont:not(.icondown),
|
|
1049
|
+
.lyToolbar.ribbon .u-btn.u-btn-primary:not(.small-icon):not([arrow]) .iconfont:not(.icondown) {
|
|
1050
|
+
font-size: 32px;
|
|
1051
|
+
}
|
|
1052
|
+
.lyToolbar.ribbon .u-btn.u-btn-toolbar:not(.small-icon):not([arrow]) .iconfont.f-mgr,
|
|
1053
|
+
.lyToolbar.ribbon .u-btn.u-btn-primary:not(.small-icon):not([arrow]) .iconfont.f-mgr {
|
|
1054
|
+
margin-right: 0;
|
|
1055
|
+
}
|
|
1056
|
+
.lyToolbar.ribbon .u-btn.u-btn-toolbar:not(.small-icon):not([arrow]) .icondown,
|
|
1057
|
+
.lyToolbar.ribbon .u-btn.u-btn-primary:not(.small-icon):not([arrow]) .icondown {
|
|
1058
|
+
height: 16px;
|
|
1059
|
+
line-height: 16px;
|
|
1060
|
+
}
|
|
1061
|
+
.lyToolbar.ribbon .content-wrapper {
|
|
1062
|
+
height: 90px;
|
|
1063
|
+
}
|
|
1064
|
+
.lyToolbar.ribbon .content-wrapper > div.scroll {
|
|
1065
|
+
height: 90px;
|
|
1066
|
+
line-height: 90px;
|
|
1067
|
+
}
|
|
1068
|
+
.lyToolbar.ribbon .divider {
|
|
1069
|
+
height: 78px;
|
|
1070
|
+
}
|
|
1071
|
+
.u-btn-primary:not([disabled]):not(.disabled).split:hover > .u-btn-toolbar[arrow] {
|
|
1072
|
+
background-color: #188BCE;
|
|
1073
|
+
}
|
|
1074
|
+
.u-btn-primary:not([disabled]):not(.disabled).split > .u-btn-toolbar[arrow] {
|
|
1075
|
+
border-color: transparent transparent transparent rgba(255, 255, 255, 0.35);
|
|
1076
|
+
background-color: #2c6ccc;
|
|
1077
|
+
}
|
|
1078
|
+
.u-btn-primary:not([disabled]):not(.disabled).split > .u-btn-toolbar[arrow]:hover {
|
|
1079
|
+
border-color: transparent transparent transparent rgba(255, 255, 255, 0.35);
|
|
1080
|
+
background-color: #188BCE;
|
|
1081
|
+
}
|
|
1082
|
+
.u-btn-primary:not([disabled]):not(.disabled).split > .u-btn-toolbar[arrow].active,
|
|
1083
|
+
.u-btn-primary:not([disabled]):not(.disabled).split > .u-btn-toolbar[arrow]:active {
|
|
1084
|
+
background-color: #11699C;
|
|
1085
|
+
}
|
|
1086
|
+
/* stylelint-disable-next-line selector-pseudo-class-disallowed-list */
|
|
1087
|
+
.u-btn-primary:not([disabled]):not(.disabled).split:has([arrow]:active) {
|
|
1088
|
+
background: #fafafa;
|
|
1089
|
+
}
|
|
1090
|
+
.u-btn.u-btn-toolbar:not(.u-btn-primary) {
|
|
1091
|
+
border-color: transparent;
|
|
1092
|
+
background-color: #fff;
|
|
1093
|
+
}
|
|
1094
|
+
.u-btn.u-btn-toolbar:not(.u-btn-primary).primary,
|
|
1095
|
+
.u-btn.u-btn-toolbar:not(.u-btn-primary).primary > i {
|
|
1096
|
+
color: #2c6ccc;
|
|
1097
|
+
}
|
|
1098
|
+
.u-btn.u-btn-toolbar:not(.u-btn-primary).disabled.active {
|
|
1099
|
+
background-color: #f5f5f5;
|
|
1100
|
+
}
|
|
1101
|
+
.u-btn.u-btn-toolbar:not(.u-btn-primary):not([disabled]):not(.disabled):hover,
|
|
1102
|
+
.u-btn.u-btn-toolbar:not(.u-btn-primary):not([disabled]):not(.disabled):hover [arrow] {
|
|
1103
|
+
border-color: #e8e8e8;
|
|
1104
|
+
background-color: #fafafa;
|
|
1105
|
+
}
|
|
1106
|
+
.u-btn.u-btn-toolbar:not(.u-btn-primary):not([disabled]):not(.disabled).active,
|
|
1107
|
+
.u-btn.u-btn-toolbar:not(.u-btn-primary):not([disabled]):not(.disabled):active,
|
|
1108
|
+
.u-btn.u-btn-toolbar:not(.u-btn-primary):not([disabled]):not(.disabled)[arrow]:active {
|
|
1109
|
+
background-color: #f5f5f5;
|
|
1110
|
+
}
|
|
1111
|
+
.u-btn.u-btn-toolbar:not(.u-btn-primary):not([disabled]):not(.disabled).active:not([arrow]),
|
|
1112
|
+
.u-btn.u-btn-toolbar:not(.u-btn-primary):not([disabled]):not(.disabled):active:not([arrow]),
|
|
1113
|
+
.u-btn.u-btn-toolbar:not(.u-btn-primary):not([disabled]):not(.disabled)[arrow]:active:not([arrow]) {
|
|
1114
|
+
border-color: #a6a6a6;
|
|
1115
|
+
}
|
|
1116
|
+
.u-btn.u-btn-toolbar:not(.u-btn-primary):not([disabled]):not(.disabled).active:not([arrow]) [arrow]:not(.active):not(:active),
|
|
1117
|
+
.u-btn.u-btn-toolbar:not(.u-btn-primary):not([disabled]):not(.disabled):active:not([arrow]) [arrow]:not(.active):not(:active),
|
|
1118
|
+
.u-btn.u-btn-toolbar:not(.u-btn-primary):not([disabled]):not(.disabled)[arrow]:active:not([arrow]) [arrow]:not(.active):not(:active) {
|
|
1119
|
+
border-color: transparent;
|
|
1120
|
+
border-left-color: #a6a6a6;
|
|
1121
|
+
}
|
|
1122
|
+
.u-btn.u-btn-toolbar:not(.u-btn-primary):not([disabled]):not(.disabled).active:not([arrow]) [arrow]:not(.active):not(:active):hover,
|
|
1123
|
+
.u-btn.u-btn-toolbar:not(.u-btn-primary):not([disabled]):not(.disabled):active:not([arrow]) [arrow]:not(.active):not(:active):hover,
|
|
1124
|
+
.u-btn.u-btn-toolbar:not(.u-btn-primary):not([disabled]):not(.disabled)[arrow]:active:not([arrow]) [arrow]:not(.active):not(:active):hover {
|
|
1125
|
+
border-color: #e8e8e8;
|
|
1126
|
+
border-left-color: #a6a6a6;
|
|
1127
|
+
}
|
|
1128
|
+
.u-btn.u-btn-toolbar:not(.u-btn-primary):not([disabled]):not(.disabled)[arrow]:active {
|
|
1129
|
+
border-color: #a6a6a6;
|
|
1130
|
+
}
|
|
1131
|
+
.u-btn.u-btn-toolbar:not(.u-btn-primary):not([disabled]):not(.disabled).no-border:hover,
|
|
1132
|
+
.u-btn.u-btn-toolbar:not(.u-btn-primary):not([disabled]):not(.disabled).no-border:hover [arrow] {
|
|
1133
|
+
border-color: transparent;
|
|
1134
|
+
}
|
|
1135
|
+
.u-btn.u-btn-toolbar:not(.u-btn-primary):not([disabled]):not(.disabled).no-border.active:not([arrow]),
|
|
1136
|
+
.u-btn.u-btn-toolbar:not(.u-btn-primary):not([disabled]):not(.disabled).no-border:active:not([arrow]),
|
|
1137
|
+
.u-btn.u-btn-toolbar:not(.u-btn-primary):not([disabled]):not(.disabled).no-border[arrow]:active:not([arrow]) {
|
|
1138
|
+
border-color: transparent;
|
|
1139
|
+
}
|
|
1140
|
+
/* stylelint-disable-next-line selector-pseudo-class-disallowed-list */
|
|
1141
|
+
.u-btn.u-btn-toolbar:not(.u-btn-primary):not([disabled]):not(.disabled):has([arrow]:active) {
|
|
1142
|
+
background: #fafafa;
|
|
1143
|
+
}
|
|
1144
|
+
.lyToolbar .u-list {
|
|
1145
|
+
display: inline-block;
|
|
1146
|
+
vertical-align: middle;
|
|
1147
|
+
line-height: 32px;
|
|
1148
|
+
padding: 0 14px;
|
|
1149
|
+
}
|
|
1150
|
+
.lyToolbar .u-list li:last-child {
|
|
1151
|
+
margin-right: 0;
|
|
1152
|
+
}
|
|
1153
|
+
.lyToolbar .u-list .checkbox {
|
|
1154
|
+
margin-top: 0;
|
|
1155
|
+
}
|
|
1156
|
+
.lyToolbar .u-btn.u-btn-primary:hover {
|
|
1157
|
+
border-color: transparent;
|
|
1158
|
+
}
|
|
1159
|
+
.lyToolbar .u-btn.u-btn-primary {
|
|
1160
|
+
padding: 0 8px;
|
|
1161
|
+
}
|
|
1162
|
+
.lyToolbar .u-btn.u-btn-primary,
|
|
1163
|
+
.u-btn.u-btn-primary.u-btn-toolbar,
|
|
1164
|
+
.u-btn.u-btn-toolbar {
|
|
1165
|
+
margin-right: 4px;
|
|
1166
|
+
border-radius: 4px;
|
|
1167
|
+
}
|
|
1168
|
+
.lyToolbar .u-btn.u-btn-primary.iconfont,
|
|
1169
|
+
.u-btn.u-btn-primary.u-btn-toolbar.iconfont,
|
|
1170
|
+
.u-btn.u-btn-toolbar.iconfont {
|
|
1171
|
+
font-size: 20px;
|
|
1172
|
+
}
|
|
1173
|
+
.lyToolbar .u-btn.u-btn-primary i.checkbox,
|
|
1174
|
+
.u-btn.u-btn-primary.u-btn-toolbar i.checkbox,
|
|
1175
|
+
.u-btn.u-btn-toolbar i.checkbox {
|
|
1176
|
+
float: none;
|
|
1177
|
+
display: inline-block;
|
|
1178
|
+
vertical-align: middle;
|
|
1179
|
+
margin-top: 0;
|
|
1180
|
+
}
|
|
1181
|
+
.lyToolbar .u-btn.u-btn-primary i.checkbox + i,
|
|
1182
|
+
.u-btn.u-btn-primary.u-btn-toolbar i.checkbox + i,
|
|
1183
|
+
.u-btn.u-btn-toolbar i.checkbox + i {
|
|
1184
|
+
font-size: 14px;
|
|
1185
|
+
margin-left: 5px;
|
|
1186
|
+
vertical-align: middle;
|
|
1187
|
+
}
|
|
1188
|
+
.lyToolbar .u-btn.u-btn-primary[data-dropdown],
|
|
1189
|
+
.u-btn.u-btn-primary.u-btn-toolbar[data-dropdown],
|
|
1190
|
+
.u-btn.u-btn-toolbar[data-dropdown],
|
|
1191
|
+
.lyToolbar .u-btn.u-btn-primary[role=dropdown],
|
|
1192
|
+
.u-btn.u-btn-primary.u-btn-toolbar[role=dropdown],
|
|
1193
|
+
.u-btn.u-btn-toolbar[role=dropdown] {
|
|
1194
|
+
padding-right: 0;
|
|
1195
|
+
}
|
|
1196
|
+
.lyToolbar .u-btn.u-btn-primary[data-dropdown][data-dropdown*=more],
|
|
1197
|
+
.u-btn.u-btn-primary.u-btn-toolbar[data-dropdown][data-dropdown*=more],
|
|
1198
|
+
.u-btn.u-btn-toolbar[data-dropdown][data-dropdown*=more],
|
|
1199
|
+
.lyToolbar .u-btn.u-btn-primary[role=dropdown][data-dropdown*=more],
|
|
1200
|
+
.u-btn.u-btn-primary.u-btn-toolbar[role=dropdown][data-dropdown*=more],
|
|
1201
|
+
.u-btn.u-btn-toolbar[role=dropdown][data-dropdown*=more],
|
|
1202
|
+
.lyToolbar .u-btn.u-btn-primary[data-dropdown][data-dropdown=view],
|
|
1203
|
+
.u-btn.u-btn-primary.u-btn-toolbar[data-dropdown][data-dropdown=view],
|
|
1204
|
+
.u-btn.u-btn-toolbar[data-dropdown][data-dropdown=view],
|
|
1205
|
+
.lyToolbar .u-btn.u-btn-primary[role=dropdown][data-dropdown=view],
|
|
1206
|
+
.u-btn.u-btn-primary.u-btn-toolbar[role=dropdown][data-dropdown=view],
|
|
1207
|
+
.u-btn.u-btn-toolbar[role=dropdown][data-dropdown=view],
|
|
1208
|
+
.lyToolbar .u-btn.u-btn-primary[data-dropdown][data-dropdown=sort],
|
|
1209
|
+
.u-btn.u-btn-primary.u-btn-toolbar[data-dropdown][data-dropdown=sort],
|
|
1210
|
+
.u-btn.u-btn-toolbar[data-dropdown][data-dropdown=sort],
|
|
1211
|
+
.lyToolbar .u-btn.u-btn-primary[role=dropdown][data-dropdown=sort],
|
|
1212
|
+
.u-btn.u-btn-primary.u-btn-toolbar[role=dropdown][data-dropdown=sort],
|
|
1213
|
+
.u-btn.u-btn-toolbar[role=dropdown][data-dropdown=sort],
|
|
1214
|
+
.lyToolbar .u-btn.u-btn-primary[data-dropdown][data-dropdown=filter],
|
|
1215
|
+
.u-btn.u-btn-primary.u-btn-toolbar[data-dropdown][data-dropdown=filter],
|
|
1216
|
+
.u-btn.u-btn-toolbar[data-dropdown][data-dropdown=filter],
|
|
1217
|
+
.lyToolbar .u-btn.u-btn-primary[role=dropdown][data-dropdown=filter],
|
|
1218
|
+
.u-btn.u-btn-primary.u-btn-toolbar[role=dropdown][data-dropdown=filter],
|
|
1219
|
+
.u-btn.u-btn-toolbar[role=dropdown][data-dropdown=filter] {
|
|
1220
|
+
padding-right: 6px;
|
|
1221
|
+
}
|
|
1222
|
+
.lyToolbar .u-btn.u-btn-primary.split,
|
|
1223
|
+
.u-btn.u-btn-primary.u-btn-toolbar.split,
|
|
1224
|
+
.u-btn.u-btn-toolbar.split {
|
|
1225
|
+
padding-right: 0;
|
|
1226
|
+
}
|
|
1227
|
+
.lyToolbar .u-btn.u-btn-primary.split > .iconfont,
|
|
1228
|
+
.u-btn.u-btn-primary.u-btn-toolbar.split > .iconfont,
|
|
1229
|
+
.u-btn.u-btn-toolbar.split > .iconfont,
|
|
1230
|
+
.lyToolbar .u-btn.u-btn-primary.split > .iconfont + span:not([arrow]),
|
|
1231
|
+
.u-btn.u-btn-primary.u-btn-toolbar.split > .iconfont + span:not([arrow]),
|
|
1232
|
+
.u-btn.u-btn-toolbar.split > .iconfont + span:not([arrow]) {
|
|
1233
|
+
display: inline-block;
|
|
1234
|
+
vertical-align: top;
|
|
1235
|
+
}
|
|
1236
|
+
.lyToolbar .u-btn.u-btn-primary > .iconfont,
|
|
1237
|
+
.u-btn.u-btn-primary.u-btn-toolbar > .iconfont,
|
|
1238
|
+
.u-btn.u-btn-toolbar > .iconfont {
|
|
1239
|
+
line-height: inherit;
|
|
1240
|
+
vertical-align: bottom;
|
|
1241
|
+
}
|
|
1242
|
+
.lyToolbar .u-btn.u-btn-primary > .iconfont.f-mgr,
|
|
1243
|
+
.u-btn.u-btn-primary.u-btn-toolbar > .iconfont.f-mgr,
|
|
1244
|
+
.u-btn.u-btn-toolbar > .iconfont.f-mgr {
|
|
1245
|
+
margin-right: 6px;
|
|
1246
|
+
}
|
|
1247
|
+
.lyToolbar .u-btn.u-btn-primary > .iconfont.f-mgl,
|
|
1248
|
+
.u-btn.u-btn-primary.u-btn-toolbar > .iconfont.f-mgl,
|
|
1249
|
+
.u-btn.u-btn-toolbar > .iconfont.f-mgl {
|
|
1250
|
+
margin-left: 6px;
|
|
1251
|
+
}
|
|
1252
|
+
.lyToolbar .u-btn.u-btn-primary > .iconfont.f-vam,
|
|
1253
|
+
.u-btn.u-btn-primary.u-btn-toolbar > .iconfont.f-vam,
|
|
1254
|
+
.u-btn.u-btn-toolbar > .iconfont.f-vam {
|
|
1255
|
+
vertical-align: middle;
|
|
1256
|
+
}
|
|
1257
|
+
.lyToolbar .u-btn.u-btn-primary[arrow],
|
|
1258
|
+
.u-btn.u-btn-primary.u-btn-toolbar[arrow],
|
|
1259
|
+
.u-btn.u-btn-toolbar[arrow] {
|
|
1260
|
+
padding: 0;
|
|
1261
|
+
margin: -1px -1px 0 6px;
|
|
1262
|
+
border-radius: 0 4px 4px 0;
|
|
1263
|
+
vertical-align: bottom;
|
|
1264
|
+
}
|
|
1265
|
+
.lyToolbar .u-btn.u-btn-primary[arrow] .icondown,
|
|
1266
|
+
.u-btn.u-btn-primary.u-btn-toolbar[arrow] .icondown,
|
|
1267
|
+
.u-btn.u-btn-toolbar[arrow] .icondown {
|
|
1268
|
+
margin-left: 0;
|
|
1269
|
+
}
|
|
1270
|
+
.lyToolbar .u-btn.u-btn-primary .icondown,
|
|
1271
|
+
.u-btn.u-btn-primary.u-btn-toolbar .icondown,
|
|
1272
|
+
.u-btn.u-btn-toolbar .icondown {
|
|
1273
|
+
font-size: 16px;
|
|
1274
|
+
}
|
|
1275
|
+
.lyToolbar .u-btn.u-btn-primary.disabled,
|
|
1276
|
+
.u-btn.u-btn-primary.u-btn-toolbar.disabled,
|
|
1277
|
+
.u-btn.u-btn-toolbar.disabled,
|
|
1278
|
+
.lyToolbar .u-btn.u-btn-primary[disabled],
|
|
1279
|
+
.u-btn.u-btn-primary.u-btn-toolbar[disabled],
|
|
1280
|
+
.u-btn.u-btn-toolbar[disabled],
|
|
1281
|
+
.lyToolbar .u-btn.u-btn-primary.disabled:active,
|
|
1282
|
+
.u-btn.u-btn-primary.u-btn-toolbar.disabled:active,
|
|
1283
|
+
.u-btn.u-btn-toolbar.disabled:active,
|
|
1284
|
+
.lyToolbar .u-btn.u-btn-primary[disabled]:active,
|
|
1285
|
+
.u-btn.u-btn-primary.u-btn-toolbar[disabled]:active,
|
|
1286
|
+
.u-btn.u-btn-toolbar[disabled]:active {
|
|
1287
|
+
cursor: default;
|
|
1288
|
+
pointer-events: initial;
|
|
1289
|
+
}
|
|
1290
|
+
.lyToolbar .u-btn.u-btn-primary.split.disabled,
|
|
1291
|
+
.u-btn.u-btn-primary.u-btn-toolbar.split.disabled,
|
|
1292
|
+
.u-btn.u-btn-toolbar.split.disabled,
|
|
1293
|
+
.lyToolbar .u-btn.u-btn-primary.split[disabled],
|
|
1294
|
+
.u-btn.u-btn-primary.u-btn-toolbar.split[disabled],
|
|
1295
|
+
.u-btn.u-btn-toolbar.split[disabled],
|
|
1296
|
+
.lyToolbar .u-btn.u-btn-primary.split.disabled:active,
|
|
1297
|
+
.u-btn.u-btn-primary.u-btn-toolbar.split.disabled:active,
|
|
1298
|
+
.u-btn.u-btn-toolbar.split.disabled:active,
|
|
1299
|
+
.lyToolbar .u-btn.u-btn-primary.split[disabled]:active,
|
|
1300
|
+
.u-btn.u-btn-primary.u-btn-toolbar.split[disabled]:active,
|
|
1301
|
+
.u-btn.u-btn-toolbar.split[disabled]:active {
|
|
1302
|
+
cursor: default;
|
|
1303
|
+
opacity: 1;
|
|
1304
|
+
}
|
|
1305
|
+
.lyToolbar .u-btn.u-btn-primary.split.disabled > *:not([arrow]):not(.u-menu-dropdown),
|
|
1306
|
+
.u-btn.u-btn-primary.u-btn-toolbar.split.disabled > *:not([arrow]):not(.u-menu-dropdown),
|
|
1307
|
+
.u-btn.u-btn-toolbar.split.disabled > *:not([arrow]):not(.u-menu-dropdown),
|
|
1308
|
+
.lyToolbar .u-btn.u-btn-primary.split[disabled] > *:not([arrow]):not(.u-menu-dropdown),
|
|
1309
|
+
.u-btn.u-btn-primary.u-btn-toolbar.split[disabled] > *:not([arrow]):not(.u-menu-dropdown),
|
|
1310
|
+
.u-btn.u-btn-toolbar.split[disabled] > *:not([arrow]):not(.u-menu-dropdown),
|
|
1311
|
+
.lyToolbar .u-btn.u-btn-primary.split.disabled:active > *:not([arrow]):not(.u-menu-dropdown),
|
|
1312
|
+
.u-btn.u-btn-primary.u-btn-toolbar.split.disabled:active > *:not([arrow]):not(.u-menu-dropdown),
|
|
1313
|
+
.u-btn.u-btn-toolbar.split.disabled:active > *:not([arrow]):not(.u-menu-dropdown),
|
|
1314
|
+
.lyToolbar .u-btn.u-btn-primary.split[disabled]:active > *:not([arrow]):not(.u-menu-dropdown),
|
|
1315
|
+
.u-btn.u-btn-primary.u-btn-toolbar.split[disabled]:active > *:not([arrow]):not(.u-menu-dropdown),
|
|
1316
|
+
.u-btn.u-btn-toolbar.split[disabled]:active > *:not([arrow]):not(.u-menu-dropdown) {
|
|
1317
|
+
opacity: 0.5;
|
|
1318
|
+
}
|
|
1319
|
+
.lyToolbar .u-btn.u-btn-primary .iconhelp,
|
|
1320
|
+
.u-btn.u-btn-primary.u-btn-toolbar .iconhelp,
|
|
1321
|
+
.u-btn.u-btn-toolbar .iconhelp {
|
|
1322
|
+
color: #cd1515;
|
|
1323
|
+
}
|
|
1324
|
+
body {
|
|
1325
|
+
font-family: Arial, Helvetica Neue, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, PingFang SC, Microsoft YaHei, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji, sans-serif;
|
|
1326
|
+
}
|
|
1327
|
+
body ul,
|
|
1328
|
+
body li {
|
|
1329
|
+
list-style: none;
|
|
1330
|
+
}
|
|
1331
|
+
body p {
|
|
1332
|
+
margin: 0;
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1335
|
+
/*
|
|
1336
|
+
* Copyright (c) 2024 Mailtech.cn, Ltd. All Rights Reserved.
|
|
1337
|
+
*/
|
|
1338
|
+
/*
|
|
1339
|
+
* Copyright (c) 2025 Mailtech.cn, Ltd. All Rights Reserved.
|
|
1340
|
+
*/
|
|
1341
|
+
.m-cal-day .content-wrapper li.now:before,
|
|
1342
|
+
.m-cal-week .content-wrapper li.now:before,
|
|
1343
|
+
.m-cal-month .content-wrapper li.now:before,
|
|
1344
|
+
.m-cal-day .content-wrapper li.now:after,
|
|
1345
|
+
.m-cal-week .content-wrapper li.now:after,
|
|
1346
|
+
.m-cal-month .content-wrapper li.now:after {
|
|
1347
|
+
background: #2c6ccc;
|
|
1348
|
+
}
|
|
1349
|
+
.m-cal-month .content-wrapper td.cal-selected {
|
|
1350
|
+
color: #2c6ccc;
|
|
1351
|
+
background: #e4ecf8;
|
|
1352
|
+
}
|
|
1353
|
+
.m-cal-month .content-wrapper td.cal-selected .f-abs:before {
|
|
1354
|
+
border: 1px solid #2c6ccc;
|
|
1355
|
+
box-shadow: 0 0 4px 0 #2c6ccc;
|
|
1356
|
+
}
|
|
1357
|
+
.m-cal-month .content-wrapper td.cal-selected.cal-new-event:after {
|
|
1358
|
+
background: rgba(44, 108, 204, 0.2);
|
|
1359
|
+
}
|
|
1360
|
+
.m-cal-list .content-wrapper tr.highlight,
|
|
1361
|
+
.m-cal-list .content-wrapper tr.selected {
|
|
1362
|
+
background: #e4ecf8;
|
|
1363
|
+
}
|
|
1364
|
+
.m-cal-day .content-wrapper .main-content .calendar table th.cal-today,
|
|
1365
|
+
.m-cal-week .content-wrapper .main-content .calendar table th.cal-today {
|
|
1366
|
+
border-top: 4px solid #2c6ccc;
|
|
1367
|
+
}
|
|
1368
|
+
.calMain .content-wrapper .cal-today:before {
|
|
1369
|
+
background: #2c6ccc;
|
|
1370
|
+
}
|
|
1371
|
+
.calMain .content-wrapper .cal-today label > span {
|
|
1372
|
+
color: #2c6ccc;
|
|
1373
|
+
}
|
|
1374
|
+
.m-cal-day,
|
|
1375
|
+
.m-cal-week,
|
|
1376
|
+
.m-cal-month,
|
|
1377
|
+
.m-cal-list {
|
|
1378
|
+
height: 100%;
|
|
1379
|
+
}
|
|
1380
|
+
.m-cal-day .content-wrapper,
|
|
1381
|
+
.m-cal-week .content-wrapper,
|
|
1382
|
+
.m-cal-month .content-wrapper,
|
|
1383
|
+
.m-cal-list .content-wrapper {
|
|
1384
|
+
width: 100%;
|
|
1385
|
+
height: 100%;
|
|
1386
|
+
}
|
|
1387
|
+
.m-cal-day .content-wrapper .main-content,
|
|
1388
|
+
.m-cal-week .content-wrapper .main-content,
|
|
1389
|
+
.m-cal-month .content-wrapper .main-content,
|
|
1390
|
+
.m-cal-list .content-wrapper .main-content {
|
|
1391
|
+
height: 100%;
|
|
1392
|
+
background: #fff;
|
|
1393
|
+
border: 1px solid #e8e8e8;
|
|
1394
|
+
border-radius: 4px 4px 0 0;
|
|
1395
|
+
box-sizing: border-box;
|
|
1396
|
+
position: relative;
|
|
1397
|
+
}
|
|
1398
|
+
.m-cal-day .content-wrapper .main-content .message-tip .close,
|
|
1399
|
+
.m-cal-week .content-wrapper .main-content .message-tip .close,
|
|
1400
|
+
.m-cal-month .content-wrapper .main-content .message-tip .close,
|
|
1401
|
+
.m-cal-list .content-wrapper .main-content .message-tip .close {
|
|
1402
|
+
margin-left: 10px;
|
|
1403
|
+
}
|
|
1404
|
+
.m-cal-day .content-wrapper .main-content .message-tip .content,
|
|
1405
|
+
.m-cal-week .content-wrapper .main-content .message-tip .content,
|
|
1406
|
+
.m-cal-month .content-wrapper .main-content .message-tip .content,
|
|
1407
|
+
.m-cal-list .content-wrapper .main-content .message-tip .content {
|
|
1408
|
+
max-height: 96px;
|
|
1409
|
+
}
|
|
1410
|
+
.m-cal-day .content-wrapper .main-content .toolbar,
|
|
1411
|
+
.m-cal-week .content-wrapper .main-content .toolbar,
|
|
1412
|
+
.m-cal-month .content-wrapper .main-content .toolbar,
|
|
1413
|
+
.m-cal-list .content-wrapper .main-content .toolbar {
|
|
1414
|
+
padding: 12px 0 12px 16px;
|
|
1415
|
+
height: 55px;
|
|
1416
|
+
box-sizing: border-box;
|
|
1417
|
+
border-bottom: 1px solid #e8e8e8;
|
|
1418
|
+
}
|
|
1419
|
+
.m-cal-day .content-wrapper .main-content .toolbar .u-btn[data-btn=today],
|
|
1420
|
+
.m-cal-week .content-wrapper .main-content .toolbar .u-btn[data-btn=today],
|
|
1421
|
+
.m-cal-month .content-wrapper .main-content .toolbar .u-btn[data-btn=today],
|
|
1422
|
+
.m-cal-list .content-wrapper .main-content .toolbar .u-btn[data-btn=today] {
|
|
1423
|
+
padding: 0 20px;
|
|
1424
|
+
border: 1px solid #e8e8e8;
|
|
1425
|
+
}
|
|
1426
|
+
.m-cal-day .content-wrapper .main-content .toolbar .picker,
|
|
1427
|
+
.m-cal-week .content-wrapper .main-content .toolbar .picker,
|
|
1428
|
+
.m-cal-month .content-wrapper .main-content .toolbar .picker,
|
|
1429
|
+
.m-cal-list .content-wrapper .main-content .toolbar .picker {
|
|
1430
|
+
padding: 0 6px 0 8px;
|
|
1431
|
+
}
|
|
1432
|
+
.m-cal-day .content-wrapper .main-content .toolbar .picker .text,
|
|
1433
|
+
.m-cal-week .content-wrapper .main-content .toolbar .picker .text,
|
|
1434
|
+
.m-cal-month .content-wrapper .main-content .toolbar .picker .text,
|
|
1435
|
+
.m-cal-list .content-wrapper .main-content .toolbar .picker .text {
|
|
1436
|
+
border: none;
|
|
1437
|
+
font-weight: 500;
|
|
1438
|
+
}
|
|
1439
|
+
.m-cal-day .content-wrapper .main-content .toolbar .picker .icondown,
|
|
1440
|
+
.m-cal-week .content-wrapper .main-content .toolbar .picker .icondown,
|
|
1441
|
+
.m-cal-month .content-wrapper .main-content .toolbar .picker .icondown,
|
|
1442
|
+
.m-cal-list .content-wrapper .main-content .toolbar .picker .icondown {
|
|
1443
|
+
margin-left: 4px;
|
|
1444
|
+
}
|
|
1445
|
+
.m-cal-day .content-wrapper .main-content .toolbar .picker .text,
|
|
1446
|
+
.m-cal-week .content-wrapper .main-content .toolbar .picker .text,
|
|
1447
|
+
.m-cal-month .content-wrapper .main-content .toolbar .picker .text,
|
|
1448
|
+
.m-cal-list .content-wrapper .main-content .toolbar .picker .text,
|
|
1449
|
+
.m-cal-day .content-wrapper .main-content .toolbar .picker .icondown,
|
|
1450
|
+
.m-cal-week .content-wrapper .main-content .toolbar .picker .icondown,
|
|
1451
|
+
.m-cal-month .content-wrapper .main-content .toolbar .picker .icondown,
|
|
1452
|
+
.m-cal-list .content-wrapper .main-content .toolbar .picker .icondown {
|
|
1453
|
+
font-size: 20px;
|
|
1454
|
+
}
|
|
1455
|
+
.m-cal-day .content-wrapper .main-content .calendar,
|
|
1456
|
+
.m-cal-week .content-wrapper .main-content .calendar,
|
|
1457
|
+
.m-cal-month .content-wrapper .main-content .calendar,
|
|
1458
|
+
.m-cal-list .content-wrapper .main-content .calendar {
|
|
1459
|
+
position: absolute;
|
|
1460
|
+
bottom: 0;
|
|
1461
|
+
}
|
|
1462
|
+
.m-cal-day .content-wrapper .main-content .calendar table,
|
|
1463
|
+
.m-cal-week .content-wrapper .main-content .calendar table,
|
|
1464
|
+
.m-cal-month .content-wrapper .main-content .calendar table,
|
|
1465
|
+
.m-cal-list .content-wrapper .main-content .calendar table {
|
|
1466
|
+
user-select: none;
|
|
1467
|
+
width: 100%;
|
|
1468
|
+
height: 100%;
|
|
1469
|
+
table-layout: fixed;
|
|
1470
|
+
border-collapse: collapse;
|
|
1471
|
+
}
|
|
1472
|
+
.m-cal-day .content-wrapper .main-content .calendar table th,
|
|
1473
|
+
.m-cal-week .content-wrapper .main-content .calendar table th,
|
|
1474
|
+
.m-cal-month .content-wrapper .main-content .calendar table th,
|
|
1475
|
+
.m-cal-list .content-wrapper .main-content .calendar table th,
|
|
1476
|
+
.m-cal-day .content-wrapper .main-content .calendar table td,
|
|
1477
|
+
.m-cal-week .content-wrapper .main-content .calendar table td,
|
|
1478
|
+
.m-cal-month .content-wrapper .main-content .calendar table td,
|
|
1479
|
+
.m-cal-list .content-wrapper .main-content .calendar table td {
|
|
1480
|
+
text-align: left;
|
|
1481
|
+
position: relative;
|
|
1482
|
+
}
|
|
1483
|
+
.m-cal-day .content-wrapper .main-content .calendar table th,
|
|
1484
|
+
.m-cal-week .content-wrapper .main-content .calendar table th,
|
|
1485
|
+
.m-cal-month .content-wrapper .main-content .calendar table th,
|
|
1486
|
+
.m-cal-list .content-wrapper .main-content .calendar table th {
|
|
1487
|
+
font-weight: 400;
|
|
1488
|
+
color: #424242;
|
|
1489
|
+
box-sizing: border-box;
|
|
1490
|
+
}
|
|
1491
|
+
.m-cal-day .content-wrapper .main-content .calendar table th[data-order],
|
|
1492
|
+
.m-cal-week .content-wrapper .main-content .calendar table th[data-order],
|
|
1493
|
+
.m-cal-month .content-wrapper .main-content .calendar table th[data-order],
|
|
1494
|
+
.m-cal-list .content-wrapper .main-content .calendar table th[data-order] {
|
|
1495
|
+
cursor: pointer;
|
|
1496
|
+
}
|
|
1497
|
+
.m-cal-day .content-wrapper .main-content .calendar table th[data-order] span,
|
|
1498
|
+
.m-cal-week .content-wrapper .main-content .calendar table th[data-order] span,
|
|
1499
|
+
.m-cal-month .content-wrapper .main-content .calendar table th[data-order] span,
|
|
1500
|
+
.m-cal-list .content-wrapper .main-content .calendar table th[data-order] span,
|
|
1501
|
+
.m-cal-day .content-wrapper .main-content .calendar table th[data-order] + i,
|
|
1502
|
+
.m-cal-week .content-wrapper .main-content .calendar table th[data-order] + i,
|
|
1503
|
+
.m-cal-month .content-wrapper .main-content .calendar table th[data-order] + i,
|
|
1504
|
+
.m-cal-list .content-wrapper .main-content .calendar table th[data-order] + i {
|
|
1505
|
+
vertical-align: middle;
|
|
1506
|
+
}
|
|
1507
|
+
.m-cal-day .content-wrapper .main-content .calendar table th[data-order] i,
|
|
1508
|
+
.m-cal-week .content-wrapper .main-content .calendar table th[data-order] i,
|
|
1509
|
+
.m-cal-month .content-wrapper .main-content .calendar table th[data-order] i,
|
|
1510
|
+
.m-cal-list .content-wrapper .main-content .calendar table th[data-order] i {
|
|
1511
|
+
font-weight: bold;
|
|
1512
|
+
font-size: 12px;
|
|
1513
|
+
}
|
|
1514
|
+
.m-cal-day .content-wrapper .main-content .calendar li,
|
|
1515
|
+
.m-cal-week .content-wrapper .main-content .calendar li,
|
|
1516
|
+
.m-cal-month .content-wrapper .main-content .calendar li,
|
|
1517
|
+
.m-cal-list .content-wrapper .main-content .calendar li {
|
|
1518
|
+
white-space: nowrap;
|
|
1519
|
+
}
|
|
1520
|
+
.m-cal-day .content-wrapper .main-content .calendar li:not(.now),
|
|
1521
|
+
.m-cal-week .content-wrapper .main-content .calendar li:not(.now),
|
|
1522
|
+
.m-cal-month .content-wrapper .main-content .calendar li:not(.now),
|
|
1523
|
+
.m-cal-list .content-wrapper .main-content .calendar li:not(.now) {
|
|
1524
|
+
overflow: hidden;
|
|
1525
|
+
}
|
|
1526
|
+
.m-cal-day .content-wrapper .main-content .calendar li.now,
|
|
1527
|
+
.m-cal-week .content-wrapper .main-content .calendar li.now,
|
|
1528
|
+
.m-cal-month .content-wrapper .main-content .calendar li.now,
|
|
1529
|
+
.m-cal-list .content-wrapper .main-content .calendar li.now {
|
|
1530
|
+
transition: top 0.1s cubic-bezier(0.17, 0.17, 0, 1);
|
|
1531
|
+
}
|
|
1532
|
+
.m-cal-day .content-wrapper .main-content .calendar li.now:before,
|
|
1533
|
+
.m-cal-week .content-wrapper .main-content .calendar li.now:before,
|
|
1534
|
+
.m-cal-month .content-wrapper .main-content .calendar li.now:before,
|
|
1535
|
+
.m-cal-list .content-wrapper .main-content .calendar li.now:before,
|
|
1536
|
+
.m-cal-day .content-wrapper .main-content .calendar li.now:after,
|
|
1537
|
+
.m-cal-week .content-wrapper .main-content .calendar li.now:after,
|
|
1538
|
+
.m-cal-month .content-wrapper .main-content .calendar li.now:after,
|
|
1539
|
+
.m-cal-list .content-wrapper .main-content .calendar li.now:after {
|
|
1540
|
+
position: absolute;
|
|
1541
|
+
content: '';
|
|
1542
|
+
top: 0;
|
|
1543
|
+
display: inline-block;
|
|
1544
|
+
}
|
|
1545
|
+
.m-cal-day .content-wrapper .main-content .calendar li.now:before,
|
|
1546
|
+
.m-cal-week .content-wrapper .main-content .calendar li.now:before,
|
|
1547
|
+
.m-cal-month .content-wrapper .main-content .calendar li.now:before,
|
|
1548
|
+
.m-cal-list .content-wrapper .main-content .calendar li.now:before {
|
|
1549
|
+
width: 12px;
|
|
1550
|
+
height: 12px;
|
|
1551
|
+
border-radius: 12px;
|
|
1552
|
+
margin: -6px 0 0 -6px;
|
|
1553
|
+
}
|
|
1554
|
+
.m-cal-day .content-wrapper .main-content .calendar li.now:after,
|
|
1555
|
+
.m-cal-week .content-wrapper .main-content .calendar li.now:after,
|
|
1556
|
+
.m-cal-month .content-wrapper .main-content .calendar li.now:after,
|
|
1557
|
+
.m-cal-list .content-wrapper .main-content .calendar li.now:after {
|
|
1558
|
+
left: 8px;
|
|
1559
|
+
right: 0;
|
|
1560
|
+
height: 2px;
|
|
1561
|
+
top: -1px;
|
|
1562
|
+
}
|
|
1563
|
+
.m-cal-day .content-wrapper .main-content .calendar li.event_selection,
|
|
1564
|
+
.m-cal-week .content-wrapper .main-content .calendar li.event_selection,
|
|
1565
|
+
.m-cal-month .content-wrapper .main-content .calendar li.event_selection,
|
|
1566
|
+
.m-cal-list .content-wrapper .main-content .calendar li.event_selection {
|
|
1567
|
+
font-size: 12px;
|
|
1568
|
+
line-height: 20px;
|
|
1569
|
+
height: 24px;
|
|
1570
|
+
border-radius: 3px;
|
|
1571
|
+
padding: 2px 4px 2px 10px;
|
|
1572
|
+
box-sizing: border-box;
|
|
1573
|
+
z-index: 1;
|
|
1574
|
+
position: relative;
|
|
1575
|
+
cursor: pointer;
|
|
1576
|
+
}
|
|
1577
|
+
.m-cal-day .content-wrapper .main-content .calendar li.event_selection.collapsed,
|
|
1578
|
+
.m-cal-week .content-wrapper .main-content .calendar li.event_selection.collapsed,
|
|
1579
|
+
.m-cal-month .content-wrapper .main-content .calendar li.event_selection.collapsed,
|
|
1580
|
+
.m-cal-list .content-wrapper .main-content .calendar li.event_selection.collapsed {
|
|
1581
|
+
visibility: hidden;
|
|
1582
|
+
}
|
|
1583
|
+
.m-cal-day .content-wrapper .main-content .calendar li.event_selection .event_icon,
|
|
1584
|
+
.m-cal-week .content-wrapper .main-content .calendar li.event_selection .event_icon,
|
|
1585
|
+
.m-cal-month .content-wrapper .main-content .calendar li.event_selection .event_icon,
|
|
1586
|
+
.m-cal-list .content-wrapper .main-content .calendar li.event_selection .event_icon {
|
|
1587
|
+
font-size: 20px;
|
|
1588
|
+
white-space: nowrap;
|
|
1589
|
+
}
|
|
1590
|
+
.m-cal-day .content-wrapper .main-content .calendar li.event_selection:not(.counter):before,
|
|
1591
|
+
.m-cal-week .content-wrapper .main-content .calendar li.event_selection:not(.counter):before,
|
|
1592
|
+
.m-cal-month .content-wrapper .main-content .calendar li.event_selection:not(.counter):before,
|
|
1593
|
+
.m-cal-list .content-wrapper .main-content .calendar li.event_selection:not(.counter):before {
|
|
1594
|
+
box-sizing: border-box;
|
|
1595
|
+
content: '';
|
|
1596
|
+
border-radius: 3px 0 0 3px;
|
|
1597
|
+
height: 100%;
|
|
1598
|
+
width: 4px;
|
|
1599
|
+
position: absolute;
|
|
1600
|
+
left: 0;
|
|
1601
|
+
top: 0;
|
|
1602
|
+
display: inline-block;
|
|
1603
|
+
}
|
|
1604
|
+
.m-cal-day .content-wrapper .main-content .calendar li.event_selection.short-item:before,
|
|
1605
|
+
.m-cal-week .content-wrapper .main-content .calendar li.event_selection.short-item:before,
|
|
1606
|
+
.m-cal-month .content-wrapper .main-content .calendar li.event_selection.short-item:before,
|
|
1607
|
+
.m-cal-list .content-wrapper .main-content .calendar li.event_selection.short-item:before {
|
|
1608
|
+
height: 6px;
|
|
1609
|
+
}
|
|
1610
|
+
.m-cal-day .content-wrapper .main-content .calendar .main,
|
|
1611
|
+
.m-cal-week .content-wrapper .main-content .calendar .main,
|
|
1612
|
+
.m-cal-month .content-wrapper .main-content .calendar .main,
|
|
1613
|
+
.m-cal-list .content-wrapper .main-content .calendar .main {
|
|
1614
|
+
position: absolute;
|
|
1615
|
+
top: 0;
|
|
1616
|
+
bottom: 0;
|
|
1617
|
+
left: 0;
|
|
1618
|
+
right: 0;
|
|
1619
|
+
}
|
|
1620
|
+
.m-cal-week[firstweekday] .content-wrapper .main-content .calendar .main table td:last-child,
|
|
1621
|
+
.m-cal-week[firstweekday="0"] .content-wrapper .main-content .calendar .main table td:nth-child(2),
|
|
1622
|
+
.m-cal-week[firstweekday="1"] .content-wrapper .main-content .calendar .main table td:nth-child(7) {
|
|
1623
|
+
background: #f5f6f8;
|
|
1624
|
+
}
|
|
1625
|
+
.m-cal-day .content-wrapper .main-content .calendar .all-days,
|
|
1626
|
+
.m-cal-week .content-wrapper .main-content .calendar .all-days {
|
|
1627
|
+
max-height: 260px;
|
|
1628
|
+
}
|
|
1629
|
+
.m-cal-day .content-wrapper .main-content .calendar .all-days span.date-next,
|
|
1630
|
+
.m-cal-week .content-wrapper .main-content .calendar .all-days span.date-next {
|
|
1631
|
+
margin-left: 5px;
|
|
1632
|
+
}
|
|
1633
|
+
.m-cal-day .content-wrapper .main-content .calendar .all-days span.date-prev,
|
|
1634
|
+
.m-cal-week .content-wrapper .main-content .calendar .all-days span.date-prev {
|
|
1635
|
+
margin-left: -10px;
|
|
1636
|
+
margin-right: 5px;
|
|
1637
|
+
}
|
|
1638
|
+
.m-cal-day .content-wrapper .main-content .calendar .all-days span.date-next,
|
|
1639
|
+
.m-cal-week .content-wrapper .main-content .calendar .all-days span.date-next,
|
|
1640
|
+
.m-cal-day .content-wrapper .main-content .calendar .all-days span.date-prev,
|
|
1641
|
+
.m-cal-week .content-wrapper .main-content .calendar .all-days span.date-prev {
|
|
1642
|
+
width: 56px;
|
|
1643
|
+
height: 20px;
|
|
1644
|
+
font-size: 12px;
|
|
1645
|
+
display: inline-block;
|
|
1646
|
+
vertical-align: top;
|
|
1647
|
+
}
|
|
1648
|
+
.m-cal-day .content-wrapper .main-content .calendar .all-days span.date-next i,
|
|
1649
|
+
.m-cal-week .content-wrapper .main-content .calendar .all-days span.date-next i,
|
|
1650
|
+
.m-cal-day .content-wrapper .main-content .calendar .all-days span.date-prev i,
|
|
1651
|
+
.m-cal-week .content-wrapper .main-content .calendar .all-days span.date-prev i {
|
|
1652
|
+
color: #2e2e2e;
|
|
1653
|
+
}
|
|
1654
|
+
.m-cal-day .content-wrapper .main-content .calendar .all-days table td,
|
|
1655
|
+
.m-cal-week .content-wrapper .main-content .calendar .all-days table td {
|
|
1656
|
+
vertical-align: top;
|
|
1657
|
+
}
|
|
1658
|
+
.m-cal-day .content-wrapper .main-content .calendar .all-days ul,
|
|
1659
|
+
.m-cal-week .content-wrapper .main-content .calendar .all-days ul {
|
|
1660
|
+
padding: 0 2px;
|
|
1661
|
+
}
|
|
1662
|
+
.m-cal-day .content-wrapper .main-content .calendar .all-days ul li.new_event_on span.date-next i,
|
|
1663
|
+
.m-cal-week .content-wrapper .main-content .calendar .all-days ul li.new_event_on span.date-next i,
|
|
1664
|
+
.m-cal-day .content-wrapper .main-content .calendar .all-days ul li.new_event_on span.date-prev i,
|
|
1665
|
+
.m-cal-week .content-wrapper .main-content .calendar .all-days ul li.new_event_on span.date-prev i {
|
|
1666
|
+
color: #fff;
|
|
1667
|
+
}
|
|
1668
|
+
.m-cal-day .content-wrapper .main-content .calendar .all-days ul li.empty,
|
|
1669
|
+
.m-cal-week .content-wrapper .main-content .calendar .all-days ul li.empty,
|
|
1670
|
+
.m-cal-day .content-wrapper .main-content .calendar .all-days ul li.event_selection,
|
|
1671
|
+
.m-cal-week .content-wrapper .main-content .calendar .all-days ul li.event_selection {
|
|
1672
|
+
margin: 1px 0;
|
|
1673
|
+
}
|
|
1674
|
+
.m-cal-day .content-wrapper .main-content .calendar .all-days ul li.empty,
|
|
1675
|
+
.m-cal-week .content-wrapper .main-content .calendar .all-days ul li.empty {
|
|
1676
|
+
height: 24px;
|
|
1677
|
+
}
|
|
1678
|
+
.m-cal-day .content-wrapper .main-content .calendar .all-days ul li.empty:hover,
|
|
1679
|
+
.m-cal-week .content-wrapper .main-content .calendar .all-days ul li.empty:hover {
|
|
1680
|
+
background: none;
|
|
1681
|
+
}
|
|
1682
|
+
.m-cal-day .content-wrapper .main-content .calendar .events li,
|
|
1683
|
+
.m-cal-week .content-wrapper .main-content .calendar .events li {
|
|
1684
|
+
position: absolute;
|
|
1685
|
+
}
|
|
1686
|
+
.m-cal-day .content-wrapper .main-content .calendar .events li.now,
|
|
1687
|
+
.m-cal-week .content-wrapper .main-content .calendar .events li.now {
|
|
1688
|
+
z-index: 2;
|
|
1689
|
+
}
|
|
1690
|
+
.m-cal-day .content-wrapper .main-content .calendar .events li:not(.slim) .event_icon,
|
|
1691
|
+
.m-cal-week .content-wrapper .main-content .calendar .events li:not(.slim) .event_icon {
|
|
1692
|
+
position: absolute;
|
|
1693
|
+
bottom: 2px;
|
|
1694
|
+
right: 4px;
|
|
1695
|
+
}
|
|
1696
|
+
.m-cal-day .content-wrapper .main-content .calendar div.main,
|
|
1697
|
+
.m-cal-week .content-wrapper .main-content .calendar div.main {
|
|
1698
|
+
top: 58px;
|
|
1699
|
+
border-top: 1px solid #e8e8e8;
|
|
1700
|
+
}
|
|
1701
|
+
.m-cal-day .content-wrapper .main-content .calendar div.main table,
|
|
1702
|
+
.m-cal-week .content-wrapper .main-content .calendar div.main table {
|
|
1703
|
+
margin-top: -1px;
|
|
1704
|
+
}
|
|
1705
|
+
.m-cal-day .content-wrapper .main-content .calendar div.main table td,
|
|
1706
|
+
.m-cal-week .content-wrapper .main-content .calendar div.main table td {
|
|
1707
|
+
border-style: solid;
|
|
1708
|
+
border-color: #e8e8e8;
|
|
1709
|
+
border-width: 0 1px 1px 1px;
|
|
1710
|
+
}
|
|
1711
|
+
.m-cal-day .content-wrapper .main-content .calendar div.main table td:first-child,
|
|
1712
|
+
.m-cal-week .content-wrapper .main-content .calendar div.main table td:first-child {
|
|
1713
|
+
width: 60px;
|
|
1714
|
+
padding: 0 8px;
|
|
1715
|
+
border-width: 0 1px 0 0;
|
|
1716
|
+
box-sizing: border-box;
|
|
1717
|
+
text-align: center;
|
|
1718
|
+
}
|
|
1719
|
+
.m-cal-day .content-wrapper .main-content .calendar div.main table td:last-child,
|
|
1720
|
+
.m-cal-week .content-wrapper .main-content .calendar div.main table td:last-child {
|
|
1721
|
+
border-width: 0 0 0 1px;
|
|
1722
|
+
}
|
|
1723
|
+
.m-cal-day .content-wrapper .main-content .calendar div.main table td:first-child,
|
|
1724
|
+
.m-cal-week .content-wrapper .main-content .calendar div.main table td:first-child {
|
|
1725
|
+
border-width: 0 1px 1px 0;
|
|
1726
|
+
}
|
|
1727
|
+
.m-cal-day .content-wrapper .main-content .calendar div.main table td:last-child,
|
|
1728
|
+
.m-cal-week .content-wrapper .main-content .calendar div.main table td:last-child {
|
|
1729
|
+
border-width: 1px 0 0 1px;
|
|
1730
|
+
}
|
|
1731
|
+
.m-cal-day .content-wrapper .main-content .calendar div.main table td li,
|
|
1732
|
+
.m-cal-week .content-wrapper .main-content .calendar div.main table td li {
|
|
1733
|
+
position: absolute;
|
|
1734
|
+
}
|
|
1735
|
+
.m-cal-day .content-wrapper .main-content .calendar div.main table tr.odd td,
|
|
1736
|
+
.m-cal-week .content-wrapper .main-content .calendar div.main table tr.odd td {
|
|
1737
|
+
border-bottom-style: dashed;
|
|
1738
|
+
}
|
|
1739
|
+
.m-cal-day .content-wrapper .main-content .calendar div.main table tr:not(.odd) td,
|
|
1740
|
+
.m-cal-week .content-wrapper .main-content .calendar div.main table tr:not(.odd) td {
|
|
1741
|
+
border-top-style: dashed;
|
|
1742
|
+
}
|
|
1743
|
+
.m-cal-day .content-wrapper .main-content .calendar div.main table tr td,
|
|
1744
|
+
.m-cal-week .content-wrapper .main-content .calendar div.main table tr td {
|
|
1745
|
+
height: 31px;
|
|
1746
|
+
}
|
|
1747
|
+
.m-cal-day .content-wrapper .main-content .calendar div.main table tr td:not(:first-child),
|
|
1748
|
+
.m-cal-week .content-wrapper .main-content .calendar div.main table tr td:not(:first-child) {
|
|
1749
|
+
vertical-align: top;
|
|
1750
|
+
}
|
|
1751
|
+
.m-cal-day .content-wrapper .main-content .calendar table th,
|
|
1752
|
+
.m-cal-week .content-wrapper .main-content .calendar table th,
|
|
1753
|
+
.m-cal-day .content-wrapper .main-content .calendar table td,
|
|
1754
|
+
.m-cal-week .content-wrapper .main-content .calendar table td {
|
|
1755
|
+
border-style: solid;
|
|
1756
|
+
border-color: #e8e8e8;
|
|
1757
|
+
border-width: 0 1px;
|
|
1758
|
+
}
|
|
1759
|
+
.m-cal-day .content-wrapper .main-content .calendar table th:first-child,
|
|
1760
|
+
.m-cal-week .content-wrapper .main-content .calendar table th:first-child,
|
|
1761
|
+
.m-cal-day .content-wrapper .main-content .calendar table td:first-child,
|
|
1762
|
+
.m-cal-week .content-wrapper .main-content .calendar table td:first-child {
|
|
1763
|
+
width: 60px;
|
|
1764
|
+
padding: 0 8px;
|
|
1765
|
+
border-width: 0 1px 0 0;
|
|
1766
|
+
box-sizing: border-box;
|
|
1767
|
+
text-align: center;
|
|
1768
|
+
}
|
|
1769
|
+
.m-cal-day .content-wrapper .main-content .calendar table th:last-child,
|
|
1770
|
+
.m-cal-week .content-wrapper .main-content .calendar table th:last-child,
|
|
1771
|
+
.m-cal-day .content-wrapper .main-content .calendar table td:last-child,
|
|
1772
|
+
.m-cal-week .content-wrapper .main-content .calendar table td:last-child {
|
|
1773
|
+
border-width: 0 0 0 1px;
|
|
1774
|
+
}
|
|
1775
|
+
.m-cal-day .content-wrapper .main-content .calendar table th,
|
|
1776
|
+
.m-cal-week .content-wrapper .main-content .calendar table th {
|
|
1777
|
+
height: 60px;
|
|
1778
|
+
font-size: 12px;
|
|
1779
|
+
padding: 4px 0;
|
|
1780
|
+
vertical-align: top;
|
|
1781
|
+
}
|
|
1782
|
+
.m-cal-day .content-wrapper .main-content .calendar table th:first-child,
|
|
1783
|
+
.m-cal-week .content-wrapper .main-content .calendar table th:first-child {
|
|
1784
|
+
vertical-align: bottom;
|
|
1785
|
+
}
|
|
1786
|
+
.m-cal-day .content-wrapper .main-content .calendar table th > .label,
|
|
1787
|
+
.m-cal-week .content-wrapper .main-content .calendar table th > .label,
|
|
1788
|
+
.m-cal-day .content-wrapper .main-content .calendar table th .date,
|
|
1789
|
+
.m-cal-week .content-wrapper .main-content .calendar table th .date {
|
|
1790
|
+
padding: 0 12px;
|
|
1791
|
+
}
|
|
1792
|
+
.m-cal-day .content-wrapper .main-content .calendar table th .date,
|
|
1793
|
+
.m-cal-week .content-wrapper .main-content .calendar table th .date {
|
|
1794
|
+
font-size: 14px;
|
|
1795
|
+
line-height: 28px;
|
|
1796
|
+
margin-top: 4px;
|
|
1797
|
+
}
|
|
1798
|
+
.m-cal-day .content-wrapper .main-content .calendar table th {
|
|
1799
|
+
border-width: 0 0 0 1px;
|
|
1800
|
+
}
|
|
1801
|
+
.m-cal-month .content-wrapper .main-content.aside {
|
|
1802
|
+
margin-right: 340px /** gap = */;
|
|
1803
|
+
}
|
|
1804
|
+
.m-cal-month .content-wrapper .main-content .calendar div.main {
|
|
1805
|
+
top: 49px;
|
|
1806
|
+
overflow: hidden !important;
|
|
1807
|
+
}
|
|
1808
|
+
.m-cal-month .content-wrapper .main-content .calendar table td,
|
|
1809
|
+
.m-cal-month .content-wrapper .main-content .calendar table th {
|
|
1810
|
+
border-bottom: 1px solid #e8e8e8;
|
|
1811
|
+
}
|
|
1812
|
+
.m-cal-month .content-wrapper .main-content .calendar table th {
|
|
1813
|
+
height: 48px;
|
|
1814
|
+
padding: 20px 0 8px 14px;
|
|
1815
|
+
}
|
|
1816
|
+
.m-cal-month .content-wrapper .main-content .calendar table td {
|
|
1817
|
+
cursor: pointer;
|
|
1818
|
+
vertical-align: top;
|
|
1819
|
+
position: relative;
|
|
1820
|
+
}
|
|
1821
|
+
.m-cal-month .content-wrapper .main-content .calendar table td > div > label {
|
|
1822
|
+
display: inline-block;
|
|
1823
|
+
overflow: hidden;
|
|
1824
|
+
word-wrap: normal;
|
|
1825
|
+
white-space: nowrap;
|
|
1826
|
+
text-overflow: ellipsis;
|
|
1827
|
+
width: 100%;
|
|
1828
|
+
box-sizing: border-box;
|
|
1829
|
+
padding: 8px 0 4px 14px;
|
|
1830
|
+
}
|
|
1831
|
+
.m-cal-month .content-wrapper .main-content .calendar table td .MonthEvent {
|
|
1832
|
+
padding: 0 2px;
|
|
1833
|
+
}
|
|
1834
|
+
.m-cal-month .content-wrapper .main-content .calendar table td .MonthEvent li.empty,
|
|
1835
|
+
.m-cal-month .content-wrapper .main-content .calendar table td .MonthEvent li.event_selection {
|
|
1836
|
+
margin: 1px 0;
|
|
1837
|
+
}
|
|
1838
|
+
.m-cal-month .content-wrapper .main-content .calendar table td .MonthEvent li.empty {
|
|
1839
|
+
height: 24px;
|
|
1840
|
+
}
|
|
1841
|
+
.m-cal-month .content-wrapper .main-content .calendar table td .MonthEvent li.empty:hover {
|
|
1842
|
+
background: none;
|
|
1843
|
+
}
|
|
1844
|
+
.m-cal-month .content-wrapper .main-content .calendar table td .MonthEvent li.event_selection.counter {
|
|
1845
|
+
background: #ededed;
|
|
1846
|
+
padding: 2px 0;
|
|
1847
|
+
text-align: center;
|
|
1848
|
+
}
|
|
1849
|
+
.m-cal-month .content-wrapper .main-content .calendar table td .MonthEvent li.event_selection.counter:hover {
|
|
1850
|
+
background: #e0e0e0;
|
|
1851
|
+
}
|
|
1852
|
+
.m-cal-month .content-wrapper .main-content .calendar table td .MonthEvent li.event_selection .event_time {
|
|
1853
|
+
margin-right: 4px;
|
|
1854
|
+
}
|
|
1855
|
+
.m-cal-month .content-wrapper .main-content .calendar table td.cal-today:before {
|
|
1856
|
+
content: '';
|
|
1857
|
+
position: absolute;
|
|
1858
|
+
top: 0;
|
|
1859
|
+
left: 0;
|
|
1860
|
+
width: 100%;
|
|
1861
|
+
height: 4px;
|
|
1862
|
+
display: inline-block;
|
|
1863
|
+
}
|
|
1864
|
+
.m-cal-month .content-wrapper .main-content .calendar table td.cal-today label > span {
|
|
1865
|
+
font-weight: 700;
|
|
1866
|
+
}
|
|
1867
|
+
.m-cal-month .content-wrapper .main-content .calendar table td.cal-hidden {
|
|
1868
|
+
color: #626262;
|
|
1869
|
+
background: #f8f8f8;
|
|
1870
|
+
}
|
|
1871
|
+
.m-cal-month .content-wrapper .main-content .calendar table td.cal-selected {
|
|
1872
|
+
position: relative;
|
|
1873
|
+
}
|
|
1874
|
+
.m-cal-month .content-wrapper .main-content .calendar table td.cal-selected .f-abs:before {
|
|
1875
|
+
border-radius: 1px;
|
|
1876
|
+
height: 100%;
|
|
1877
|
+
padding: 1px;
|
|
1878
|
+
top: 0;
|
|
1879
|
+
}
|
|
1880
|
+
.m-cal-month .content-wrapper .main-content .calendar table td.cal-selected.cal-new-event:after {
|
|
1881
|
+
border-radius: 4px;
|
|
1882
|
+
height: 24px;
|
|
1883
|
+
top: 5px;
|
|
1884
|
+
box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.25);
|
|
1885
|
+
}
|
|
1886
|
+
.m-cal-month .content-wrapper .main-content .calendar table td.cal-selected .f-abs:before,
|
|
1887
|
+
.m-cal-month .content-wrapper .main-content .calendar table td.cal-selected.cal-new-event:after {
|
|
1888
|
+
content: '';
|
|
1889
|
+
width: 100%;
|
|
1890
|
+
display: inline-block;
|
|
1891
|
+
left: 0;
|
|
1892
|
+
box-sizing: border-box;
|
|
1893
|
+
position: absolute;
|
|
1894
|
+
z-index: 1;
|
|
1895
|
+
}
|
|
1896
|
+
.m-cal-month .content-wrapper .main-content.transition .calendar table td li {
|
|
1897
|
+
transition: width 0.1s cubic-bezier(0.17, 0.17, 0, 1);
|
|
1898
|
+
}
|
|
1899
|
+
.m-cal-month .content-wrapper .main-content .aside-toggle {
|
|
1900
|
+
position: fixed;
|
|
1901
|
+
bottom: 0;
|
|
1902
|
+
right: 0;
|
|
1903
|
+
margin-right: 0;
|
|
1904
|
+
z-index: 1;
|
|
1905
|
+
}
|
|
1906
|
+
.m-cal-month .content-wrapper .aside-toggle {
|
|
1907
|
+
border-color: #e8e8e8;
|
|
1908
|
+
}
|
|
1909
|
+
.m-cal-month .content-wrapper .aside-content {
|
|
1910
|
+
position: absolute;
|
|
1911
|
+
top: 0;
|
|
1912
|
+
right: 0;
|
|
1913
|
+
height: 100%;
|
|
1914
|
+
background: #fff;
|
|
1915
|
+
border: 1px solid #e8e8e8;
|
|
1916
|
+
border-radius: 4px 4px 0 0;
|
|
1917
|
+
box-sizing: border-box;
|
|
1918
|
+
width: 335px;
|
|
1919
|
+
}
|
|
1920
|
+
.m-cal-month .content-wrapper .aside-content .header {
|
|
1921
|
+
height: 55px;
|
|
1922
|
+
border-bottom: 1px solid #e8e8e8;
|
|
1923
|
+
font-size: 20px;
|
|
1924
|
+
font-weight: 700;
|
|
1925
|
+
padding: 14px 16px;
|
|
1926
|
+
box-sizing: border-box;
|
|
1927
|
+
}
|
|
1928
|
+
.m-cal-month .content-wrapper .aside-content > ul {
|
|
1929
|
+
position: absolute;
|
|
1930
|
+
width: 100%;
|
|
1931
|
+
top: 55px;
|
|
1932
|
+
bottom: 32px;
|
|
1933
|
+
padding: 0 16px;
|
|
1934
|
+
box-sizing: border-box;
|
|
1935
|
+
}
|
|
1936
|
+
.m-cal-month .content-wrapper .aside-content > ul > li {
|
|
1937
|
+
border-radius: 4px;
|
|
1938
|
+
margin-top: 9px;
|
|
1939
|
+
height: 54px;
|
|
1940
|
+
background: #fff;
|
|
1941
|
+
overflow: hidden;
|
|
1942
|
+
padding: 0 16px 0 6px;
|
|
1943
|
+
line-height: 16px;
|
|
1944
|
+
font-size: 12px;
|
|
1945
|
+
position: relative;
|
|
1946
|
+
}
|
|
1947
|
+
.m-cal-month .content-wrapper .aside-content > ul > li table {
|
|
1948
|
+
width: 100%;
|
|
1949
|
+
height: 100%;
|
|
1950
|
+
table-layout: fixed;
|
|
1951
|
+
}
|
|
1952
|
+
.m-cal-month .content-wrapper .aside-content > ul > li table td {
|
|
1953
|
+
padding-left: 4px;
|
|
1954
|
+
overflow: hidden;
|
|
1955
|
+
word-wrap: normal;
|
|
1956
|
+
white-space: nowrap;
|
|
1957
|
+
text-overflow: ellipsis;
|
|
1958
|
+
}
|
|
1959
|
+
.m-cal-month .content-wrapper .aside-content > ul > li table i {
|
|
1960
|
+
color: #626262;
|
|
1961
|
+
}
|
|
1962
|
+
.m-cal-month .content-wrapper .aside-content > ul > li .ico {
|
|
1963
|
+
text-align: right;
|
|
1964
|
+
}
|
|
1965
|
+
.m-cal-month .content-wrapper .aside-content > ul > li .name {
|
|
1966
|
+
font-size: 14px;
|
|
1967
|
+
font-weight: 700;
|
|
1968
|
+
line-height: 18px;
|
|
1969
|
+
margin-bottom: 6px;
|
|
1970
|
+
}
|
|
1971
|
+
.m-cal-month .content-wrapper .aside-content > ul > li.selected {
|
|
1972
|
+
background: #e5e5e5;
|
|
1973
|
+
}
|
|
1974
|
+
.m-cal-month .content-wrapper .aside-content > ul > li:before {
|
|
1975
|
+
position: absolute;
|
|
1976
|
+
left: 0;
|
|
1977
|
+
content: '';
|
|
1978
|
+
width: 6px;
|
|
1979
|
+
height: 100%;
|
|
1980
|
+
display: inline-block;
|
|
1981
|
+
}
|
|
1982
|
+
.m-cal-month .content-wrapper .aside-content .footer {
|
|
1983
|
+
width: 100%;
|
|
1984
|
+
position: absolute;
|
|
1985
|
+
bottom: 0;
|
|
1986
|
+
border-top: 1px solid #e8e8e8;
|
|
1987
|
+
}
|
|
1988
|
+
.m-cal-month .content-wrapper .aside-content .footer .aside-toggle {
|
|
1989
|
+
border-radius: 0 4px 4px 0;
|
|
1990
|
+
margin: -1px 0 0 -1px;
|
|
1991
|
+
}
|
|
1992
|
+
.m-cal-month .content-wrapper .main-content,
|
|
1993
|
+
.m-cal-month .content-wrapper .aside-content {
|
|
1994
|
+
transition: 0.1s cubic-bezier(0.17, 0.17, 0, 1);
|
|
1995
|
+
}
|
|
1996
|
+
.m-cal-list .content-wrapper .main-content [data-dropdown=filter] {
|
|
1997
|
+
margin-right: 23px;
|
|
1998
|
+
}
|
|
1999
|
+
.m-cal-list .content-wrapper .main-content .calendar tr {
|
|
2000
|
+
height: 46px;
|
|
2001
|
+
border-bottom: 1px solid #e8e8e8;
|
|
2002
|
+
}
|
|
2003
|
+
.m-cal-list .content-wrapper .main-content .calendar tr .checkbox {
|
|
2004
|
+
cursor: pointer;
|
|
2005
|
+
}
|
|
2006
|
+
.m-cal-list .content-wrapper .main-content .calendar td:not(.check),
|
|
2007
|
+
.m-cal-list .content-wrapper .main-content .calendar th:not(.check) {
|
|
2008
|
+
overflow: hidden;
|
|
2009
|
+
word-wrap: normal;
|
|
2010
|
+
white-space: nowrap;
|
|
2011
|
+
text-overflow: ellipsis;
|
|
2012
|
+
}
|
|
2013
|
+
.m-cal-list .content-wrapper .main-content .calendar td.check,
|
|
2014
|
+
.m-cal-list .content-wrapper .main-content .calendar th.check,
|
|
2015
|
+
.m-cal-list .content-wrapper .main-content .calendar td.size,
|
|
2016
|
+
.m-cal-list .content-wrapper .main-content .calendar th.size,
|
|
2017
|
+
.m-cal-list .content-wrapper .main-content .calendar td.date,
|
|
2018
|
+
.m-cal-list .content-wrapper .main-content .calendar th.date,
|
|
2019
|
+
.m-cal-list .content-wrapper .main-content .calendar td.time,
|
|
2020
|
+
.m-cal-list .content-wrapper .main-content .calendar th.time,
|
|
2021
|
+
.m-cal-list .content-wrapper .main-content .calendar td[class$=Ico],
|
|
2022
|
+
.m-cal-list .content-wrapper .main-content .calendar th[class$=Ico] {
|
|
2023
|
+
box-sizing: border-box;
|
|
2024
|
+
}
|
|
2025
|
+
.m-cal-list .content-wrapper .main-content .calendar td.check,
|
|
2026
|
+
.m-cal-list .content-wrapper .main-content .calendar th.check {
|
|
2027
|
+
width: 52px;
|
|
2028
|
+
padding: 0 16px;
|
|
2029
|
+
}
|
|
2030
|
+
.m-cal-list .content-wrapper .main-content .calendar td.colorIco,
|
|
2031
|
+
.m-cal-list .content-wrapper .main-content .calendar th.colorIco {
|
|
2032
|
+
width: 38px;
|
|
2033
|
+
padding: 10px 16px 10px 10px;
|
|
2034
|
+
}
|
|
2035
|
+
.m-cal-list .content-wrapper .main-content .calendar td.colorIco > i,
|
|
2036
|
+
.m-cal-list .content-wrapper .main-content .calendar th.colorIco > i {
|
|
2037
|
+
width: 12px;
|
|
2038
|
+
height: 12px;
|
|
2039
|
+
display: inline-block;
|
|
2040
|
+
border-radius: 12px;
|
|
2041
|
+
vertical-align: middle;
|
|
2042
|
+
}
|
|
2043
|
+
.m-cal-list .content-wrapper .main-content .calendar td.typeIco,
|
|
2044
|
+
.m-cal-list .content-wrapper .main-content .calendar th.typeIco {
|
|
2045
|
+
width: 28px;
|
|
2046
|
+
}
|
|
2047
|
+
.m-cal-list .content-wrapper .main-content .calendar td.detailIco,
|
|
2048
|
+
.m-cal-list .content-wrapper .main-content .calendar th.detailIco {
|
|
2049
|
+
width: 80px;
|
|
2050
|
+
}
|
|
2051
|
+
.m-cal-list .content-wrapper .main-content .calendar td.size,
|
|
2052
|
+
.m-cal-list .content-wrapper .main-content .calendar th.size {
|
|
2053
|
+
width: 159px;
|
|
2054
|
+
padding-right: 29px;
|
|
2055
|
+
text-align: right;
|
|
2056
|
+
}
|
|
2057
|
+
.m-cal-list .content-wrapper .main-content .calendar td.time,
|
|
2058
|
+
.m-cal-list .content-wrapper .main-content .calendar th.time {
|
|
2059
|
+
width: 160px;
|
|
2060
|
+
}
|
|
2061
|
+
.m-cal-list .content-wrapper .main-content .calendar td.date {
|
|
2062
|
+
width: 192px;
|
|
2063
|
+
}
|
|
2064
|
+
.m-cal-list .content-wrapper .main-content .calendar th.date {
|
|
2065
|
+
width: 390px;
|
|
2066
|
+
}
|
|
2067
|
+
.m-cal-list .content-wrapper .main-content .calendar .main {
|
|
2068
|
+
top: 46px;
|
|
2069
|
+
bottom: 46px;
|
|
2070
|
+
}
|
|
2071
|
+
.m-cal-list .content-wrapper .main-content .pg {
|
|
2072
|
+
position: absolute;
|
|
2073
|
+
left: 0;
|
|
2074
|
+
right: 0;
|
|
2075
|
+
bottom: 0;
|
|
2076
|
+
padding-top: 7px;
|
|
2077
|
+
height: 39px;
|
|
2078
|
+
background: #fff;
|
|
2079
|
+
box-shadow: 0 -1px 2px 0 rgba(0, 0, 0, 0.02), 0 -1px 3px 0 rgba(0, 0, 0, 0.03), 0 -3px 3px 0 rgba(0, 0, 0, 0.06);
|
|
2080
|
+
}
|
|
2081
|
+
.m-cal-list .content-wrapper .main-content .pg .u-page {
|
|
2082
|
+
margin: 0;
|
|
2083
|
+
}
|
|
2084
|
+
.m-cal-bubble[color=Indigo] .color,
|
|
2085
|
+
[data-view-name="calendar.edit"][color=Indigo] .color {
|
|
2086
|
+
background: #56A2FF;
|
|
2087
|
+
}
|
|
2088
|
+
.m-cal-bubble[color=Indigo] .time-range,
|
|
2089
|
+
[data-view-name="calendar.edit"][color=Indigo] .time-range {
|
|
2090
|
+
background: rgba(86, 162, 255, 0.5);
|
|
2091
|
+
}
|
|
2092
|
+
.calMain[color=Indigo].calMain_MONTH .sidebar:before,
|
|
2093
|
+
.calMain[color=Indigo].calMain_WEEK .sidebar:before,
|
|
2094
|
+
.calMain[color=Indigo].calMain_DAY .sidebar:before,
|
|
2095
|
+
.calMain[color=Indigo].calMain_MONTH .event_selection,
|
|
2096
|
+
.calMain[color=Indigo].calMain_WEEK .event_selection,
|
|
2097
|
+
.calMain[color=Indigo].calMain_DAY .event_selection,
|
|
2098
|
+
.calMain[color=Indigo].calMain_MONTH .event_selection:hover,
|
|
2099
|
+
.calMain[color=Indigo].calMain_WEEK .event_selection:hover,
|
|
2100
|
+
.calMain[color=Indigo].calMain_DAY .event_selection:hover {
|
|
2101
|
+
background-color: rgba(86, 162, 255, 0.5);
|
|
2102
|
+
}
|
|
2103
|
+
.calMain[color=Indigo].calMain_MONTH .event_selection .iconfont,
|
|
2104
|
+
.calMain[color=Indigo].calMain_WEEK .event_selection .iconfont,
|
|
2105
|
+
.calMain[color=Indigo].calMain_DAY .event_selection .iconfont {
|
|
2106
|
+
color: #56A2FF;
|
|
2107
|
+
}
|
|
2108
|
+
.calMain[color=Indigo].calMain_MONTH .event_selection:before,
|
|
2109
|
+
.calMain[color=Indigo].calMain_WEEK .event_selection:before,
|
|
2110
|
+
.calMain[color=Indigo].calMain_DAY .event_selection:before {
|
|
2111
|
+
background: #56A2FF;
|
|
2112
|
+
}
|
|
2113
|
+
.calMain[color=Indigo].calMain_MONTH .new_event_on:not([data-uid=new]):before,
|
|
2114
|
+
.calMain[color=Indigo].calMain_WEEK .new_event_on:not([data-uid=new]):before,
|
|
2115
|
+
.calMain[color=Indigo].calMain_DAY .new_event_on:not([data-uid=new]):before {
|
|
2116
|
+
background: rgba(255, 255, 255, 0.3);
|
|
2117
|
+
}
|
|
2118
|
+
.calMain[color=Indigo].calMain_MONTH .new_event_on,
|
|
2119
|
+
.calMain[color=Indigo].calMain_WEEK .new_event_on,
|
|
2120
|
+
.calMain[color=Indigo].calMain_DAY .new_event_on,
|
|
2121
|
+
.calMain[color=Indigo].calMain_MONTH .new_event_on:hover,
|
|
2122
|
+
.calMain[color=Indigo].calMain_WEEK .new_event_on:hover,
|
|
2123
|
+
.calMain[color=Indigo].calMain_DAY .new_event_on:hover,
|
|
2124
|
+
.calMain[color=Indigo].calMain_MONTH .new_event_on div,
|
|
2125
|
+
.calMain[color=Indigo].calMain_WEEK .new_event_on div,
|
|
2126
|
+
.calMain[color=Indigo].calMain_DAY .new_event_on div {
|
|
2127
|
+
border-color: #56A2FF;
|
|
2128
|
+
background-color: #56A2FF !important;
|
|
2129
|
+
box-shadow: none;
|
|
2130
|
+
}
|
|
2131
|
+
.calMain[color=Indigo].calMain_LIST .colorIco > i {
|
|
2132
|
+
background-color: rgba(86, 162, 255, 0.5);
|
|
2133
|
+
}
|
|
2134
|
+
.m-cal-bubble[color="Grass Green"] .color,
|
|
2135
|
+
[data-view-name="calendar.edit"][color="Grass Green"] .color {
|
|
2136
|
+
background: #25C541;
|
|
2137
|
+
}
|
|
2138
|
+
.m-cal-bubble[color="Grass Green"] .time-range,
|
|
2139
|
+
[data-view-name="calendar.edit"][color="Grass Green"] .time-range {
|
|
2140
|
+
background: rgba(37, 197, 65, 0.5);
|
|
2141
|
+
}
|
|
2142
|
+
.calMain[color="Grass Green"].calMain_MONTH .sidebar:before,
|
|
2143
|
+
.calMain[color="Grass Green"].calMain_WEEK .sidebar:before,
|
|
2144
|
+
.calMain[color="Grass Green"].calMain_DAY .sidebar:before,
|
|
2145
|
+
.calMain[color="Grass Green"].calMain_MONTH .event_selection,
|
|
2146
|
+
.calMain[color="Grass Green"].calMain_WEEK .event_selection,
|
|
2147
|
+
.calMain[color="Grass Green"].calMain_DAY .event_selection,
|
|
2148
|
+
.calMain[color="Grass Green"].calMain_MONTH .event_selection:hover,
|
|
2149
|
+
.calMain[color="Grass Green"].calMain_WEEK .event_selection:hover,
|
|
2150
|
+
.calMain[color="Grass Green"].calMain_DAY .event_selection:hover {
|
|
2151
|
+
background-color: rgba(37, 197, 65, 0.5);
|
|
2152
|
+
}
|
|
2153
|
+
.calMain[color="Grass Green"].calMain_MONTH .event_selection .iconfont,
|
|
2154
|
+
.calMain[color="Grass Green"].calMain_WEEK .event_selection .iconfont,
|
|
2155
|
+
.calMain[color="Grass Green"].calMain_DAY .event_selection .iconfont {
|
|
2156
|
+
color: #25C541;
|
|
2157
|
+
}
|
|
2158
|
+
.calMain[color="Grass Green"].calMain_MONTH .event_selection:before,
|
|
2159
|
+
.calMain[color="Grass Green"].calMain_WEEK .event_selection:before,
|
|
2160
|
+
.calMain[color="Grass Green"].calMain_DAY .event_selection:before {
|
|
2161
|
+
background: #25C541;
|
|
2162
|
+
}
|
|
2163
|
+
.calMain[color="Grass Green"].calMain_MONTH .new_event_on:not([data-uid=new]):before,
|
|
2164
|
+
.calMain[color="Grass Green"].calMain_WEEK .new_event_on:not([data-uid=new]):before,
|
|
2165
|
+
.calMain[color="Grass Green"].calMain_DAY .new_event_on:not([data-uid=new]):before {
|
|
2166
|
+
background: rgba(255, 255, 255, 0.3);
|
|
2167
|
+
}
|
|
2168
|
+
.calMain[color="Grass Green"].calMain_MONTH .new_event_on,
|
|
2169
|
+
.calMain[color="Grass Green"].calMain_WEEK .new_event_on,
|
|
2170
|
+
.calMain[color="Grass Green"].calMain_DAY .new_event_on,
|
|
2171
|
+
.calMain[color="Grass Green"].calMain_MONTH .new_event_on:hover,
|
|
2172
|
+
.calMain[color="Grass Green"].calMain_WEEK .new_event_on:hover,
|
|
2173
|
+
.calMain[color="Grass Green"].calMain_DAY .new_event_on:hover,
|
|
2174
|
+
.calMain[color="Grass Green"].calMain_MONTH .new_event_on div,
|
|
2175
|
+
.calMain[color="Grass Green"].calMain_WEEK .new_event_on div,
|
|
2176
|
+
.calMain[color="Grass Green"].calMain_DAY .new_event_on div {
|
|
2177
|
+
border-color: #25C541;
|
|
2178
|
+
background-color: #25C541 !important;
|
|
2179
|
+
box-shadow: none;
|
|
2180
|
+
}
|
|
2181
|
+
.calMain[color="Grass Green"].calMain_LIST .colorIco > i {
|
|
2182
|
+
background-color: rgba(37, 197, 65, 0.5);
|
|
2183
|
+
}
|
|
2184
|
+
.m-cal-bubble[color=Orange] .color,
|
|
2185
|
+
[data-view-name="calendar.edit"][color=Orange] .color {
|
|
2186
|
+
background: #EEA526;
|
|
2187
|
+
}
|
|
2188
|
+
.m-cal-bubble[color=Orange] .time-range,
|
|
2189
|
+
[data-view-name="calendar.edit"][color=Orange] .time-range {
|
|
2190
|
+
background: rgba(238, 165, 38, 0.5);
|
|
2191
|
+
}
|
|
2192
|
+
.calMain[color=Orange].calMain_MONTH .sidebar:before,
|
|
2193
|
+
.calMain[color=Orange].calMain_WEEK .sidebar:before,
|
|
2194
|
+
.calMain[color=Orange].calMain_DAY .sidebar:before,
|
|
2195
|
+
.calMain[color=Orange].calMain_MONTH .event_selection,
|
|
2196
|
+
.calMain[color=Orange].calMain_WEEK .event_selection,
|
|
2197
|
+
.calMain[color=Orange].calMain_DAY .event_selection,
|
|
2198
|
+
.calMain[color=Orange].calMain_MONTH .event_selection:hover,
|
|
2199
|
+
.calMain[color=Orange].calMain_WEEK .event_selection:hover,
|
|
2200
|
+
.calMain[color=Orange].calMain_DAY .event_selection:hover {
|
|
2201
|
+
background-color: rgba(238, 165, 38, 0.5);
|
|
2202
|
+
}
|
|
2203
|
+
.calMain[color=Orange].calMain_MONTH .event_selection .iconfont,
|
|
2204
|
+
.calMain[color=Orange].calMain_WEEK .event_selection .iconfont,
|
|
2205
|
+
.calMain[color=Orange].calMain_DAY .event_selection .iconfont {
|
|
2206
|
+
color: #EEA526;
|
|
2207
|
+
}
|
|
2208
|
+
.calMain[color=Orange].calMain_MONTH .event_selection:before,
|
|
2209
|
+
.calMain[color=Orange].calMain_WEEK .event_selection:before,
|
|
2210
|
+
.calMain[color=Orange].calMain_DAY .event_selection:before {
|
|
2211
|
+
background: #EEA526;
|
|
2212
|
+
}
|
|
2213
|
+
.calMain[color=Orange].calMain_MONTH .new_event_on:not([data-uid=new]):before,
|
|
2214
|
+
.calMain[color=Orange].calMain_WEEK .new_event_on:not([data-uid=new]):before,
|
|
2215
|
+
.calMain[color=Orange].calMain_DAY .new_event_on:not([data-uid=new]):before {
|
|
2216
|
+
background: rgba(255, 255, 255, 0.3);
|
|
2217
|
+
}
|
|
2218
|
+
.calMain[color=Orange].calMain_MONTH .new_event_on,
|
|
2219
|
+
.calMain[color=Orange].calMain_WEEK .new_event_on,
|
|
2220
|
+
.calMain[color=Orange].calMain_DAY .new_event_on,
|
|
2221
|
+
.calMain[color=Orange].calMain_MONTH .new_event_on:hover,
|
|
2222
|
+
.calMain[color=Orange].calMain_WEEK .new_event_on:hover,
|
|
2223
|
+
.calMain[color=Orange].calMain_DAY .new_event_on:hover,
|
|
2224
|
+
.calMain[color=Orange].calMain_MONTH .new_event_on div,
|
|
2225
|
+
.calMain[color=Orange].calMain_WEEK .new_event_on div,
|
|
2226
|
+
.calMain[color=Orange].calMain_DAY .new_event_on div {
|
|
2227
|
+
border-color: #EEA526;
|
|
2228
|
+
background-color: #EEA526 !important;
|
|
2229
|
+
box-shadow: none;
|
|
2230
|
+
}
|
|
2231
|
+
.calMain[color=Orange].calMain_LIST .colorIco > i {
|
|
2232
|
+
background-color: rgba(238, 165, 38, 0.5);
|
|
2233
|
+
}
|
|
2234
|
+
.m-cal-bubble[color=Grey] .color,
|
|
2235
|
+
[data-view-name="calendar.edit"][color=Grey] .color {
|
|
2236
|
+
background: #909090;
|
|
2237
|
+
}
|
|
2238
|
+
.m-cal-bubble[color=Grey] .time-range,
|
|
2239
|
+
[data-view-name="calendar.edit"][color=Grey] .time-range {
|
|
2240
|
+
background: rgba(144, 144, 144, 0.5);
|
|
2241
|
+
}
|
|
2242
|
+
.calMain[color=Grey].calMain_MONTH .sidebar:before,
|
|
2243
|
+
.calMain[color=Grey].calMain_WEEK .sidebar:before,
|
|
2244
|
+
.calMain[color=Grey].calMain_DAY .sidebar:before,
|
|
2245
|
+
.calMain[color=Grey].calMain_MONTH .event_selection,
|
|
2246
|
+
.calMain[color=Grey].calMain_WEEK .event_selection,
|
|
2247
|
+
.calMain[color=Grey].calMain_DAY .event_selection,
|
|
2248
|
+
.calMain[color=Grey].calMain_MONTH .event_selection:hover,
|
|
2249
|
+
.calMain[color=Grey].calMain_WEEK .event_selection:hover,
|
|
2250
|
+
.calMain[color=Grey].calMain_DAY .event_selection:hover {
|
|
2251
|
+
background-color: rgba(144, 144, 144, 0.5);
|
|
2252
|
+
}
|
|
2253
|
+
.calMain[color=Grey].calMain_MONTH .event_selection .iconfont,
|
|
2254
|
+
.calMain[color=Grey].calMain_WEEK .event_selection .iconfont,
|
|
2255
|
+
.calMain[color=Grey].calMain_DAY .event_selection .iconfont {
|
|
2256
|
+
color: #909090;
|
|
2257
|
+
}
|
|
2258
|
+
.calMain[color=Grey].calMain_MONTH .event_selection:before,
|
|
2259
|
+
.calMain[color=Grey].calMain_WEEK .event_selection:before,
|
|
2260
|
+
.calMain[color=Grey].calMain_DAY .event_selection:before {
|
|
2261
|
+
background: #909090;
|
|
2262
|
+
}
|
|
2263
|
+
.calMain[color=Grey].calMain_MONTH .new_event_on:not([data-uid=new]):before,
|
|
2264
|
+
.calMain[color=Grey].calMain_WEEK .new_event_on:not([data-uid=new]):before,
|
|
2265
|
+
.calMain[color=Grey].calMain_DAY .new_event_on:not([data-uid=new]):before {
|
|
2266
|
+
background: rgba(255, 255, 255, 0.3);
|
|
2267
|
+
}
|
|
2268
|
+
.calMain[color=Grey].calMain_MONTH .new_event_on,
|
|
2269
|
+
.calMain[color=Grey].calMain_WEEK .new_event_on,
|
|
2270
|
+
.calMain[color=Grey].calMain_DAY .new_event_on,
|
|
2271
|
+
.calMain[color=Grey].calMain_MONTH .new_event_on:hover,
|
|
2272
|
+
.calMain[color=Grey].calMain_WEEK .new_event_on:hover,
|
|
2273
|
+
.calMain[color=Grey].calMain_DAY .new_event_on:hover,
|
|
2274
|
+
.calMain[color=Grey].calMain_MONTH .new_event_on div,
|
|
2275
|
+
.calMain[color=Grey].calMain_WEEK .new_event_on div,
|
|
2276
|
+
.calMain[color=Grey].calMain_DAY .new_event_on div {
|
|
2277
|
+
border-color: #909090;
|
|
2278
|
+
background-color: #909090 !important;
|
|
2279
|
+
box-shadow: none;
|
|
2280
|
+
}
|
|
2281
|
+
.calMain[color=Grey].calMain_LIST .colorIco > i {
|
|
2282
|
+
background-color: rgba(144, 144, 144, 0.5);
|
|
2283
|
+
}
|
|
2284
|
+
.m-cal-bubble[color="Light Yellow"] .color,
|
|
2285
|
+
[data-view-name="calendar.edit"][color="Light Yellow"] .color {
|
|
2286
|
+
background: #DFCB05;
|
|
2287
|
+
}
|
|
2288
|
+
.m-cal-bubble[color="Light Yellow"] .time-range,
|
|
2289
|
+
[data-view-name="calendar.edit"][color="Light Yellow"] .time-range {
|
|
2290
|
+
background: rgba(223, 203, 5, 0.5);
|
|
2291
|
+
}
|
|
2292
|
+
.calMain[color="Light Yellow"].calMain_MONTH .sidebar:before,
|
|
2293
|
+
.calMain[color="Light Yellow"].calMain_WEEK .sidebar:before,
|
|
2294
|
+
.calMain[color="Light Yellow"].calMain_DAY .sidebar:before,
|
|
2295
|
+
.calMain[color="Light Yellow"].calMain_MONTH .event_selection,
|
|
2296
|
+
.calMain[color="Light Yellow"].calMain_WEEK .event_selection,
|
|
2297
|
+
.calMain[color="Light Yellow"].calMain_DAY .event_selection,
|
|
2298
|
+
.calMain[color="Light Yellow"].calMain_MONTH .event_selection:hover,
|
|
2299
|
+
.calMain[color="Light Yellow"].calMain_WEEK .event_selection:hover,
|
|
2300
|
+
.calMain[color="Light Yellow"].calMain_DAY .event_selection:hover {
|
|
2301
|
+
background-color: rgba(223, 203, 5, 0.5);
|
|
2302
|
+
}
|
|
2303
|
+
.calMain[color="Light Yellow"].calMain_MONTH .event_selection .iconfont,
|
|
2304
|
+
.calMain[color="Light Yellow"].calMain_WEEK .event_selection .iconfont,
|
|
2305
|
+
.calMain[color="Light Yellow"].calMain_DAY .event_selection .iconfont {
|
|
2306
|
+
color: #DFCB05;
|
|
2307
|
+
}
|
|
2308
|
+
.calMain[color="Light Yellow"].calMain_MONTH .event_selection:before,
|
|
2309
|
+
.calMain[color="Light Yellow"].calMain_WEEK .event_selection:before,
|
|
2310
|
+
.calMain[color="Light Yellow"].calMain_DAY .event_selection:before {
|
|
2311
|
+
background: #DFCB05;
|
|
2312
|
+
}
|
|
2313
|
+
.calMain[color="Light Yellow"].calMain_MONTH .new_event_on:not([data-uid=new]):before,
|
|
2314
|
+
.calMain[color="Light Yellow"].calMain_WEEK .new_event_on:not([data-uid=new]):before,
|
|
2315
|
+
.calMain[color="Light Yellow"].calMain_DAY .new_event_on:not([data-uid=new]):before {
|
|
2316
|
+
background: rgba(255, 255, 255, 0.3);
|
|
2317
|
+
}
|
|
2318
|
+
.calMain[color="Light Yellow"].calMain_MONTH .new_event_on,
|
|
2319
|
+
.calMain[color="Light Yellow"].calMain_WEEK .new_event_on,
|
|
2320
|
+
.calMain[color="Light Yellow"].calMain_DAY .new_event_on,
|
|
2321
|
+
.calMain[color="Light Yellow"].calMain_MONTH .new_event_on:hover,
|
|
2322
|
+
.calMain[color="Light Yellow"].calMain_WEEK .new_event_on:hover,
|
|
2323
|
+
.calMain[color="Light Yellow"].calMain_DAY .new_event_on:hover,
|
|
2324
|
+
.calMain[color="Light Yellow"].calMain_MONTH .new_event_on div,
|
|
2325
|
+
.calMain[color="Light Yellow"].calMain_WEEK .new_event_on div,
|
|
2326
|
+
.calMain[color="Light Yellow"].calMain_DAY .new_event_on div {
|
|
2327
|
+
border-color: #DFCB05;
|
|
2328
|
+
background-color: #DFCB05 !important;
|
|
2329
|
+
box-shadow: none;
|
|
2330
|
+
}
|
|
2331
|
+
.calMain[color="Light Yellow"].calMain_LIST .colorIco > i {
|
|
2332
|
+
background-color: rgba(223, 203, 5, 0.5);
|
|
2333
|
+
}
|
|
2334
|
+
.m-cal-bubble[color=Cyan] .color,
|
|
2335
|
+
[data-view-name="calendar.edit"][color=Cyan] .color {
|
|
2336
|
+
background: #04CDB6;
|
|
2337
|
+
}
|
|
2338
|
+
.m-cal-bubble[color=Cyan] .time-range,
|
|
2339
|
+
[data-view-name="calendar.edit"][color=Cyan] .time-range {
|
|
2340
|
+
background: rgba(4, 205, 182, 0.5);
|
|
2341
|
+
}
|
|
2342
|
+
.calMain[color=Cyan].calMain_MONTH .sidebar:before,
|
|
2343
|
+
.calMain[color=Cyan].calMain_WEEK .sidebar:before,
|
|
2344
|
+
.calMain[color=Cyan].calMain_DAY .sidebar:before,
|
|
2345
|
+
.calMain[color=Cyan].calMain_MONTH .event_selection,
|
|
2346
|
+
.calMain[color=Cyan].calMain_WEEK .event_selection,
|
|
2347
|
+
.calMain[color=Cyan].calMain_DAY .event_selection,
|
|
2348
|
+
.calMain[color=Cyan].calMain_MONTH .event_selection:hover,
|
|
2349
|
+
.calMain[color=Cyan].calMain_WEEK .event_selection:hover,
|
|
2350
|
+
.calMain[color=Cyan].calMain_DAY .event_selection:hover {
|
|
2351
|
+
background-color: rgba(4, 205, 182, 0.5);
|
|
2352
|
+
}
|
|
2353
|
+
.calMain[color=Cyan].calMain_MONTH .event_selection .iconfont,
|
|
2354
|
+
.calMain[color=Cyan].calMain_WEEK .event_selection .iconfont,
|
|
2355
|
+
.calMain[color=Cyan].calMain_DAY .event_selection .iconfont {
|
|
2356
|
+
color: #04CDB6;
|
|
2357
|
+
}
|
|
2358
|
+
.calMain[color=Cyan].calMain_MONTH .event_selection:before,
|
|
2359
|
+
.calMain[color=Cyan].calMain_WEEK .event_selection:before,
|
|
2360
|
+
.calMain[color=Cyan].calMain_DAY .event_selection:before {
|
|
2361
|
+
background: #04CDB6;
|
|
2362
|
+
}
|
|
2363
|
+
.calMain[color=Cyan].calMain_MONTH .new_event_on:not([data-uid=new]):before,
|
|
2364
|
+
.calMain[color=Cyan].calMain_WEEK .new_event_on:not([data-uid=new]):before,
|
|
2365
|
+
.calMain[color=Cyan].calMain_DAY .new_event_on:not([data-uid=new]):before {
|
|
2366
|
+
background: rgba(255, 255, 255, 0.3);
|
|
2367
|
+
}
|
|
2368
|
+
.calMain[color=Cyan].calMain_MONTH .new_event_on,
|
|
2369
|
+
.calMain[color=Cyan].calMain_WEEK .new_event_on,
|
|
2370
|
+
.calMain[color=Cyan].calMain_DAY .new_event_on,
|
|
2371
|
+
.calMain[color=Cyan].calMain_MONTH .new_event_on:hover,
|
|
2372
|
+
.calMain[color=Cyan].calMain_WEEK .new_event_on:hover,
|
|
2373
|
+
.calMain[color=Cyan].calMain_DAY .new_event_on:hover,
|
|
2374
|
+
.calMain[color=Cyan].calMain_MONTH .new_event_on div,
|
|
2375
|
+
.calMain[color=Cyan].calMain_WEEK .new_event_on div,
|
|
2376
|
+
.calMain[color=Cyan].calMain_DAY .new_event_on div {
|
|
2377
|
+
border-color: #04CDB6;
|
|
2378
|
+
background-color: #04CDB6 !important;
|
|
2379
|
+
box-shadow: none;
|
|
2380
|
+
}
|
|
2381
|
+
.calMain[color=Cyan].calMain_LIST .colorIco > i {
|
|
2382
|
+
background-color: rgba(4, 205, 182, 0.5);
|
|
2383
|
+
}
|
|
2384
|
+
.m-cal-bubble[color='Peach'] .color,
|
|
2385
|
+
[data-view-name="calendar.edit"][color='Peach'] .color {
|
|
2386
|
+
background: #EF7BAD;
|
|
2387
|
+
}
|
|
2388
|
+
.m-cal-bubble[color='Peach'] .time-range,
|
|
2389
|
+
[data-view-name="calendar.edit"][color='Peach'] .time-range {
|
|
2390
|
+
background: rgba(239, 123, 173, 0.5);
|
|
2391
|
+
}
|
|
2392
|
+
.calMain[color='Peach'].calMain_MONTH .sidebar:before,
|
|
2393
|
+
.calMain[color='Peach'].calMain_WEEK .sidebar:before,
|
|
2394
|
+
.calMain[color='Peach'].calMain_DAY .sidebar:before,
|
|
2395
|
+
.calMain[color='Peach'].calMain_MONTH .event_selection,
|
|
2396
|
+
.calMain[color='Peach'].calMain_WEEK .event_selection,
|
|
2397
|
+
.calMain[color='Peach'].calMain_DAY .event_selection,
|
|
2398
|
+
.calMain[color='Peach'].calMain_MONTH .event_selection:hover,
|
|
2399
|
+
.calMain[color='Peach'].calMain_WEEK .event_selection:hover,
|
|
2400
|
+
.calMain[color='Peach'].calMain_DAY .event_selection:hover {
|
|
2401
|
+
background-color: rgba(239, 123, 173, 0.5);
|
|
2402
|
+
}
|
|
2403
|
+
.calMain[color='Peach'].calMain_MONTH .event_selection .iconfont,
|
|
2404
|
+
.calMain[color='Peach'].calMain_WEEK .event_selection .iconfont,
|
|
2405
|
+
.calMain[color='Peach'].calMain_DAY .event_selection .iconfont {
|
|
2406
|
+
color: #EF7BAD;
|
|
2407
|
+
}
|
|
2408
|
+
.calMain[color='Peach'].calMain_MONTH .event_selection:before,
|
|
2409
|
+
.calMain[color='Peach'].calMain_WEEK .event_selection:before,
|
|
2410
|
+
.calMain[color='Peach'].calMain_DAY .event_selection:before {
|
|
2411
|
+
background: #EF7BAD;
|
|
2412
|
+
}
|
|
2413
|
+
.calMain[color='Peach'].calMain_MONTH .new_event_on:not([data-uid=new]):before,
|
|
2414
|
+
.calMain[color='Peach'].calMain_WEEK .new_event_on:not([data-uid=new]):before,
|
|
2415
|
+
.calMain[color='Peach'].calMain_DAY .new_event_on:not([data-uid=new]):before {
|
|
2416
|
+
background: rgba(255, 255, 255, 0.3);
|
|
2417
|
+
}
|
|
2418
|
+
.calMain[color='Peach'].calMain_MONTH .new_event_on,
|
|
2419
|
+
.calMain[color='Peach'].calMain_WEEK .new_event_on,
|
|
2420
|
+
.calMain[color='Peach'].calMain_DAY .new_event_on,
|
|
2421
|
+
.calMain[color='Peach'].calMain_MONTH .new_event_on:hover,
|
|
2422
|
+
.calMain[color='Peach'].calMain_WEEK .new_event_on:hover,
|
|
2423
|
+
.calMain[color='Peach'].calMain_DAY .new_event_on:hover,
|
|
2424
|
+
.calMain[color='Peach'].calMain_MONTH .new_event_on div,
|
|
2425
|
+
.calMain[color='Peach'].calMain_WEEK .new_event_on div,
|
|
2426
|
+
.calMain[color='Peach'].calMain_DAY .new_event_on div {
|
|
2427
|
+
border-color: #EF7BAD;
|
|
2428
|
+
background-color: #EF7BAD !important;
|
|
2429
|
+
box-shadow: none;
|
|
2430
|
+
}
|
|
2431
|
+
.calMain[color='Peach'].calMain_LIST .colorIco > i {
|
|
2432
|
+
background-color: rgba(239, 123, 173, 0.5);
|
|
2433
|
+
}
|
|
2434
|
+
.m-cal-bubble[color="Light Brown"] .color,
|
|
2435
|
+
[data-view-name="calendar.edit"][color="Light Brown"] .color {
|
|
2436
|
+
background: #d5904c;
|
|
2437
|
+
}
|
|
2438
|
+
.m-cal-bubble[color="Light Brown"] .time-range,
|
|
2439
|
+
[data-view-name="calendar.edit"][color="Light Brown"] .time-range {
|
|
2440
|
+
background: rgba(213, 144, 76, 0.5);
|
|
2441
|
+
}
|
|
2442
|
+
.calMain[color="Light Brown"].calMain_MONTH .sidebar:before,
|
|
2443
|
+
.calMain[color="Light Brown"].calMain_WEEK .sidebar:before,
|
|
2444
|
+
.calMain[color="Light Brown"].calMain_DAY .sidebar:before,
|
|
2445
|
+
.calMain[color="Light Brown"].calMain_MONTH .event_selection,
|
|
2446
|
+
.calMain[color="Light Brown"].calMain_WEEK .event_selection,
|
|
2447
|
+
.calMain[color="Light Brown"].calMain_DAY .event_selection,
|
|
2448
|
+
.calMain[color="Light Brown"].calMain_MONTH .event_selection:hover,
|
|
2449
|
+
.calMain[color="Light Brown"].calMain_WEEK .event_selection:hover,
|
|
2450
|
+
.calMain[color="Light Brown"].calMain_DAY .event_selection:hover {
|
|
2451
|
+
background-color: rgba(213, 144, 76, 0.5);
|
|
2452
|
+
}
|
|
2453
|
+
.calMain[color="Light Brown"].calMain_MONTH .event_selection .iconfont,
|
|
2454
|
+
.calMain[color="Light Brown"].calMain_WEEK .event_selection .iconfont,
|
|
2455
|
+
.calMain[color="Light Brown"].calMain_DAY .event_selection .iconfont {
|
|
2456
|
+
color: #d5904c;
|
|
2457
|
+
}
|
|
2458
|
+
.calMain[color="Light Brown"].calMain_MONTH .event_selection:before,
|
|
2459
|
+
.calMain[color="Light Brown"].calMain_WEEK .event_selection:before,
|
|
2460
|
+
.calMain[color="Light Brown"].calMain_DAY .event_selection:before {
|
|
2461
|
+
background: #d5904c;
|
|
2462
|
+
}
|
|
2463
|
+
.calMain[color="Light Brown"].calMain_MONTH .new_event_on:not([data-uid=new]):before,
|
|
2464
|
+
.calMain[color="Light Brown"].calMain_WEEK .new_event_on:not([data-uid=new]):before,
|
|
2465
|
+
.calMain[color="Light Brown"].calMain_DAY .new_event_on:not([data-uid=new]):before {
|
|
2466
|
+
background: rgba(255, 255, 255, 0.3);
|
|
2467
|
+
}
|
|
2468
|
+
.calMain[color="Light Brown"].calMain_MONTH .new_event_on,
|
|
2469
|
+
.calMain[color="Light Brown"].calMain_WEEK .new_event_on,
|
|
2470
|
+
.calMain[color="Light Brown"].calMain_DAY .new_event_on,
|
|
2471
|
+
.calMain[color="Light Brown"].calMain_MONTH .new_event_on:hover,
|
|
2472
|
+
.calMain[color="Light Brown"].calMain_WEEK .new_event_on:hover,
|
|
2473
|
+
.calMain[color="Light Brown"].calMain_DAY .new_event_on:hover,
|
|
2474
|
+
.calMain[color="Light Brown"].calMain_MONTH .new_event_on div,
|
|
2475
|
+
.calMain[color="Light Brown"].calMain_WEEK .new_event_on div,
|
|
2476
|
+
.calMain[color="Light Brown"].calMain_DAY .new_event_on div {
|
|
2477
|
+
border-color: #d5904c;
|
|
2478
|
+
background-color: #d5904c !important;
|
|
2479
|
+
box-shadow: none;
|
|
2480
|
+
}
|
|
2481
|
+
.calMain[color="Light Brown"].calMain_LIST .colorIco > i {
|
|
2482
|
+
background-color: rgba(213, 144, 76, 0.5);
|
|
2483
|
+
}
|
|
2484
|
+
.m-cal-bubble[color=Red] .color,
|
|
2485
|
+
[data-view-name="calendar.edit"][color=Red] .color {
|
|
2486
|
+
background: #F96B6B;
|
|
2487
|
+
}
|
|
2488
|
+
.m-cal-bubble[color=Red] .time-range,
|
|
2489
|
+
[data-view-name="calendar.edit"][color=Red] .time-range {
|
|
2490
|
+
background: rgba(249, 107, 107, 0.5);
|
|
2491
|
+
}
|
|
2492
|
+
.calMain[color=Red].calMain_MONTH .sidebar:before,
|
|
2493
|
+
.calMain[color=Red].calMain_WEEK .sidebar:before,
|
|
2494
|
+
.calMain[color=Red].calMain_DAY .sidebar:before,
|
|
2495
|
+
.calMain[color=Red].calMain_MONTH .event_selection,
|
|
2496
|
+
.calMain[color=Red].calMain_WEEK .event_selection,
|
|
2497
|
+
.calMain[color=Red].calMain_DAY .event_selection,
|
|
2498
|
+
.calMain[color=Red].calMain_MONTH .event_selection:hover,
|
|
2499
|
+
.calMain[color=Red].calMain_WEEK .event_selection:hover,
|
|
2500
|
+
.calMain[color=Red].calMain_DAY .event_selection:hover {
|
|
2501
|
+
background-color: rgba(249, 107, 107, 0.5);
|
|
2502
|
+
}
|
|
2503
|
+
.calMain[color=Red].calMain_MONTH .event_selection .iconfont,
|
|
2504
|
+
.calMain[color=Red].calMain_WEEK .event_selection .iconfont,
|
|
2505
|
+
.calMain[color=Red].calMain_DAY .event_selection .iconfont {
|
|
2506
|
+
color: #F96B6B;
|
|
2507
|
+
}
|
|
2508
|
+
.calMain[color=Red].calMain_MONTH .event_selection:before,
|
|
2509
|
+
.calMain[color=Red].calMain_WEEK .event_selection:before,
|
|
2510
|
+
.calMain[color=Red].calMain_DAY .event_selection:before {
|
|
2511
|
+
background: #F96B6B;
|
|
2512
|
+
}
|
|
2513
|
+
.calMain[color=Red].calMain_MONTH .new_event_on:not([data-uid=new]):before,
|
|
2514
|
+
.calMain[color=Red].calMain_WEEK .new_event_on:not([data-uid=new]):before,
|
|
2515
|
+
.calMain[color=Red].calMain_DAY .new_event_on:not([data-uid=new]):before {
|
|
2516
|
+
background: rgba(255, 255, 255, 0.3);
|
|
2517
|
+
}
|
|
2518
|
+
.calMain[color=Red].calMain_MONTH .new_event_on,
|
|
2519
|
+
.calMain[color=Red].calMain_WEEK .new_event_on,
|
|
2520
|
+
.calMain[color=Red].calMain_DAY .new_event_on,
|
|
2521
|
+
.calMain[color=Red].calMain_MONTH .new_event_on:hover,
|
|
2522
|
+
.calMain[color=Red].calMain_WEEK .new_event_on:hover,
|
|
2523
|
+
.calMain[color=Red].calMain_DAY .new_event_on:hover,
|
|
2524
|
+
.calMain[color=Red].calMain_MONTH .new_event_on div,
|
|
2525
|
+
.calMain[color=Red].calMain_WEEK .new_event_on div,
|
|
2526
|
+
.calMain[color=Red].calMain_DAY .new_event_on div {
|
|
2527
|
+
border-color: #F96B6B;
|
|
2528
|
+
background-color: #F96B6B !important;
|
|
2529
|
+
box-shadow: none;
|
|
2530
|
+
}
|
|
2531
|
+
.calMain[color=Red].calMain_LIST .colorIco > i {
|
|
2532
|
+
background-color: rgba(249, 107, 107, 0.5);
|
|
2533
|
+
}
|
|
2534
|
+
.m-cal-bubble[color=Purple] .color,
|
|
2535
|
+
[data-view-name="calendar.edit"][color=Purple] .color {
|
|
2536
|
+
background: #C36FD0;
|
|
2537
|
+
}
|
|
2538
|
+
.m-cal-bubble[color=Purple] .time-range,
|
|
2539
|
+
[data-view-name="calendar.edit"][color=Purple] .time-range {
|
|
2540
|
+
background: rgba(195, 111, 208, 0.5);
|
|
2541
|
+
}
|
|
2542
|
+
.calMain[color=Purple].calMain_MONTH .sidebar:before,
|
|
2543
|
+
.calMain[color=Purple].calMain_WEEK .sidebar:before,
|
|
2544
|
+
.calMain[color=Purple].calMain_DAY .sidebar:before,
|
|
2545
|
+
.calMain[color=Purple].calMain_MONTH .event_selection,
|
|
2546
|
+
.calMain[color=Purple].calMain_WEEK .event_selection,
|
|
2547
|
+
.calMain[color=Purple].calMain_DAY .event_selection,
|
|
2548
|
+
.calMain[color=Purple].calMain_MONTH .event_selection:hover,
|
|
2549
|
+
.calMain[color=Purple].calMain_WEEK .event_selection:hover,
|
|
2550
|
+
.calMain[color=Purple].calMain_DAY .event_selection:hover {
|
|
2551
|
+
background-color: rgba(195, 111, 208, 0.5);
|
|
2552
|
+
}
|
|
2553
|
+
.calMain[color=Purple].calMain_MONTH .event_selection .iconfont,
|
|
2554
|
+
.calMain[color=Purple].calMain_WEEK .event_selection .iconfont,
|
|
2555
|
+
.calMain[color=Purple].calMain_DAY .event_selection .iconfont {
|
|
2556
|
+
color: #C36FD0;
|
|
2557
|
+
}
|
|
2558
|
+
.calMain[color=Purple].calMain_MONTH .event_selection:before,
|
|
2559
|
+
.calMain[color=Purple].calMain_WEEK .event_selection:before,
|
|
2560
|
+
.calMain[color=Purple].calMain_DAY .event_selection:before {
|
|
2561
|
+
background: #C36FD0;
|
|
2562
|
+
}
|
|
2563
|
+
.calMain[color=Purple].calMain_MONTH .new_event_on:not([data-uid=new]):before,
|
|
2564
|
+
.calMain[color=Purple].calMain_WEEK .new_event_on:not([data-uid=new]):before,
|
|
2565
|
+
.calMain[color=Purple].calMain_DAY .new_event_on:not([data-uid=new]):before {
|
|
2566
|
+
background: rgba(255, 255, 255, 0.3);
|
|
2567
|
+
}
|
|
2568
|
+
.calMain[color=Purple].calMain_MONTH .new_event_on,
|
|
2569
|
+
.calMain[color=Purple].calMain_WEEK .new_event_on,
|
|
2570
|
+
.calMain[color=Purple].calMain_DAY .new_event_on,
|
|
2571
|
+
.calMain[color=Purple].calMain_MONTH .new_event_on:hover,
|
|
2572
|
+
.calMain[color=Purple].calMain_WEEK .new_event_on:hover,
|
|
2573
|
+
.calMain[color=Purple].calMain_DAY .new_event_on:hover,
|
|
2574
|
+
.calMain[color=Purple].calMain_MONTH .new_event_on div,
|
|
2575
|
+
.calMain[color=Purple].calMain_WEEK .new_event_on div,
|
|
2576
|
+
.calMain[color=Purple].calMain_DAY .new_event_on div {
|
|
2577
|
+
border-color: #C36FD0;
|
|
2578
|
+
background-color: #C36FD0 !important;
|
|
2579
|
+
box-shadow: none;
|
|
2580
|
+
}
|
|
2581
|
+
.calMain[color=Purple].calMain_LIST .colorIco > i {
|
|
2582
|
+
background-color: rgba(195, 111, 208, 0.5);
|
|
2583
|
+
}
|
|
2584
|
+
.m-cal-bubble[color=/* default */ ""] .color,
|
|
2585
|
+
[data-view-name="calendar.edit"][color=/* default */ ""] .color {
|
|
2586
|
+
background: #56A2FF;
|
|
2587
|
+
}
|
|
2588
|
+
.m-cal-bubble[color=/* default */ ""] .time-range,
|
|
2589
|
+
[data-view-name="calendar.edit"][color=/* default */ ""] .time-range {
|
|
2590
|
+
background: rgba(86, 162, 255, 0.5);
|
|
2591
|
+
}
|
|
2592
|
+
.calMain[color=/* default */ ""].calMain_MONTH .sidebar:before,
|
|
2593
|
+
.calMain[color=/* default */ ""].calMain_WEEK .sidebar:before,
|
|
2594
|
+
.calMain[color=/* default */ ""].calMain_DAY .sidebar:before,
|
|
2595
|
+
.calMain[color=/* default */ ""].calMain_MONTH .event_selection,
|
|
2596
|
+
.calMain[color=/* default */ ""].calMain_WEEK .event_selection,
|
|
2597
|
+
.calMain[color=/* default */ ""].calMain_DAY .event_selection,
|
|
2598
|
+
.calMain[color=/* default */ ""].calMain_MONTH .event_selection:hover,
|
|
2599
|
+
.calMain[color=/* default */ ""].calMain_WEEK .event_selection:hover,
|
|
2600
|
+
.calMain[color=/* default */ ""].calMain_DAY .event_selection:hover {
|
|
2601
|
+
background-color: rgba(86, 162, 255, 0.5);
|
|
2602
|
+
}
|
|
2603
|
+
.calMain[color=/* default */ ""].calMain_MONTH .event_selection .iconfont,
|
|
2604
|
+
.calMain[color=/* default */ ""].calMain_WEEK .event_selection .iconfont,
|
|
2605
|
+
.calMain[color=/* default */ ""].calMain_DAY .event_selection .iconfont {
|
|
2606
|
+
color: #56A2FF;
|
|
2607
|
+
}
|
|
2608
|
+
.calMain[color=/* default */ ""].calMain_MONTH .event_selection:before,
|
|
2609
|
+
.calMain[color=/* default */ ""].calMain_WEEK .event_selection:before,
|
|
2610
|
+
.calMain[color=/* default */ ""].calMain_DAY .event_selection:before {
|
|
2611
|
+
background: #56A2FF;
|
|
2612
|
+
}
|
|
2613
|
+
.calMain[color=/* default */ ""].calMain_MONTH .new_event_on:not([data-uid=new]):before,
|
|
2614
|
+
.calMain[color=/* default */ ""].calMain_WEEK .new_event_on:not([data-uid=new]):before,
|
|
2615
|
+
.calMain[color=/* default */ ""].calMain_DAY .new_event_on:not([data-uid=new]):before {
|
|
2616
|
+
background: rgba(255, 255, 255, 0.3);
|
|
2617
|
+
}
|
|
2618
|
+
.calMain[color=/* default */ ""].calMain_MONTH .new_event_on,
|
|
2619
|
+
.calMain[color=/* default */ ""].calMain_WEEK .new_event_on,
|
|
2620
|
+
.calMain[color=/* default */ ""].calMain_DAY .new_event_on,
|
|
2621
|
+
.calMain[color=/* default */ ""].calMain_MONTH .new_event_on:hover,
|
|
2622
|
+
.calMain[color=/* default */ ""].calMain_WEEK .new_event_on:hover,
|
|
2623
|
+
.calMain[color=/* default */ ""].calMain_DAY .new_event_on:hover,
|
|
2624
|
+
.calMain[color=/* default */ ""].calMain_MONTH .new_event_on div,
|
|
2625
|
+
.calMain[color=/* default */ ""].calMain_WEEK .new_event_on div,
|
|
2626
|
+
.calMain[color=/* default */ ""].calMain_DAY .new_event_on div {
|
|
2627
|
+
border-color: #56A2FF;
|
|
2628
|
+
background-color: #56A2FF !important;
|
|
2629
|
+
box-shadow: none;
|
|
2630
|
+
}
|
|
2631
|
+
.calMain[color=/* default */ ""].calMain_LIST .colorIco > i {
|
|
2632
|
+
background-color: rgba(86, 162, 255, 0.5);
|
|
2633
|
+
}
|
|
2634
|
+
.calMain.calMain_MONTH .out-dated,
|
|
2635
|
+
.calMain.calMain_WEEK .out-dated,
|
|
2636
|
+
.calMain.calMain_DAY .out-dated {
|
|
2637
|
+
opacity: 0.5;
|
|
2638
|
+
}
|
|
2639
|
+
.calMain.calMain_MONTH .new_event_on,
|
|
2640
|
+
.calMain.calMain_WEEK .new_event_on,
|
|
2641
|
+
.calMain.calMain_DAY .new_event_on,
|
|
2642
|
+
.calMain.calMain_MONTH .new_event_on:hover,
|
|
2643
|
+
.calMain.calMain_WEEK .new_event_on:hover,
|
|
2644
|
+
.calMain.calMain_DAY .new_event_on:hover,
|
|
2645
|
+
.calMain.calMain_MONTH .new_event_on div,
|
|
2646
|
+
.calMain.calMain_WEEK .new_event_on div,
|
|
2647
|
+
.calMain.calMain_DAY .new_event_on div {
|
|
2648
|
+
box-shadow: none;
|
|
2649
|
+
opacity: 1;
|
|
2650
|
+
}
|
|
2651
|
+
.calMain.calMain_MONTH .calDayMain .event_selection .event_icon,
|
|
2652
|
+
.calMain.calMain_WEEK .calDayMain .event_selection .event_icon,
|
|
2653
|
+
.calMain.calMain_DAY .calDayMain .event_selection .event_icon,
|
|
2654
|
+
.calMain.calMain_MONTH .weekE .event_selection .event_icon,
|
|
2655
|
+
.calMain.calMain_WEEK .weekE .event_selection .event_icon,
|
|
2656
|
+
.calMain.calMain_DAY .weekE .event_selection .event_icon {
|
|
2657
|
+
height: 27px;
|
|
2658
|
+
line-height: 27px;
|
|
2659
|
+
padding-right: 10px;
|
|
2660
|
+
}
|
|
2661
|
+
.calMain.calMain_MONTH .event_selection .iconfont,
|
|
2662
|
+
.calMain.calMain_WEEK .event_selection .iconfont,
|
|
2663
|
+
.calMain.calMain_DAY .event_selection .iconfont {
|
|
2664
|
+
margin-left: 3px;
|
|
2665
|
+
}
|
|
2666
|
+
.calMain.calMain_MONTH .event_selection a,
|
|
2667
|
+
.calMain.calMain_WEEK .event_selection a,
|
|
2668
|
+
.calMain.calMain_DAY .event_selection a,
|
|
2669
|
+
.calMain.calMain_MONTH .event_selection .day_time,
|
|
2670
|
+
.calMain.calMain_WEEK .event_selection .day_time,
|
|
2671
|
+
.calMain.calMain_DAY .event_selection .day_time,
|
|
2672
|
+
.calMain.calMain_MONTH .event_selection .week_time,
|
|
2673
|
+
.calMain.calMain_WEEK .event_selection .week_time,
|
|
2674
|
+
.calMain.calMain_DAY .event_selection .week_time,
|
|
2675
|
+
.calMain.calMain_MONTH .event_selection .event_time,
|
|
2676
|
+
.calMain.calMain_WEEK .event_selection .event_time,
|
|
2677
|
+
.calMain.calMain_DAY .event_selection .event_time,
|
|
2678
|
+
.calMain.calMain_MONTH .event_selection .day_event,
|
|
2679
|
+
.calMain.calMain_WEEK .event_selection .day_event,
|
|
2680
|
+
.calMain.calMain_DAY .event_selection .day_event,
|
|
2681
|
+
.calMain.calMain_MONTH .event_selection .week_event_row,
|
|
2682
|
+
.calMain.calMain_WEEK .event_selection .week_event_row,
|
|
2683
|
+
.calMain.calMain_DAY .event_selection .week_event_row {
|
|
2684
|
+
color: #444;
|
|
2685
|
+
}
|
|
2686
|
+
.calMain.calMain_MONTH .event_selection.new_event_on,
|
|
2687
|
+
.calMain.calMain_WEEK .event_selection.new_event_on,
|
|
2688
|
+
.calMain.calMain_DAY .event_selection.new_event_on,
|
|
2689
|
+
.calMain.calMain_MONTH .event_selection.new_event_on a,
|
|
2690
|
+
.calMain.calMain_WEEK .event_selection.new_event_on a,
|
|
2691
|
+
.calMain.calMain_DAY .event_selection.new_event_on a,
|
|
2692
|
+
.calMain.calMain_MONTH .event_selection.new_event_on .day_time,
|
|
2693
|
+
.calMain.calMain_WEEK .event_selection.new_event_on .day_time,
|
|
2694
|
+
.calMain.calMain_DAY .event_selection.new_event_on .day_time,
|
|
2695
|
+
.calMain.calMain_MONTH .event_selection.new_event_on .week_time,
|
|
2696
|
+
.calMain.calMain_WEEK .event_selection.new_event_on .week_time,
|
|
2697
|
+
.calMain.calMain_DAY .event_selection.new_event_on .week_time,
|
|
2698
|
+
.calMain.calMain_MONTH .event_selection.new_event_on .event_time,
|
|
2699
|
+
.calMain.calMain_WEEK .event_selection.new_event_on .event_time,
|
|
2700
|
+
.calMain.calMain_DAY .event_selection.new_event_on .event_time,
|
|
2701
|
+
.calMain.calMain_MONTH .event_selection.new_event_on .day_event,
|
|
2702
|
+
.calMain.calMain_WEEK .event_selection.new_event_on .day_event,
|
|
2703
|
+
.calMain.calMain_DAY .event_selection.new_event_on .day_event,
|
|
2704
|
+
.calMain.calMain_MONTH .event_selection.new_event_on .week_event_row,
|
|
2705
|
+
.calMain.calMain_WEEK .event_selection.new_event_on .week_event_row,
|
|
2706
|
+
.calMain.calMain_DAY .event_selection.new_event_on .week_event_row,
|
|
2707
|
+
.calMain.calMain_MONTH .event_selection.new_event_on .iconfont,
|
|
2708
|
+
.calMain.calMain_WEEK .event_selection.new_event_on .iconfont,
|
|
2709
|
+
.calMain.calMain_DAY .event_selection.new_event_on .iconfont {
|
|
2710
|
+
color: #fff;
|
|
2711
|
+
}
|
|
2712
|
+
.calMain.calMain_MONTH .MonthEvent li:hover .overlay,
|
|
2713
|
+
.calMain.calMain_WEEK .MonthEvent li:hover .overlay,
|
|
2714
|
+
.calMain.calMain_DAY .MonthEvent li:hover .overlay,
|
|
2715
|
+
.calMain.calMain_MONTH .MonthEvent .new_event_on .overlay,
|
|
2716
|
+
.calMain.calMain_WEEK .MonthEvent .new_event_on .overlay,
|
|
2717
|
+
.calMain.calMain_DAY .MonthEvent .new_event_on .overlay,
|
|
2718
|
+
.calMain.calMain_MONTH .MonthEvent .new_event_on a,
|
|
2719
|
+
.calMain.calMain_WEEK .MonthEvent .new_event_on a,
|
|
2720
|
+
.calMain.calMain_DAY .MonthEvent .new_event_on a,
|
|
2721
|
+
.calMain.calMain_MONTH .MonthEvent .new_event_on .event_time,
|
|
2722
|
+
.calMain.calMain_WEEK .MonthEvent .new_event_on .event_time,
|
|
2723
|
+
.calMain.calMain_DAY .MonthEvent .new_event_on .event_time {
|
|
2724
|
+
background: none;
|
|
2725
|
+
background-color: transparent !important;
|
|
2726
|
+
}
|
|
2727
|
+
.calMain_LIST tr.event_selection.out-dated td:not(:first-child) {
|
|
2728
|
+
opacity: 0.5;
|
|
2729
|
+
}
|
|
2730
|
+
|
|
2731
|
+
/*!
|
|
2732
|
+
* Datepicker v1.0.10
|
|
2733
|
+
* https://fengyuanchen.github.io/datepicker
|
|
2734
|
+
*
|
|
2735
|
+
* Copyright 2014-present Chen Fengyuan
|
|
2736
|
+
* Released under the MIT license
|
|
2737
|
+
*
|
|
2738
|
+
* Date: 2020-09-29T14:46:09.037Z
|
|
2739
|
+
*/
|
|
2740
|
+
|
|
2741
|
+
.datepicker-container {
|
|
2742
|
+
background-color: #fff;
|
|
2743
|
+
direction: ltr;
|
|
2744
|
+
font-size: 12px;
|
|
2745
|
+
left: 0;
|
|
2746
|
+
line-height: 30px;
|
|
2747
|
+
position: fixed;
|
|
2748
|
+
-webkit-tap-highlight-color: transparent;
|
|
2749
|
+
top: 0;
|
|
2750
|
+
-ms-touch-action: none;
|
|
2751
|
+
touch-action: none;
|
|
2752
|
+
-webkit-touch-callout: none;
|
|
2753
|
+
-webkit-user-select: none;
|
|
2754
|
+
-moz-user-select: none;
|
|
2755
|
+
-ms-user-select: none;
|
|
2756
|
+
user-select: none;
|
|
2757
|
+
width: 210px;
|
|
2758
|
+
z-index: -1;
|
|
2759
|
+
}
|
|
2760
|
+
|
|
2761
|
+
.datepicker-container::before,
|
|
2762
|
+
.datepicker-container::after {
|
|
2763
|
+
border: 5px solid transparent;
|
|
2764
|
+
content: " ";
|
|
2765
|
+
display: block;
|
|
2766
|
+
height: 0;
|
|
2767
|
+
position: absolute;
|
|
2768
|
+
width: 0;
|
|
2769
|
+
}
|
|
2770
|
+
|
|
2771
|
+
.datepicker-dropdown {
|
|
2772
|
+
border: 1px solid #ccc;
|
|
2773
|
+
-webkit-box-shadow: 0 3px 6px #ccc;
|
|
2774
|
+
box-shadow: 0 3px 6px #ccc;
|
|
2775
|
+
-webkit-box-sizing: content-box;
|
|
2776
|
+
box-sizing: content-box;
|
|
2777
|
+
position: absolute;
|
|
2778
|
+
z-index: 1;
|
|
2779
|
+
}
|
|
2780
|
+
|
|
2781
|
+
.datepicker-inline {
|
|
2782
|
+
position: static;
|
|
2783
|
+
}
|
|
2784
|
+
|
|
2785
|
+
.datepicker-top-left,
|
|
2786
|
+
.datepicker-top-right {
|
|
2787
|
+
border-top-color: #39f;
|
|
2788
|
+
}
|
|
2789
|
+
|
|
2790
|
+
.datepicker-top-left::before,
|
|
2791
|
+
.datepicker-top-left::after,
|
|
2792
|
+
.datepicker-top-right::before,
|
|
2793
|
+
.datepicker-top-right::after {
|
|
2794
|
+
border-top: 0;
|
|
2795
|
+
left: 10px;
|
|
2796
|
+
top: -5px;
|
|
2797
|
+
}
|
|
2798
|
+
|
|
2799
|
+
.datepicker-top-left::before,
|
|
2800
|
+
.datepicker-top-right::before {
|
|
2801
|
+
border-bottom-color: #39f;
|
|
2802
|
+
}
|
|
2803
|
+
|
|
2804
|
+
.datepicker-top-left::after,
|
|
2805
|
+
.datepicker-top-right::after {
|
|
2806
|
+
border-bottom-color: #fff;
|
|
2807
|
+
top: -4px;
|
|
2808
|
+
}
|
|
2809
|
+
|
|
2810
|
+
.datepicker-bottom-left,
|
|
2811
|
+
.datepicker-bottom-right {
|
|
2812
|
+
border-bottom-color: #39f;
|
|
2813
|
+
}
|
|
2814
|
+
|
|
2815
|
+
.datepicker-bottom-left::before,
|
|
2816
|
+
.datepicker-bottom-left::after,
|
|
2817
|
+
.datepicker-bottom-right::before,
|
|
2818
|
+
.datepicker-bottom-right::after {
|
|
2819
|
+
border-bottom: 0;
|
|
2820
|
+
bottom: -5px;
|
|
2821
|
+
left: 10px;
|
|
2822
|
+
}
|
|
2823
|
+
|
|
2824
|
+
.datepicker-bottom-left::before,
|
|
2825
|
+
.datepicker-bottom-right::before {
|
|
2826
|
+
border-top-color: #39f;
|
|
2827
|
+
}
|
|
2828
|
+
|
|
2829
|
+
.datepicker-bottom-left::after,
|
|
2830
|
+
.datepicker-bottom-right::after {
|
|
2831
|
+
border-top-color: #fff;
|
|
2832
|
+
bottom: -4px;
|
|
2833
|
+
}
|
|
2834
|
+
|
|
2835
|
+
.datepicker-top-right::before,
|
|
2836
|
+
.datepicker-top-right::after,
|
|
2837
|
+
.datepicker-bottom-right::before,
|
|
2838
|
+
.datepicker-bottom-right::after {
|
|
2839
|
+
left: auto;
|
|
2840
|
+
right: 10px;
|
|
2841
|
+
}
|
|
2842
|
+
|
|
2843
|
+
.datepicker-panel > ul {
|
|
2844
|
+
margin: 0;
|
|
2845
|
+
padding: 0;
|
|
2846
|
+
width: 102%;
|
|
2847
|
+
}
|
|
2848
|
+
|
|
2849
|
+
.datepicker-panel > ul::before,
|
|
2850
|
+
.datepicker-panel > ul::after {
|
|
2851
|
+
content: " ";
|
|
2852
|
+
display: table;
|
|
2853
|
+
}
|
|
2854
|
+
|
|
2855
|
+
.datepicker-panel > ul::after {
|
|
2856
|
+
clear: both;
|
|
2857
|
+
}
|
|
2858
|
+
|
|
2859
|
+
.datepicker-panel > ul > li {
|
|
2860
|
+
background-color: #fff;
|
|
2861
|
+
cursor: pointer;
|
|
2862
|
+
float: left;
|
|
2863
|
+
height: 30px;
|
|
2864
|
+
list-style: none;
|
|
2865
|
+
margin: 0;
|
|
2866
|
+
padding: 0;
|
|
2867
|
+
text-align: center;
|
|
2868
|
+
width: 30px;
|
|
2869
|
+
}
|
|
2870
|
+
|
|
2871
|
+
.datepicker-panel > ul > li:hover {
|
|
2872
|
+
background-color: rgb(229, 242, 255);
|
|
2873
|
+
}
|
|
2874
|
+
|
|
2875
|
+
.datepicker-panel > ul > li.muted,
|
|
2876
|
+
.datepicker-panel > ul > li.muted:hover {
|
|
2877
|
+
color: #999;
|
|
2878
|
+
}
|
|
2879
|
+
|
|
2880
|
+
.datepicker-panel > ul > li.highlighted {
|
|
2881
|
+
background-color: rgb(229, 242, 255);
|
|
2882
|
+
}
|
|
2883
|
+
|
|
2884
|
+
.datepicker-panel > ul > li.highlighted:hover {
|
|
2885
|
+
background-color: rgb(204, 229, 255);
|
|
2886
|
+
}
|
|
2887
|
+
|
|
2888
|
+
.datepicker-panel > ul > li.picked,
|
|
2889
|
+
.datepicker-panel > ul > li.picked:hover {
|
|
2890
|
+
color: #39f;
|
|
2891
|
+
}
|
|
2892
|
+
|
|
2893
|
+
.datepicker-panel > ul > li.disabled,
|
|
2894
|
+
.datepicker-panel > ul > li.disabled:hover {
|
|
2895
|
+
background-color: #fff;
|
|
2896
|
+
color: #ccc;
|
|
2897
|
+
cursor: default;
|
|
2898
|
+
}
|
|
2899
|
+
|
|
2900
|
+
.datepicker-panel > ul > li.disabled.highlighted,
|
|
2901
|
+
.datepicker-panel > ul > li.disabled:hover.highlighted {
|
|
2902
|
+
background-color: rgb(229, 242, 255);
|
|
2903
|
+
}
|
|
2904
|
+
|
|
2905
|
+
.datepicker-panel > ul > li[data-view="years prev"],
|
|
2906
|
+
.datepicker-panel > ul > li[data-view="year prev"],
|
|
2907
|
+
.datepicker-panel > ul > li[data-view="month prev"],
|
|
2908
|
+
.datepicker-panel > ul > li[data-view="years next"],
|
|
2909
|
+
.datepicker-panel > ul > li[data-view="year next"],
|
|
2910
|
+
.datepicker-panel > ul > li[data-view="month next"],
|
|
2911
|
+
.datepicker-panel > ul > li[data-view="next"] {
|
|
2912
|
+
font-size: 18px;
|
|
2913
|
+
}
|
|
2914
|
+
|
|
2915
|
+
.datepicker-panel > ul > li[data-view="years current"],
|
|
2916
|
+
.datepicker-panel > ul > li[data-view="year current"],
|
|
2917
|
+
.datepicker-panel > ul > li[data-view="month current"] {
|
|
2918
|
+
width: 150px;
|
|
2919
|
+
}
|
|
2920
|
+
|
|
2921
|
+
.datepicker-panel > ul[data-view="years"] > li,
|
|
2922
|
+
.datepicker-panel > ul[data-view="months"] > li {
|
|
2923
|
+
height: 52.5px;
|
|
2924
|
+
line-height: 52.5px;
|
|
2925
|
+
width: 52.5px;
|
|
2926
|
+
}
|
|
2927
|
+
|
|
2928
|
+
.datepicker-panel > ul[data-view="week"] > li,
|
|
2929
|
+
.datepicker-panel > ul[data-view="week"] > li:hover {
|
|
2930
|
+
background-color: #fff;
|
|
2931
|
+
cursor: default;
|
|
2932
|
+
}
|
|
2933
|
+
|
|
2934
|
+
.datepicker-hide {
|
|
2935
|
+
display: none;
|
|
2936
|
+
}
|
|
2937
|
+
|
|
2938
|
+
/*
|
|
2939
|
+
* Copyright (c) 2023 Mailtech.cn, Ltd. All Rights Reserved.
|
|
2940
|
+
*/
|
|
2941
|
+
/*
|
|
2942
|
+
* Copyright (c) 2025 Mailtech.cn, Ltd. All Rights Reserved.
|
|
2943
|
+
*/
|
|
2944
|
+
.datepicker-panel[data-view="week picker"] > ul[data-view=days] > li.picked.selected-wrapper:before,
|
|
2945
|
+
.datepicker-panel[data-view="days picker"] > ul[data-view=days] > li.picked > span {
|
|
2946
|
+
background: #e4ecf8;
|
|
2947
|
+
border: 1px solid #2c6ccc;
|
|
2948
|
+
}
|
|
2949
|
+
.datepicker-panel[data-view="days picker"] > ul[data-view=days] > li.picked.today > span,
|
|
2950
|
+
.datepicker-panel[data-view="week picker"] > ul[data-view=days] > li.picked.today > span {
|
|
2951
|
+
background: #2c6ccc;
|
|
2952
|
+
}
|
|
2953
|
+
.datepicker-panel > ul > li.picked,
|
|
2954
|
+
.datepicker-panel > ul > li.picked:hover {
|
|
2955
|
+
color: #2c6ccc;
|
|
2956
|
+
}
|
|
2957
|
+
.u-date-range-wrap > ul > li.active,
|
|
2958
|
+
.u-date-range .datepicker-panel > ul > li.range:after {
|
|
2959
|
+
background: #e4ecf8;
|
|
2960
|
+
}
|
|
2961
|
+
.datepicker-input {
|
|
2962
|
+
position: relative;
|
|
2963
|
+
display: inline-block;
|
|
2964
|
+
}
|
|
2965
|
+
.datepicker-input input {
|
|
2966
|
+
background: transparent;
|
|
2967
|
+
padding: 3px 18px 3px 5px;
|
|
2968
|
+
box-sizing: border-box;
|
|
2969
|
+
height: 32px;
|
|
2970
|
+
border-radius: 4px;
|
|
2971
|
+
}
|
|
2972
|
+
.datepicker-input input + i {
|
|
2973
|
+
position: absolute;
|
|
2974
|
+
font-size: 16px;
|
|
2975
|
+
right: 3px;
|
|
2976
|
+
}
|
|
2977
|
+
.datepicker-input input[disabled] {
|
|
2978
|
+
background: #f3f3f3;
|
|
2979
|
+
color: rgba(42, 42, 42, 0.3);
|
|
2980
|
+
}
|
|
2981
|
+
.datepicker-input input[disabled] + i {
|
|
2982
|
+
opacity: 0.3;
|
|
2983
|
+
}
|
|
2984
|
+
.datepicker-panel > ul > li,
|
|
2985
|
+
.datepicker-panel > ul > li:hover {
|
|
2986
|
+
background: transparent;
|
|
2987
|
+
}
|
|
2988
|
+
.datepicker-panel > ul > li[data-view$=current] {
|
|
2989
|
+
font-size: 14px;
|
|
2990
|
+
font-weight: 700;
|
|
2991
|
+
box-sizing: border-box;
|
|
2992
|
+
text-align: left;
|
|
2993
|
+
}
|
|
2994
|
+
.datepicker-panel > ul > li.highlighted,
|
|
2995
|
+
.datepicker-panel > ul > li.highlighted.disabled,
|
|
2996
|
+
.datepicker-panel > ul > li.highlighted:hover {
|
|
2997
|
+
background: none;
|
|
2998
|
+
}
|
|
2999
|
+
.datepicker-panel > ul > li.picked.disabled {
|
|
3000
|
+
background: none;
|
|
3001
|
+
opacity: 0.3;
|
|
3002
|
+
}
|
|
3003
|
+
.datepicker-panel > ul > li.disabled:hover.highlighted {
|
|
3004
|
+
background: #f5f5f5;
|
|
3005
|
+
}
|
|
3006
|
+
.datepicker-panel[data-view="week picker"] > ul[data-view] > li.picked {
|
|
3007
|
+
color: #2e2e2e;
|
|
3008
|
+
position: relative;
|
|
3009
|
+
}
|
|
3010
|
+
.datepicker-panel[data-view="week picker"] > ul[data-view] > li.picked.selected-wrapper,
|
|
3011
|
+
.datepicker-panel[data-view="week picker"] > ul[data-view] > li.picked.selected-wrapper > span {
|
|
3012
|
+
position: relative;
|
|
3013
|
+
}
|
|
3014
|
+
.datepicker-panel[data-view="week picker"] > ul[data-view] > li.picked.selected-wrapper:before {
|
|
3015
|
+
content: '';
|
|
3016
|
+
width: 210px;
|
|
3017
|
+
height: 26px;
|
|
3018
|
+
position: absolute;
|
|
3019
|
+
left: 0;
|
|
3020
|
+
top: 50%;
|
|
3021
|
+
margin-top: -14px;
|
|
3022
|
+
border-radius: 2px;
|
|
3023
|
+
z-index: -2;
|
|
3024
|
+
display: inline-block;
|
|
3025
|
+
}
|
|
3026
|
+
.datepicker-panel[data-view="week picker"] > ul[data-view] > li.picked.today,
|
|
3027
|
+
.datepicker-panel[data-view="days picker"] > ul[data-view=days] > li {
|
|
3028
|
+
position: relative;
|
|
3029
|
+
}
|
|
3030
|
+
.datepicker-panel[data-view="week picker"] > ul[data-view] > li.picked.today.picked.today,
|
|
3031
|
+
.datepicker-panel[data-view="days picker"] > ul[data-view=days] > li.picked.today {
|
|
3032
|
+
color: #fff;
|
|
3033
|
+
}
|
|
3034
|
+
.datepicker-panel[data-view="week picker"] > ul[data-view] > li.picked.today.picked > span,
|
|
3035
|
+
.datepicker-panel[data-view="days picker"] > ul[data-view=days] > li.picked > span {
|
|
3036
|
+
display: inline-block;
|
|
3037
|
+
width: 28px;
|
|
3038
|
+
height: 28px;
|
|
3039
|
+
line-height: 28px;
|
|
3040
|
+
border-radius: 2px;
|
|
3041
|
+
z-index: -1;
|
|
3042
|
+
position: relative;
|
|
3043
|
+
}
|
|
3044
|
+
.u-datepicker {
|
|
3045
|
+
position: relative;
|
|
3046
|
+
height: 240px;
|
|
3047
|
+
}
|
|
3048
|
+
.u-datepicker .datepicker-inline {
|
|
3049
|
+
position: absolute;
|
|
3050
|
+
background: transparent;
|
|
3051
|
+
z-index: 0;
|
|
3052
|
+
left: 50%;
|
|
3053
|
+
}
|
|
3054
|
+
.u-datepicker .datepicker-inline .datepicker-panel > ul > li {
|
|
3055
|
+
background: transparent;
|
|
3056
|
+
font-size: 14px;
|
|
3057
|
+
}
|
|
3058
|
+
.u-datepicker .datepicker-inline .datepicker-panel > ul > li.iconleft,
|
|
3059
|
+
.u-datepicker .datepicker-inline .datepicker-panel > ul > li.iconright {
|
|
3060
|
+
font-size: 20px;
|
|
3061
|
+
}
|
|
3062
|
+
.u-datepicker .datepicker-inline {
|
|
3063
|
+
margin-left: -105px;
|
|
3064
|
+
width: 210px;
|
|
3065
|
+
}
|
|
3066
|
+
.u-datepicker .datepicker-inline .datepicker-panel > ul > li {
|
|
3067
|
+
width: 30px;
|
|
3068
|
+
height: 30px;
|
|
3069
|
+
line-height: 30px;
|
|
3070
|
+
}
|
|
3071
|
+
.u-datepicker .datepicker-inline .datepicker-panel > ul > li[data-view$=current] {
|
|
3072
|
+
width: 150px;
|
|
3073
|
+
}
|
|
3074
|
+
.u-datepicker .datepicker-inline .datepicker-panel[data-view="week picker"] > ul[data-view] > li.picked.selected-wrapper:before {
|
|
3075
|
+
width: 210px;
|
|
3076
|
+
margin-top: -14px;
|
|
3077
|
+
}
|
|
3078
|
+
.u-datepicker .datepicker-inline .datepicker-panel[data-view="months picker"] > ul[data-view=months] > li,
|
|
3079
|
+
.u-datepicker .datepicker-inline .datepicker-panel[data-view="years picker"] > ul[data-view=years] > li {
|
|
3080
|
+
width: 52.5px;
|
|
3081
|
+
height: 52.5px;
|
|
3082
|
+
line-height: 52.5px;
|
|
3083
|
+
}
|
|
3084
|
+
.u-datepicker.large {
|
|
3085
|
+
height: 280px;
|
|
3086
|
+
}
|
|
3087
|
+
.u-datepicker.large .datepicker-inline {
|
|
3088
|
+
margin-left: -122.5px;
|
|
3089
|
+
width: 245px;
|
|
3090
|
+
}
|
|
3091
|
+
.u-datepicker.large .datepicker-inline .datepicker-panel > ul > li {
|
|
3092
|
+
width: 35px;
|
|
3093
|
+
height: 35px;
|
|
3094
|
+
line-height: 35px;
|
|
3095
|
+
}
|
|
3096
|
+
.u-datepicker.large .datepicker-inline .datepicker-panel > ul > li[data-view$=current] {
|
|
3097
|
+
width: 175px;
|
|
3098
|
+
}
|
|
3099
|
+
.u-datepicker.large .datepicker-inline .datepicker-panel[data-view="week picker"] > ul[data-view] > li.picked.selected-wrapper:before {
|
|
3100
|
+
width: 245px;
|
|
3101
|
+
margin-top: -14px;
|
|
3102
|
+
}
|
|
3103
|
+
.u-datepicker.large .datepicker-inline .datepicker-panel[data-view="months picker"] > ul[data-view=months] > li,
|
|
3104
|
+
.u-datepicker.large .datepicker-inline .datepicker-panel[data-view="years picker"] > ul[data-view=years] > li {
|
|
3105
|
+
width: 61.25px;
|
|
3106
|
+
height: 61.25px;
|
|
3107
|
+
line-height: 61.25px;
|
|
3108
|
+
}
|
|
3109
|
+
.datepicker-dropdown {
|
|
3110
|
+
border-radius: 4px;
|
|
3111
|
+
box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
|
|
3112
|
+
border: none;
|
|
3113
|
+
padding: 12px;
|
|
3114
|
+
}
|
|
3115
|
+
.datepicker-dropdown .datepicker-panel > ul > li.hover {
|
|
3116
|
+
background: #f5f5f5;
|
|
3117
|
+
z-index: 0;
|
|
3118
|
+
}
|
|
3119
|
+
.datepicker-dropdown .datepicker-panel > ul > li.hover.first {
|
|
3120
|
+
border-top-left-radius: 4px;
|
|
3121
|
+
border-bottom-left-radius: 4px;
|
|
3122
|
+
}
|
|
3123
|
+
.datepicker-dropdown .datepicker-panel > ul > li.hover.last {
|
|
3124
|
+
border-top-right-radius: 4px;
|
|
3125
|
+
border-bottom-right-radius: 4px;
|
|
3126
|
+
}
|
|
3127
|
+
.datepicker-dropdown.datepicker-top-left:before,
|
|
3128
|
+
.datepicker-dropdown.datepicker-top-right:before,
|
|
3129
|
+
.datepicker-dropdown.datepicker-top-left:after,
|
|
3130
|
+
.datepicker-dropdown.datepicker-top-right:after {
|
|
3131
|
+
display: none;
|
|
3132
|
+
}
|
|
3133
|
+
[dir="rtl"] .datepicker-container:not(.datepicker-inline) {
|
|
3134
|
+
right: initial !important;
|
|
3135
|
+
}
|
|
3136
|
+
[dir="rtl"] .datepicker-container:not(.datepicker-inline).datepicker-top-left:before,
|
|
3137
|
+
[dir="rtl"] .datepicker-container:not(.datepicker-inline).datepicker-bottom-left:before,
|
|
3138
|
+
[dir="rtl"] .datepicker-container:not(.datepicker-inline).datepicker-top-left:after,
|
|
3139
|
+
[dir="rtl"] .datepicker-container:not(.datepicker-inline).datepicker-bottom-left:after {
|
|
3140
|
+
left: 10px;
|
|
3141
|
+
right: initial !important;
|
|
3142
|
+
}
|
|
3143
|
+
[dir="rtl"] .datepicker-container:not(.datepicker-inline).datepicker-top-right:before,
|
|
3144
|
+
[dir="rtl"] .datepicker-container:not(.datepicker-inline).datepicker-bottom-right:before,
|
|
3145
|
+
[dir="rtl"] .datepicker-container:not(.datepicker-inline).datepicker-top-right:after,
|
|
3146
|
+
[dir="rtl"] .datepicker-container:not(.datepicker-inline).datepicker-bottom-right:after {
|
|
3147
|
+
right: 10px;
|
|
3148
|
+
left: initial !important;
|
|
3149
|
+
}
|
|
3150
|
+
[dir="rtl"] .datepicker-container:not(.datepicker-inline) [data-view="years prev"],
|
|
3151
|
+
[dir="rtl"] .datepicker-container:not(.datepicker-inline) [data-view="years next"],
|
|
3152
|
+
[dir="rtl"] .datepicker-container:not(.datepicker-inline) [data-view="year prev"],
|
|
3153
|
+
[dir="rtl"] .datepicker-container:not(.datepicker-inline) [data-view="year next"],
|
|
3154
|
+
[dir="rtl"] .datepicker-container:not(.datepicker-inline) [data-view="month prev"],
|
|
3155
|
+
[dir="rtl"] .datepicker-container:not(.datepicker-inline) [data-view="month next"] {
|
|
3156
|
+
transform: scaleX(-1);
|
|
3157
|
+
}
|
|
3158
|
+
|
|
3159
|
+
/*
|
|
3160
|
+
* Copyright (c) 2024 Mailtech.cn, Ltd. All Rights Reserved.
|
|
3161
|
+
*/
|
|
3162
|
+
.u-date-range {
|
|
3163
|
+
padding: 0;
|
|
3164
|
+
background: #fff;
|
|
3165
|
+
outline: none;
|
|
3166
|
+
}
|
|
3167
|
+
.u-date-range-wrap {
|
|
3168
|
+
font-size: 0;
|
|
3169
|
+
overflow: hidden;
|
|
3170
|
+
}
|
|
3171
|
+
.u-date-range-wrap > * {
|
|
3172
|
+
display: inline-block;
|
|
3173
|
+
}
|
|
3174
|
+
.u-date-range-wrap > ul {
|
|
3175
|
+
height: 256px;
|
|
3176
|
+
padding: 8px;
|
|
3177
|
+
box-sizing: border-box;
|
|
3178
|
+
border-right: 1px solid #e8e8e8;
|
|
3179
|
+
vertical-align: top;
|
|
3180
|
+
}
|
|
3181
|
+
.u-date-range-wrap > ul li {
|
|
3182
|
+
font-size: 14px;
|
|
3183
|
+
height: 19px;
|
|
3184
|
+
line-height: 19px;
|
|
3185
|
+
margin-bottom: 4px;
|
|
3186
|
+
padding: 4px 8px;
|
|
3187
|
+
cursor: pointer;
|
|
3188
|
+
overflow: hidden;
|
|
3189
|
+
word-wrap: normal;
|
|
3190
|
+
white-space: nowrap;
|
|
3191
|
+
text-overflow: ellipsis;
|
|
3192
|
+
}
|
|
3193
|
+
.u-date-range-wrap > ul li:hover {
|
|
3194
|
+
background: #f5f5f5;
|
|
3195
|
+
}
|
|
3196
|
+
.u-date-range-wrap .u-datepicker {
|
|
3197
|
+
width: 234px;
|
|
3198
|
+
padding: 8px 0;
|
|
3199
|
+
box-sizing: content-box;
|
|
3200
|
+
}
|
|
3201
|
+
.u-date-range-wrap .u-datepicker .datepicker-inline {
|
|
3202
|
+
top: 8px;
|
|
3203
|
+
}
|
|
3204
|
+
.u-date-range-wrap .u-datepicker .datepicker-panel > ul > li.range:after {
|
|
3205
|
+
content: '';
|
|
3206
|
+
height: 28px;
|
|
3207
|
+
position: absolute;
|
|
3208
|
+
top: 1px;
|
|
3209
|
+
z-index: -2;
|
|
3210
|
+
left: 0;
|
|
3211
|
+
right: 0;
|
|
3212
|
+
display: inline-block;
|
|
3213
|
+
}
|
|
3214
|
+
.u-date-range-wrap .u-datepicker .datepicker-panel > ul > li.range.range-start.picked:after {
|
|
3215
|
+
left: 15px;
|
|
3216
|
+
right: 0;
|
|
3217
|
+
}
|
|
3218
|
+
.u-date-range-wrap .u-datepicker .datepicker-panel > ul > li.range.range-end.picked:after {
|
|
3219
|
+
left: 0;
|
|
3220
|
+
right: 15px;
|
|
3221
|
+
}
|
|
3222
|
+
.u-date-range-wrap .u-datepicker .datepicker-panel > ul > li.range.range-start.range-end.picked:after {
|
|
3223
|
+
left: 15px;
|
|
3224
|
+
right: 15px;
|
|
3225
|
+
}
|
|
3226
|
+
.u-date-range-wrap .u-datepicker .datepicker-panel > ul > li.range.range-end:not(.picked):after {
|
|
3227
|
+
border-radius: 0 4px 4px 0;
|
|
3228
|
+
}
|
|
3229
|
+
.u-date-range-wrap .u-datepicker .datepicker-panel > ul > li.range.range-start:not(.picked):after {
|
|
3230
|
+
border-radius: 4px 0 0 4px;
|
|
3231
|
+
}
|
|
3232
|
+
|