This repository was archived by the owner on Jul 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcalendar-component.css
More file actions
115 lines (93 loc) · 2.31 KB
/
calendar-component.css
File metadata and controls
115 lines (93 loc) · 2.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
.calendar-control-section {
max-width: 300px;
margin: 0 auto;
}
/* lable styles */
#date_label {
margin-top: 20px;
display: block;
color: rgba(0, 0, 0, 0.58);
font-weight: 500;
margin-left: 5px;
}
/* special dates sample styles */
.e-customStyle span.e-icons.highlight {
margin-top: -13px;
display: block;
margin-left: 4px;
}
.e-customStyle .e-other-month span.e-icons.highlight:before {
content: "";
}
.e-customStyle span.e-icons.highlight,
.e-customStyle span.e-icons.highlight:before {
color: rgb(0, 0, 255);
}
.highcontrast .e-customStyle td.birthday span.e-icons.highlight,
.highcontrast .e-customStyle td.birthday span.e-icons.highlight:before {
color: #ff6161;
}
.highcontrast .e-customStyle td.farewell span.e-icons.highlight,
.highcontrast .e-customStyle td.farewell span.e-icons.highlight::before {
color: #2bc700;
}
.highcontrast .e-customStyle td.vacation span.e-icons.highlight,
.highcontrast .e-customStyle td.vacation span.e-icons.highlight::before {
color: #ff7d1a;
}
.e-customStyle span.e-icons.highlight:before {
content: "\e790";
vertical-align: middle;
margin-right: 3px;
font-size: 4px;
position: relative;
top: -1px;
font-weight: normal;
}
.e-bigger .e-customStyle.e-calendar span.e-icons.highlight:before,
.e-customStyle.e-bigger.e-calendar span.e-icons.highlight:before {
top: -3px;
}
.e-customStyle .e-selected span.e-icons.highlight:before {
color: #fff;
}
.e-customStyle span.e-icons.highlight,
.e-customStyle.e-calendar .e-content span.special,
.e-customStyle.e-calendar .e-content span.daycell {
font-weight: bold;
}
.e-customStyle.e-calendar .e-content span.special {
color: red;
}
.e-customStyle.e-calendar .e-content span.daycell {
color: #ff9e00;
}
body.highcontrast #date_label {
color: white;
}
#control_wrapper {
max-width: 330px;
margin: 0 auto;
}
#control_wrapper.multiselectWrapper {
float: none;
box-shadow: none;
background: transparent;
border : none;
}
.contentValue {
padding: 10px;
overflow: auto;
max-height: 100px;
margin-bottom: 10px;
border: 1px solid rgba(0, 0, 0, 0.12);
}
.valuesWrapper {
margin: 0 auto;
float: none;
padding: 0;
max-width: 370px;
}
body.highcontrast .contentValue {
border: 1px solid #969696
}