@syncfusion/ej2-react-schedule 19.4.55 → 20.1.47
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/CHANGELOG.md +25 -11
- package/dist/ej2-react-schedule.umd.min.js +1 -1
- package/package.json +8 -8
- package/styles/bootstrap-dark.css +10 -7
- package/styles/bootstrap.css +10 -7
- package/styles/bootstrap4.css +11 -8
- package/styles/bootstrap5-dark.css +20 -19
- package/styles/bootstrap5.css +20 -19
- package/styles/fabric-dark.css +10 -7
- package/styles/fabric.css +10 -7
- package/styles/fluent-dark.css +5102 -0
- package/styles/fluent-dark.scss +2 -0
- package/styles/fluent.css +5103 -0
- package/styles/fluent.scss +2 -0
- package/styles/highcontrast-light.css +10 -7
- package/styles/highcontrast.css +11 -8
- package/styles/material-dark.css +10 -7
- package/styles/material.css +10 -7
- package/styles/recurrence-editor/fluent-dark.css +495 -0
- package/styles/recurrence-editor/fluent-dark.scss +1 -0
- package/styles/recurrence-editor/fluent.css +495 -0
- package/styles/recurrence-editor/fluent.scss +1 -0
- package/styles/schedule/bootstrap-dark.css +10 -7
- package/styles/schedule/bootstrap.css +10 -7
- package/styles/schedule/bootstrap4.css +11 -8
- package/styles/schedule/bootstrap5-dark.css +20 -19
- package/styles/schedule/bootstrap5.css +20 -19
- package/styles/schedule/fabric-dark.css +10 -7
- package/styles/schedule/fabric.css +10 -7
- package/styles/schedule/fluent-dark.css +4606 -0
- package/styles/schedule/fluent-dark.scss +1 -0
- package/styles/schedule/fluent.css +4607 -0
- package/styles/schedule/fluent.scss +1 -0
- package/styles/schedule/highcontrast-light.css +10 -7
- package/styles/schedule/highcontrast.css +11 -8
- package/styles/schedule/material-dark.css +10 -7
- package/styles/schedule/material.css +10 -7
- package/styles/schedule/tailwind-dark.css +65 -60
- package/styles/schedule/tailwind.css +65 -60
- package/styles/tailwind-dark.css +65 -60
- package/styles/tailwind.css +65 -60
|
@@ -2,203 +2,203 @@
|
|
|
2
2
|
/*! recurrence editor theme wise definitions*/
|
|
3
3
|
/*! Schedule component's tailwind theme definitions and variables */
|
|
4
4
|
.e-schedule .e-schedule-toolbar .e-icon-prev::before {
|
|
5
|
-
content: '\
|
|
5
|
+
content: '\e765';
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.e-schedule .e-schedule-toolbar .e-icon-next::before {
|
|
9
|
-
content: '\
|
|
9
|
+
content: '\e748';
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
.e-schedule .e-schedule-toolbar .e-icon-add::before {
|
|
13
|
-
content: '\
|
|
13
|
+
content: '\e805';
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
.e-schedule .e-schedule-toolbar .e-icon-today::before {
|
|
17
|
-
content: '\
|
|
17
|
+
content: '\e778';
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
.e-schedule .e-schedule-toolbar .e-icon-down-arrow::before {
|
|
21
|
-
content: '\
|
|
21
|
+
content: '\e729';
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
.e-schedule .e-schedule-toolbar .e-icon-day::before {
|
|
25
|
-
content: '\
|
|
25
|
+
content: '\e75e';
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
.e-schedule .e-schedule-toolbar .e-icon-week::before {
|
|
29
|
-
content: '\
|
|
29
|
+
content: '\e817';
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
.e-schedule .e-schedule-toolbar .e-icon-workweek::before {
|
|
33
|
-
content: '\
|
|
33
|
+
content: '\e817';
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
.e-schedule .e-schedule-toolbar .e-icon-month::before {
|
|
37
|
-
content: '\
|
|
37
|
+
content: '\e7c5';
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
.e-schedule .e-schedule-toolbar .e-icon-month-agenda::before {
|
|
41
|
-
content: '\
|
|
41
|
+
content: '\e75b';
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
.e-schedule .e-schedule-toolbar .e-icon-agenda::before {
|
|
45
|
-
content: '\
|
|
45
|
+
content: '\e74c';
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
.e-schedule .e-schedule-toolbar .e-icon-year::before {
|
|
49
|
-
content: '\
|
|
49
|
+
content: '\e7c5';
|
|
50
50
|
}
|
|
51
51
|
|
|
52
52
|
.e-schedule .e-schedule-toolbar .e-icon-timeline-year-vertical::before {
|
|
53
|
-
content: '\
|
|
53
|
+
content: '\e876';
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
.e-schedule .e-schedule-toolbar .e-icon-timeline-year-horizontal::before {
|
|
57
|
-
content: '\
|
|
57
|
+
content: '\e876';
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
.e-schedule .e-schedule-toolbar .e-icon-timeline-day::before {
|
|
61
|
-
content: '\
|
|
61
|
+
content: '\e7da';
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
.e-schedule .e-schedule-toolbar .e-icon-timeline-week::before {
|
|
65
|
-
content: '\
|
|
65
|
+
content: '\e81f';
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
.e-schedule .e-schedule-toolbar .e-icon-timeline-workweek::before {
|
|
69
|
-
content: '\
|
|
69
|
+
content: '\e720';
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
.e-schedule .e-schedule-toolbar .e-icon-timeline-month::before {
|
|
73
|
-
content: '\
|
|
73
|
+
content: '\e876';
|
|
74
74
|
}
|
|
75
75
|
|
|
76
76
|
.e-schedule .e-schedule-toolbar.e-toolbar .e-popup-down-icon::before {
|
|
77
|
-
content: '\
|
|
77
|
+
content: '\e770';
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
.e-schedule .e-schedule-toolbar.e-toolbar .e-popup-up-icon::before {
|
|
81
|
-
content: '\
|
|
81
|
+
content: '\e770';
|
|
82
82
|
}
|
|
83
83
|
|
|
84
84
|
.e-schedule .e-schedule-toolbar.e-rtl .e-icon-prev::before {
|
|
85
|
-
content: '\
|
|
85
|
+
content: '\e748';
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
.e-schedule .e-schedule-toolbar.e-rtl .e-icon-next::before {
|
|
89
|
-
content: '\
|
|
89
|
+
content: '\e765';
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
.e-schedule .e-schedule-resource-toolbar .e-icon-menu::before {
|
|
93
|
-
content: '\
|
|
93
|
+
content: '\e799';
|
|
94
94
|
}
|
|
95
95
|
|
|
96
96
|
.e-schedule .e-schedule-resource-toolbar .e-icon-next::before {
|
|
97
|
-
content: '\
|
|
97
|
+
content: '\e748';
|
|
98
98
|
}
|
|
99
99
|
|
|
100
100
|
.e-schedule .e-close-icon::before {
|
|
101
|
-
content: '\
|
|
101
|
+
content: '\e7e7';
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
.e-schedule .e-block-indicator::before {
|
|
105
|
-
content: '\
|
|
105
|
+
content: '\e839';
|
|
106
106
|
}
|
|
107
107
|
|
|
108
108
|
.e-schedule .e-appointment .e-recurrence-icon::before {
|
|
109
|
-
content: '\
|
|
109
|
+
content: '\e772';
|
|
110
110
|
}
|
|
111
111
|
|
|
112
112
|
.e-schedule .e-appointment .e-recurrence-edit-icon::before {
|
|
113
|
-
content: '\
|
|
113
|
+
content: '\e789';
|
|
114
114
|
}
|
|
115
115
|
|
|
116
116
|
.e-schedule .e-appointment .e-up-icon::before {
|
|
117
|
-
content: '\
|
|
117
|
+
content: '\e822';
|
|
118
118
|
}
|
|
119
119
|
|
|
120
120
|
.e-schedule .e-appointment .e-down-icon::before {
|
|
121
|
-
content: '\
|
|
121
|
+
content: '\e7fe';
|
|
122
122
|
}
|
|
123
123
|
|
|
124
124
|
.e-schedule .e-appointment .e-left-icon::before {
|
|
125
|
-
content: '\
|
|
125
|
+
content: '\e744';
|
|
126
126
|
}
|
|
127
127
|
|
|
128
128
|
.e-schedule .e-appointment .e-right-icon::before {
|
|
129
|
-
content: '\
|
|
129
|
+
content: '\e7a9';
|
|
130
130
|
}
|
|
131
131
|
|
|
132
132
|
.e-schedule .e-vertical-view .e-all-day-cells .e-all-day-appointment-section::before {
|
|
133
|
-
content: '\
|
|
133
|
+
content: '\e729';
|
|
134
134
|
}
|
|
135
135
|
|
|
136
136
|
.e-schedule.e-rtl .e-appointment .e-left-icon::before {
|
|
137
|
-
content: '\
|
|
137
|
+
content: '\e7a9';
|
|
138
138
|
}
|
|
139
139
|
|
|
140
140
|
.e-schedule.e-rtl .e-appointment .e-right-icon::before {
|
|
141
|
-
content: '\
|
|
141
|
+
content: '\e744';
|
|
142
142
|
}
|
|
143
143
|
|
|
144
144
|
.e-schedule .e-resource-tree-icon::before {
|
|
145
|
-
content: '\
|
|
145
|
+
content: '\e748';
|
|
146
146
|
}
|
|
147
147
|
|
|
148
148
|
.e-schedule-dialog.e-device .e-back-icon::before {
|
|
149
|
-
content: '\
|
|
149
|
+
content: '\e773';
|
|
150
150
|
}
|
|
151
151
|
|
|
152
152
|
.e-schedule-dialog.e-device .e-save-icon::before {
|
|
153
|
-
content: '\
|
|
153
|
+
content: '\e7c8';
|
|
154
154
|
}
|
|
155
155
|
|
|
156
156
|
.e-schedule-dialog.e-device .e-recurrence-container .e-recurrence-edit-button .e-recurrence-edit.e-icons::before {
|
|
157
|
-
content: '\
|
|
157
|
+
content: '\e730';
|
|
158
158
|
}
|
|
159
159
|
|
|
160
160
|
.e-schedule-dialog.e-device.e-rtl .e-back-icon::before {
|
|
161
|
-
content: '\
|
|
161
|
+
content: '\e7f9';
|
|
162
162
|
}
|
|
163
163
|
|
|
164
164
|
.e-quick-popup-wrapper .e-edit-icon::before {
|
|
165
|
-
content: '\
|
|
165
|
+
content: '\e730';
|
|
166
166
|
}
|
|
167
167
|
|
|
168
168
|
.e-quick-popup-wrapper .e-delete-icon::before {
|
|
169
|
-
content: '\
|
|
169
|
+
content: '\e820';
|
|
170
170
|
}
|
|
171
171
|
|
|
172
172
|
.e-quick-popup-wrapper .e-close-icon::before {
|
|
173
|
-
content: '\
|
|
173
|
+
content: '\e7e7';
|
|
174
174
|
}
|
|
175
175
|
|
|
176
176
|
.e-quick-popup-wrapper .e-time-icon::before {
|
|
177
|
-
content: '\
|
|
177
|
+
content: '\e705';
|
|
178
178
|
}
|
|
179
179
|
|
|
180
180
|
.e-quick-popup-wrapper .e-location-icon::before {
|
|
181
|
-
content: '\
|
|
181
|
+
content: '\e756';
|
|
182
182
|
}
|
|
183
183
|
|
|
184
184
|
.e-quick-popup-wrapper .e-time-zone-icon::before {
|
|
185
|
-
content: '\
|
|
185
|
+
content: '\e804';
|
|
186
186
|
}
|
|
187
187
|
|
|
188
188
|
.e-quick-popup-wrapper .e-description-icon::before {
|
|
189
|
-
content: '\
|
|
189
|
+
content: '\e7c0';
|
|
190
190
|
}
|
|
191
191
|
|
|
192
192
|
.e-quick-popup-wrapper .e-resource-icon::before {
|
|
193
|
-
content: '\
|
|
193
|
+
content: '\e7b9';
|
|
194
194
|
}
|
|
195
195
|
|
|
196
196
|
.e-quick-popup-wrapper .e-date-time-icon::before {
|
|
197
|
-
content: '\
|
|
197
|
+
content: '\e7da';
|
|
198
198
|
}
|
|
199
199
|
|
|
200
200
|
.e-more-popup-wrapper.e-device .e-close-icon::before {
|
|
201
|
-
content: '\
|
|
201
|
+
content: '\e7e7';
|
|
202
202
|
}
|
|
203
203
|
|
|
204
204
|
/*! schedule component layout */
|
|
@@ -1854,6 +1854,15 @@
|
|
|
1854
1854
|
text-decoration: underline;
|
|
1855
1855
|
}
|
|
1856
1856
|
|
|
1857
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
|
|
1858
|
+
background-color: #f3f4f6;
|
|
1859
|
+
box-shadow: inset 0 0 0 8px #f9fafb;
|
|
1860
|
+
}
|
|
1861
|
+
|
|
1862
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
|
|
1863
|
+
background-color: #f3f4f6;
|
|
1864
|
+
}
|
|
1865
|
+
|
|
1857
1866
|
.e-schedule .e-timeline-year-view .e-event-table {
|
|
1858
1867
|
position: absolute;
|
|
1859
1868
|
top: 0;
|
|
@@ -2893,13 +2902,6 @@
|
|
|
2893
2902
|
padding: 10px 8px 6px;
|
|
2894
2903
|
}
|
|
2895
2904
|
|
|
2896
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons,
|
|
2897
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-tbtn-txt .e-icons,
|
|
2898
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons,
|
|
2899
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-tbtn-txt .e-icons {
|
|
2900
|
-
padding: 0;
|
|
2901
|
-
}
|
|
2902
|
-
|
|
2903
2905
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
|
|
2904
2906
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-tbtn-txt .e-icons.e-icon-right,
|
|
2905
2907
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
|
|
@@ -3735,7 +3737,7 @@
|
|
|
3735
3737
|
.e-quick-popup-wrapper .e-event-popup .e-resource-icon {
|
|
3736
3738
|
color: #6b7280;
|
|
3737
3739
|
font-size: 18px;
|
|
3738
|
-
padding-right:
|
|
3740
|
+
padding-right: 12px;
|
|
3739
3741
|
font-size: 18px;
|
|
3740
3742
|
padding: 2px 12px 0 0;
|
|
3741
3743
|
}
|
|
@@ -3763,8 +3765,6 @@
|
|
|
3763
3765
|
display: block;
|
|
3764
3766
|
padding: 8px 18px 8px 18px;
|
|
3765
3767
|
text-align: right;
|
|
3766
|
-
background-color: #f9fafb;
|
|
3767
|
-
border-radius: 0 0 6px 6px;
|
|
3768
3768
|
}
|
|
3769
3769
|
|
|
3770
3770
|
.e-quick-popup-wrapper .e-popup-footer .e-event-edit {
|
|
@@ -3988,6 +3988,10 @@
|
|
|
3988
3988
|
padding: 12px 2px 16px;
|
|
3989
3989
|
}
|
|
3990
3990
|
|
|
3991
|
+
.e-bigger .e-agenda-view .e-appointment {
|
|
3992
|
+
padding: 7px 16px;
|
|
3993
|
+
}
|
|
3994
|
+
|
|
3991
3995
|
.e-bigger .e-agenda-view .e-subject {
|
|
3992
3996
|
font-size: 16px;
|
|
3993
3997
|
}
|
|
@@ -4131,6 +4135,7 @@
|
|
|
4131
4135
|
|
|
4132
4136
|
.e-bigger .e-more-popup-wrapper .e-more-event-content,
|
|
4133
4137
|
.e-more-popup-wrapper .e-more-event-content {
|
|
4138
|
+
color: #111827;
|
|
4134
4139
|
height: calc(100% - 35px);
|
|
4135
4140
|
max-height: 150px;
|
|
4136
4141
|
overflow-y: auto;
|
package/styles/tailwind-dark.css
CHANGED
|
@@ -2,203 +2,203 @@
|
|
|
2
2
|
/*! Schedule component's tailwind theme definitions and variables */
|
|
3
3
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
4
4
|
.e-schedule .e-schedule-toolbar .e-icon-prev::before {
|
|
5
|
-
content: '\
|
|
5
|
+
content: '\e765';
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.e-schedule .e-schedule-toolbar .e-icon-next::before {
|
|
9
|
-
content: '\
|
|
9
|
+
content: '\e748';
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
.e-schedule .e-schedule-toolbar .e-icon-add::before {
|
|
13
|
-
content: '\
|
|
13
|
+
content: '\e805';
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
.e-schedule .e-schedule-toolbar .e-icon-today::before {
|
|
17
|
-
content: '\
|
|
17
|
+
content: '\e778';
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
.e-schedule .e-schedule-toolbar .e-icon-down-arrow::before {
|
|
21
|
-
content: '\
|
|
21
|
+
content: '\e729';
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
.e-schedule .e-schedule-toolbar .e-icon-day::before {
|
|
25
|
-
content: '\
|
|
25
|
+
content: '\e75e';
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
.e-schedule .e-schedule-toolbar .e-icon-week::before {
|
|
29
|
-
content: '\
|
|
29
|
+
content: '\e817';
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
.e-schedule .e-schedule-toolbar .e-icon-workweek::before {
|
|
33
|
-
content: '\
|
|
33
|
+
content: '\e817';
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
.e-schedule .e-schedule-toolbar .e-icon-month::before {
|
|
37
|
-
content: '\
|
|
37
|
+
content: '\e7c5';
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
.e-schedule .e-schedule-toolbar .e-icon-month-agenda::before {
|
|
41
|
-
content: '\
|
|
41
|
+
content: '\e75b';
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
.e-schedule .e-schedule-toolbar .e-icon-agenda::before {
|
|
45
|
-
content: '\
|
|
45
|
+
content: '\e74c';
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
.e-schedule .e-schedule-toolbar .e-icon-year::before {
|
|
49
|
-
content: '\
|
|
49
|
+
content: '\e7c5';
|
|
50
50
|
}
|
|
51
51
|
|
|
52
52
|
.e-schedule .e-schedule-toolbar .e-icon-timeline-year-vertical::before {
|
|
53
|
-
content: '\
|
|
53
|
+
content: '\e876';
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
.e-schedule .e-schedule-toolbar .e-icon-timeline-year-horizontal::before {
|
|
57
|
-
content: '\
|
|
57
|
+
content: '\e876';
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
.e-schedule .e-schedule-toolbar .e-icon-timeline-day::before {
|
|
61
|
-
content: '\
|
|
61
|
+
content: '\e7da';
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
.e-schedule .e-schedule-toolbar .e-icon-timeline-week::before {
|
|
65
|
-
content: '\
|
|
65
|
+
content: '\e81f';
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
.e-schedule .e-schedule-toolbar .e-icon-timeline-workweek::before {
|
|
69
|
-
content: '\
|
|
69
|
+
content: '\e720';
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
.e-schedule .e-schedule-toolbar .e-icon-timeline-month::before {
|
|
73
|
-
content: '\
|
|
73
|
+
content: '\e876';
|
|
74
74
|
}
|
|
75
75
|
|
|
76
76
|
.e-schedule .e-schedule-toolbar.e-toolbar .e-popup-down-icon::before {
|
|
77
|
-
content: '\
|
|
77
|
+
content: '\e770';
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
.e-schedule .e-schedule-toolbar.e-toolbar .e-popup-up-icon::before {
|
|
81
|
-
content: '\
|
|
81
|
+
content: '\e770';
|
|
82
82
|
}
|
|
83
83
|
|
|
84
84
|
.e-schedule .e-schedule-toolbar.e-rtl .e-icon-prev::before {
|
|
85
|
-
content: '\
|
|
85
|
+
content: '\e748';
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
.e-schedule .e-schedule-toolbar.e-rtl .e-icon-next::before {
|
|
89
|
-
content: '\
|
|
89
|
+
content: '\e765';
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
.e-schedule .e-schedule-resource-toolbar .e-icon-menu::before {
|
|
93
|
-
content: '\
|
|
93
|
+
content: '\e799';
|
|
94
94
|
}
|
|
95
95
|
|
|
96
96
|
.e-schedule .e-schedule-resource-toolbar .e-icon-next::before {
|
|
97
|
-
content: '\
|
|
97
|
+
content: '\e748';
|
|
98
98
|
}
|
|
99
99
|
|
|
100
100
|
.e-schedule .e-close-icon::before {
|
|
101
|
-
content: '\
|
|
101
|
+
content: '\e7e7';
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
.e-schedule .e-block-indicator::before {
|
|
105
|
-
content: '\
|
|
105
|
+
content: '\e839';
|
|
106
106
|
}
|
|
107
107
|
|
|
108
108
|
.e-schedule .e-appointment .e-recurrence-icon::before {
|
|
109
|
-
content: '\
|
|
109
|
+
content: '\e772';
|
|
110
110
|
}
|
|
111
111
|
|
|
112
112
|
.e-schedule .e-appointment .e-recurrence-edit-icon::before {
|
|
113
|
-
content: '\
|
|
113
|
+
content: '\e789';
|
|
114
114
|
}
|
|
115
115
|
|
|
116
116
|
.e-schedule .e-appointment .e-up-icon::before {
|
|
117
|
-
content: '\
|
|
117
|
+
content: '\e822';
|
|
118
118
|
}
|
|
119
119
|
|
|
120
120
|
.e-schedule .e-appointment .e-down-icon::before {
|
|
121
|
-
content: '\
|
|
121
|
+
content: '\e7fe';
|
|
122
122
|
}
|
|
123
123
|
|
|
124
124
|
.e-schedule .e-appointment .e-left-icon::before {
|
|
125
|
-
content: '\
|
|
125
|
+
content: '\e744';
|
|
126
126
|
}
|
|
127
127
|
|
|
128
128
|
.e-schedule .e-appointment .e-right-icon::before {
|
|
129
|
-
content: '\
|
|
129
|
+
content: '\e7a9';
|
|
130
130
|
}
|
|
131
131
|
|
|
132
132
|
.e-schedule .e-vertical-view .e-all-day-cells .e-all-day-appointment-section::before {
|
|
133
|
-
content: '\
|
|
133
|
+
content: '\e729';
|
|
134
134
|
}
|
|
135
135
|
|
|
136
136
|
.e-schedule.e-rtl .e-appointment .e-left-icon::before {
|
|
137
|
-
content: '\
|
|
137
|
+
content: '\e7a9';
|
|
138
138
|
}
|
|
139
139
|
|
|
140
140
|
.e-schedule.e-rtl .e-appointment .e-right-icon::before {
|
|
141
|
-
content: '\
|
|
141
|
+
content: '\e744';
|
|
142
142
|
}
|
|
143
143
|
|
|
144
144
|
.e-schedule .e-resource-tree-icon::before {
|
|
145
|
-
content: '\
|
|
145
|
+
content: '\e748';
|
|
146
146
|
}
|
|
147
147
|
|
|
148
148
|
.e-schedule-dialog.e-device .e-back-icon::before {
|
|
149
|
-
content: '\
|
|
149
|
+
content: '\e773';
|
|
150
150
|
}
|
|
151
151
|
|
|
152
152
|
.e-schedule-dialog.e-device .e-save-icon::before {
|
|
153
|
-
content: '\
|
|
153
|
+
content: '\e7c8';
|
|
154
154
|
}
|
|
155
155
|
|
|
156
156
|
.e-schedule-dialog.e-device .e-recurrence-container .e-recurrence-edit-button .e-recurrence-edit.e-icons::before {
|
|
157
|
-
content: '\
|
|
157
|
+
content: '\e730';
|
|
158
158
|
}
|
|
159
159
|
|
|
160
160
|
.e-schedule-dialog.e-device.e-rtl .e-back-icon::before {
|
|
161
|
-
content: '\
|
|
161
|
+
content: '\e7f9';
|
|
162
162
|
}
|
|
163
163
|
|
|
164
164
|
.e-quick-popup-wrapper .e-edit-icon::before {
|
|
165
|
-
content: '\
|
|
165
|
+
content: '\e730';
|
|
166
166
|
}
|
|
167
167
|
|
|
168
168
|
.e-quick-popup-wrapper .e-delete-icon::before {
|
|
169
|
-
content: '\
|
|
169
|
+
content: '\e820';
|
|
170
170
|
}
|
|
171
171
|
|
|
172
172
|
.e-quick-popup-wrapper .e-close-icon::before {
|
|
173
|
-
content: '\
|
|
173
|
+
content: '\e7e7';
|
|
174
174
|
}
|
|
175
175
|
|
|
176
176
|
.e-quick-popup-wrapper .e-time-icon::before {
|
|
177
|
-
content: '\
|
|
177
|
+
content: '\e705';
|
|
178
178
|
}
|
|
179
179
|
|
|
180
180
|
.e-quick-popup-wrapper .e-location-icon::before {
|
|
181
|
-
content: '\
|
|
181
|
+
content: '\e756';
|
|
182
182
|
}
|
|
183
183
|
|
|
184
184
|
.e-quick-popup-wrapper .e-time-zone-icon::before {
|
|
185
|
-
content: '\
|
|
185
|
+
content: '\e804';
|
|
186
186
|
}
|
|
187
187
|
|
|
188
188
|
.e-quick-popup-wrapper .e-description-icon::before {
|
|
189
|
-
content: '\
|
|
189
|
+
content: '\e7c0';
|
|
190
190
|
}
|
|
191
191
|
|
|
192
192
|
.e-quick-popup-wrapper .e-resource-icon::before {
|
|
193
|
-
content: '\
|
|
193
|
+
content: '\e7b9';
|
|
194
194
|
}
|
|
195
195
|
|
|
196
196
|
.e-quick-popup-wrapper .e-date-time-icon::before {
|
|
197
|
-
content: '\
|
|
197
|
+
content: '\e7da';
|
|
198
198
|
}
|
|
199
199
|
|
|
200
200
|
.e-more-popup-wrapper.e-device .e-close-icon::before {
|
|
201
|
-
content: '\
|
|
201
|
+
content: '\e7e7';
|
|
202
202
|
}
|
|
203
203
|
|
|
204
204
|
/*! schedule component layout */
|
|
@@ -1854,6 +1854,15 @@
|
|
|
1854
1854
|
text-decoration: underline;
|
|
1855
1855
|
}
|
|
1856
1856
|
|
|
1857
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
|
|
1858
|
+
background-color: #374151;
|
|
1859
|
+
box-shadow: inset 0 0 0 8px #232e3e;
|
|
1860
|
+
}
|
|
1861
|
+
|
|
1862
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
|
|
1863
|
+
background-color: #374151;
|
|
1864
|
+
}
|
|
1865
|
+
|
|
1857
1866
|
.e-schedule .e-timeline-year-view .e-event-table {
|
|
1858
1867
|
position: absolute;
|
|
1859
1868
|
top: 0;
|
|
@@ -2893,13 +2902,6 @@
|
|
|
2893
2902
|
padding: 10px 8px 6px;
|
|
2894
2903
|
}
|
|
2895
2904
|
|
|
2896
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons,
|
|
2897
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-tbtn-txt .e-icons,
|
|
2898
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons,
|
|
2899
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-tbtn-txt .e-icons {
|
|
2900
|
-
padding: 0;
|
|
2901
|
-
}
|
|
2902
|
-
|
|
2903
2905
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
|
|
2904
2906
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-tbtn-txt .e-icons.e-icon-right,
|
|
2905
2907
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
|
|
@@ -3735,7 +3737,7 @@
|
|
|
3735
3737
|
.e-quick-popup-wrapper .e-event-popup .e-resource-icon {
|
|
3736
3738
|
color: #9ca3af;
|
|
3737
3739
|
font-size: 18px;
|
|
3738
|
-
padding-right:
|
|
3740
|
+
padding-right: 12px;
|
|
3739
3741
|
font-size: 18px;
|
|
3740
3742
|
padding: 2px 12px 0 0;
|
|
3741
3743
|
}
|
|
@@ -3763,8 +3765,6 @@
|
|
|
3763
3765
|
display: block;
|
|
3764
3766
|
padding: 8px 18px 8px 18px;
|
|
3765
3767
|
text-align: right;
|
|
3766
|
-
background-color: #232e3e;
|
|
3767
|
-
border-radius: 0 0 6px 6px;
|
|
3768
3768
|
}
|
|
3769
3769
|
|
|
3770
3770
|
.e-quick-popup-wrapper .e-popup-footer .e-event-edit {
|
|
@@ -3988,6 +3988,10 @@
|
|
|
3988
3988
|
padding: 12px 2px 16px;
|
|
3989
3989
|
}
|
|
3990
3990
|
|
|
3991
|
+
.e-bigger .e-agenda-view .e-appointment {
|
|
3992
|
+
padding: 7px 16px;
|
|
3993
|
+
}
|
|
3994
|
+
|
|
3991
3995
|
.e-bigger .e-agenda-view .e-subject {
|
|
3992
3996
|
font-size: 16px;
|
|
3993
3997
|
}
|
|
@@ -4131,6 +4135,7 @@
|
|
|
4131
4135
|
|
|
4132
4136
|
.e-bigger .e-more-popup-wrapper .e-more-event-content,
|
|
4133
4137
|
.e-more-popup-wrapper .e-more-event-content {
|
|
4138
|
+
color: #fff;
|
|
4134
4139
|
height: calc(100% - 35px);
|
|
4135
4140
|
max-height: 150px;
|
|
4136
4141
|
overflow-y: auto;
|