@syncfusion/ej2-schedule 24.2.8 → 25.1.35
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 +8 -0
- package/dist/ej2-schedule.min.js +2 -2
- package/dist/ej2-schedule.umd.min.js +2 -2
- package/dist/ej2-schedule.umd.min.js.map +1 -1
- package/dist/es6/ej2-schedule.es2015.js +54 -8
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +55 -8
- package/dist/es6/ej2-schedule.es5.js.map +1 -1
- package/dist/global/ej2-schedule.min.js +2 -2
- package/dist/global/ej2-schedule.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +16 -16
- package/src/schedule/actions/crud.js +6 -0
- package/src/schedule/actions/keyboard.d.ts +1 -0
- package/src/schedule/actions/keyboard.js +11 -4
- package/src/schedule/base/interface.d.ts +1 -0
- package/src/schedule/base/schedule.d.ts +4 -1
- package/src/schedule/base/schedule.js +16 -1
- package/src/schedule/popups/quick-popups.js +11 -0
- package/src/schedule/renderer/renderer.js +11 -3
- package/styles/bootstrap-dark.css +9 -2
- package/styles/bootstrap.css +9 -2
- package/styles/bootstrap4.css +6 -3
- package/styles/bootstrap5-dark.css +6 -3
- package/styles/bootstrap5.css +6 -3
- package/styles/fabric-dark.css +5 -2
- package/styles/fabric.css +5 -2
- package/styles/fluent-dark.css +10 -2
- package/styles/fluent.css +10 -2
- package/styles/highcontrast-light.css +5 -2
- package/styles/highcontrast.css +5 -2
- package/styles/material-dark.css +5 -2
- package/styles/material.css +5 -2
- package/styles/material3-dark.css +6 -3
- package/styles/material3.css +6 -3
- package/styles/recurrence-editor/_bds-definition.scss +15 -0
- package/styles/schedule/_bds-definition.scss +287 -0
- package/styles/schedule/_bootstrap4-definition.scss +1 -1
- package/styles/schedule/_bootstrap5-definition.scss +1 -1
- package/styles/schedule/_fusionnew-definition.scss +1 -1
- package/styles/schedule/_layout.scss +2 -1
- package/styles/schedule/_material3-definition.scss +1 -1
- package/styles/schedule/_tailwind-definition.scss +1 -1
- package/styles/schedule/bootstrap-dark.css +9 -2
- package/styles/schedule/bootstrap.css +9 -2
- package/styles/schedule/bootstrap4.css +6 -3
- package/styles/schedule/bootstrap5-dark.css +6 -3
- package/styles/schedule/bootstrap5.css +6 -3
- package/styles/schedule/fabric-dark.css +5 -2
- package/styles/schedule/fabric.css +5 -2
- package/styles/schedule/fluent-dark.css +10 -2
- package/styles/schedule/fluent.css +10 -2
- package/styles/schedule/highcontrast-light.css +5 -2
- package/styles/schedule/highcontrast.css +5 -2
- package/styles/schedule/icons/_bds.scss +235 -0
- package/styles/schedule/material-dark.css +5 -2
- package/styles/schedule/material.css +5 -2
- package/styles/schedule/material3-dark.css +6 -3
- package/styles/schedule/material3.css +6 -3
- package/styles/schedule/tailwind-dark.css +6 -3
- package/styles/schedule/tailwind.css +6 -3
- package/styles/tailwind-dark.css +6 -3
- package/styles/tailwind.css +6 -3
|
@@ -164,6 +164,11 @@
|
|
|
164
164
|
border-left-width: 0;
|
|
165
165
|
}
|
|
166
166
|
|
|
167
|
+
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper.e-down-icon .e-clear-icon,
|
|
168
|
+
.e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper.e-down-icon .e-clear-icon {
|
|
169
|
+
margin-top: -1.5em;
|
|
170
|
+
}
|
|
171
|
+
|
|
167
172
|
/*! recurrence editor theme wise definitions*/ /*! Schedule component's bootstrap5 theme definitions and variables */
|
|
168
173
|
.e-schedule .e-schedule-toolbar .e-icon-prev::before {
|
|
169
174
|
content: "\e765";
|
|
@@ -349,6 +354,9 @@
|
|
|
349
354
|
font-size: 14px;
|
|
350
355
|
text-transform: none;
|
|
351
356
|
}
|
|
357
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
358
|
+
height: 38px;
|
|
359
|
+
}
|
|
352
360
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
353
361
|
height: 38px;
|
|
354
362
|
min-height: 38px;
|
|
@@ -2511,8 +2519,8 @@
|
|
|
2511
2519
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2512
2520
|
min-height: 54px;
|
|
2513
2521
|
}
|
|
2514
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2515
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2522
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2523
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2516
2524
|
min-width: 34px;
|
|
2517
2525
|
}
|
|
2518
2526
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
|
@@ -362,6 +362,9 @@
|
|
|
362
362
|
font-size: 14px;
|
|
363
363
|
text-transform: uppercase;
|
|
364
364
|
}
|
|
365
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
366
|
+
height: 43px;
|
|
367
|
+
}
|
|
365
368
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
366
369
|
height: 43px;
|
|
367
370
|
min-height: 43px;
|
|
@@ -2524,8 +2527,8 @@
|
|
|
2524
2527
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2525
2528
|
min-height: 56px;
|
|
2526
2529
|
}
|
|
2527
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2528
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2530
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2531
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2529
2532
|
min-width: 34px;
|
|
2530
2533
|
}
|
|
2531
2534
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
|
@@ -371,6 +371,9 @@
|
|
|
371
371
|
font-size: 14px;
|
|
372
372
|
text-transform: uppercase;
|
|
373
373
|
}
|
|
374
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
375
|
+
height: 43px;
|
|
376
|
+
}
|
|
374
377
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
375
378
|
height: 43px;
|
|
376
379
|
min-height: 43px;
|
|
@@ -2533,8 +2536,8 @@
|
|
|
2533
2536
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2534
2537
|
min-height: 56px;
|
|
2535
2538
|
}
|
|
2536
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2537
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2539
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2540
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2538
2541
|
min-width: 34px;
|
|
2539
2542
|
}
|
|
2540
2543
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
|
@@ -0,0 +1,235 @@
|
|
|
1
|
+
@include export-module('schedule-bds-icons') {
|
|
2
|
+
.e-schedule {
|
|
3
|
+
.e-schedule-toolbar {
|
|
4
|
+
& .e-icon-prev::before {
|
|
5
|
+
content: '\e765';
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
& .e-icon-next::before {
|
|
9
|
+
content: '\e748';
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
& .e-icon-add::before {
|
|
13
|
+
content: '\e805';
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
& .e-icon-today::before {
|
|
17
|
+
content: '\e778';
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
& .e-icon-down-arrow::before {
|
|
21
|
+
content: '\e729';
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
& .e-icon-day::before {
|
|
25
|
+
content: '\e75e';
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
& .e-icon-week::before {
|
|
29
|
+
content: '\e817';
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
& .e-icon-workweek::before {
|
|
33
|
+
content: '\e817';
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
& .e-icon-month::before {
|
|
37
|
+
content: '\e7c5';
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
& .e-icon-month-agenda::before {
|
|
41
|
+
content: '\e75b';
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
& .e-icon-agenda::before {
|
|
45
|
+
content: '\e74c';
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
& .e-icon-year::before {
|
|
49
|
+
content: '\e7c5';
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
& .e-icon-timeline-year-vertical::before {
|
|
53
|
+
content: '\e876';
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
& .e-icon-timeline-year-horizontal::before {
|
|
57
|
+
content: '\e876';
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
& .e-icon-timeline-day::before {
|
|
61
|
+
content: '\e7da';
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
& .e-icon-timeline-week::before {
|
|
65
|
+
content: '\e81f';
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
& .e-icon-timeline-workweek::before {
|
|
69
|
+
content: '\e720';
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
& .e-icon-timeline-month::before {
|
|
73
|
+
content: '\e876';
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
&.e-toolbar {
|
|
77
|
+
.e-popup-down-icon::before {
|
|
78
|
+
content: '\e770';
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.e-popup-up-icon::before {
|
|
82
|
+
content: '\e770';
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
&.e-rtl {
|
|
87
|
+
& .e-icon-prev::before {
|
|
88
|
+
content: '\e748';
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
& .e-icon-next::before {
|
|
92
|
+
content: '\e765';
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.e-schedule-resource-toolbar {
|
|
98
|
+
& .e-icon-menu::before {
|
|
99
|
+
content: '\e799';
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
& .e-icon-next::before {
|
|
103
|
+
content: '\e748';
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.e-close-icon::before {
|
|
108
|
+
content: '\e7e7';
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.e-block-indicator::before {
|
|
112
|
+
content: '\e839';
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.e-appointment {
|
|
116
|
+
.e-recurrence-icon::before {
|
|
117
|
+
content: '\e772';
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.e-recurrence-edit-icon::before {
|
|
121
|
+
content: '\e789';
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.e-up-icon::before {
|
|
125
|
+
content: '\e822';
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.e-down-icon::before {
|
|
129
|
+
content: '\e7fe';
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.e-left-icon::before {
|
|
133
|
+
content: '\e744';
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.e-right-icon::before {
|
|
137
|
+
content: '\e7a9';
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.e-vertical-view .e-all-day-cells {
|
|
142
|
+
.e-all-day-appointment-section::before {
|
|
143
|
+
content: '\e729';
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
&.e-rtl {
|
|
148
|
+
.e-appointment {
|
|
149
|
+
& .e-left-icon::before {
|
|
150
|
+
content: '\e7a9';
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
& .e-right-icon::before {
|
|
154
|
+
content: '\e744';
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.e-resource-tree-icon::before {
|
|
160
|
+
content: '\e748';
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.e-schedule-dialog.e-device {
|
|
165
|
+
.e-back-icon::before {
|
|
166
|
+
content: '\e773';
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.e-save-icon::before {
|
|
170
|
+
content: '\e7c8';
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.e-delete-icon::before {
|
|
174
|
+
content: '\e820';
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.e-recurrence-container {
|
|
178
|
+
.e-recurrence-edit-button {
|
|
179
|
+
.e-recurrence-edit.e-icons::before {
|
|
180
|
+
content: '\e730';
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.e-schedule-dialog.e-device.e-rtl {
|
|
187
|
+
.e-back-icon::before {
|
|
188
|
+
content: '\e7f9';
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.e-quick-popup-wrapper {
|
|
193
|
+
.e-edit-icon::before {
|
|
194
|
+
content: '\e730';
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.e-delete-icon::before {
|
|
198
|
+
content: '\e820';
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.e-close-icon::before {
|
|
202
|
+
content: '\e7e7';
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.e-time-icon::before {
|
|
206
|
+
content: '\e705';
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.e-location-icon::before {
|
|
210
|
+
content: '\e756';
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.e-time-zone-icon::before {
|
|
214
|
+
content: '\e804';
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.e-description-icon::before {
|
|
218
|
+
content: '\e7c0';
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.e-resource-icon::before {
|
|
222
|
+
content: '\e7b9';
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.e-date-time-icon::before {
|
|
226
|
+
content: '\e7da';
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.e-more-popup-wrapper.e-device {
|
|
231
|
+
.e-close-icon::before {
|
|
232
|
+
content: '\e7e7';
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
}
|
|
@@ -306,6 +306,9 @@
|
|
|
306
306
|
font-size: 13px;
|
|
307
307
|
text-transform: uppercase;
|
|
308
308
|
}
|
|
309
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
310
|
+
height: 42px;
|
|
311
|
+
}
|
|
309
312
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
310
313
|
height: 42px;
|
|
311
314
|
min-height: 42px;
|
|
@@ -2468,8 +2471,8 @@
|
|
|
2468
2471
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2469
2472
|
min-height: 56px;
|
|
2470
2473
|
}
|
|
2471
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2472
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2474
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2475
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2473
2476
|
min-width: 34px;
|
|
2474
2477
|
}
|
|
2475
2478
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
|
@@ -342,6 +342,9 @@
|
|
|
342
342
|
font-size: 13px;
|
|
343
343
|
text-transform: uppercase;
|
|
344
344
|
}
|
|
345
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
346
|
+
height: 42px;
|
|
347
|
+
}
|
|
345
348
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
346
349
|
height: 42px;
|
|
347
350
|
min-height: 42px;
|
|
@@ -2504,8 +2507,8 @@
|
|
|
2504
2507
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2505
2508
|
min-height: 56px;
|
|
2506
2509
|
}
|
|
2507
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2508
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2510
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2511
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2509
2512
|
min-width: 34px;
|
|
2510
2513
|
}
|
|
2511
2514
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
|
@@ -400,6 +400,9 @@
|
|
|
400
400
|
font-size: 14px;
|
|
401
401
|
text-transform: none;
|
|
402
402
|
}
|
|
403
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
404
|
+
height: 48px;
|
|
405
|
+
}
|
|
403
406
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
404
407
|
height: 48px;
|
|
405
408
|
min-height: 48px;
|
|
@@ -1357,7 +1360,7 @@
|
|
|
1357
1360
|
cursor: default;
|
|
1358
1361
|
font-weight: normal;
|
|
1359
1362
|
height: 34px;
|
|
1360
|
-
padding:
|
|
1363
|
+
padding: 3px;
|
|
1361
1364
|
}
|
|
1362
1365
|
.e-schedule .e-month-view .e-content-table {
|
|
1363
1366
|
height: 100%;
|
|
@@ -2571,8 +2574,8 @@
|
|
|
2571
2574
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2572
2575
|
min-height: 56px;
|
|
2573
2576
|
}
|
|
2574
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2575
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2577
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2578
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2576
2579
|
min-width: 32px;
|
|
2577
2580
|
}
|
|
2578
2581
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
|
@@ -456,6 +456,9 @@
|
|
|
456
456
|
font-size: 14px;
|
|
457
457
|
text-transform: none;
|
|
458
458
|
}
|
|
459
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
460
|
+
height: 48px;
|
|
461
|
+
}
|
|
459
462
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
460
463
|
height: 48px;
|
|
461
464
|
min-height: 48px;
|
|
@@ -1413,7 +1416,7 @@
|
|
|
1413
1416
|
cursor: default;
|
|
1414
1417
|
font-weight: normal;
|
|
1415
1418
|
height: 34px;
|
|
1416
|
-
padding:
|
|
1419
|
+
padding: 3px;
|
|
1417
1420
|
}
|
|
1418
1421
|
.e-schedule .e-month-view .e-content-table {
|
|
1419
1422
|
height: 100%;
|
|
@@ -2627,8 +2630,8 @@
|
|
|
2627
2630
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2628
2631
|
min-height: 56px;
|
|
2629
2632
|
}
|
|
2630
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2631
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2633
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2634
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2632
2635
|
min-width: 32px;
|
|
2633
2636
|
}
|
|
2634
2637
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
|
@@ -313,6 +313,9 @@
|
|
|
313
313
|
font-size: 14px;
|
|
314
314
|
text-transform: none;
|
|
315
315
|
}
|
|
316
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
317
|
+
height: 38px;
|
|
318
|
+
}
|
|
316
319
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
317
320
|
height: 38px;
|
|
318
321
|
min-height: 38px;
|
|
@@ -1261,7 +1264,7 @@
|
|
|
1261
1264
|
cursor: default;
|
|
1262
1265
|
font-weight: normal;
|
|
1263
1266
|
height: 34px;
|
|
1264
|
-
padding:
|
|
1267
|
+
padding: 3px;
|
|
1265
1268
|
}
|
|
1266
1269
|
.e-schedule .e-month-view .e-content-table {
|
|
1267
1270
|
height: 100%;
|
|
@@ -2475,8 +2478,8 @@
|
|
|
2475
2478
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2476
2479
|
min-height: 54px;
|
|
2477
2480
|
}
|
|
2478
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2479
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2481
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2482
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2480
2483
|
min-width: 34px;
|
|
2481
2484
|
}
|
|
2482
2485
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
|
@@ -313,6 +313,9 @@
|
|
|
313
313
|
font-size: 14px;
|
|
314
314
|
text-transform: none;
|
|
315
315
|
}
|
|
316
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
317
|
+
height: 38px;
|
|
318
|
+
}
|
|
316
319
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
317
320
|
height: 38px;
|
|
318
321
|
min-height: 38px;
|
|
@@ -1261,7 +1264,7 @@
|
|
|
1261
1264
|
cursor: default;
|
|
1262
1265
|
font-weight: normal;
|
|
1263
1266
|
height: 34px;
|
|
1264
|
-
padding:
|
|
1267
|
+
padding: 3px;
|
|
1265
1268
|
}
|
|
1266
1269
|
.e-schedule .e-month-view .e-content-table {
|
|
1267
1270
|
height: 100%;
|
|
@@ -2475,8 +2478,8 @@
|
|
|
2475
2478
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2476
2479
|
min-height: 54px;
|
|
2477
2480
|
}
|
|
2478
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2479
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2481
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2482
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2480
2483
|
min-width: 34px;
|
|
2481
2484
|
}
|
|
2482
2485
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
package/styles/tailwind-dark.css
CHANGED
|
@@ -313,6 +313,9 @@
|
|
|
313
313
|
font-size: 14px;
|
|
314
314
|
text-transform: none;
|
|
315
315
|
}
|
|
316
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
317
|
+
height: 38px;
|
|
318
|
+
}
|
|
316
319
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
317
320
|
height: 38px;
|
|
318
321
|
min-height: 38px;
|
|
@@ -1261,7 +1264,7 @@
|
|
|
1261
1264
|
cursor: default;
|
|
1262
1265
|
font-weight: normal;
|
|
1263
1266
|
height: 34px;
|
|
1264
|
-
padding:
|
|
1267
|
+
padding: 3px;
|
|
1265
1268
|
}
|
|
1266
1269
|
.e-schedule .e-month-view .e-content-table {
|
|
1267
1270
|
height: 100%;
|
|
@@ -2475,8 +2478,8 @@
|
|
|
2475
2478
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2476
2479
|
min-height: 54px;
|
|
2477
2480
|
}
|
|
2478
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2479
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2481
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2482
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2480
2483
|
min-width: 34px;
|
|
2481
2484
|
}
|
|
2482
2485
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
package/styles/tailwind.css
CHANGED
|
@@ -313,6 +313,9 @@
|
|
|
313
313
|
font-size: 14px;
|
|
314
314
|
text-transform: none;
|
|
315
315
|
}
|
|
316
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
317
|
+
height: 38px;
|
|
318
|
+
}
|
|
316
319
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
317
320
|
height: 38px;
|
|
318
321
|
min-height: 38px;
|
|
@@ -1261,7 +1264,7 @@
|
|
|
1261
1264
|
cursor: default;
|
|
1262
1265
|
font-weight: normal;
|
|
1263
1266
|
height: 34px;
|
|
1264
|
-
padding:
|
|
1267
|
+
padding: 3px;
|
|
1265
1268
|
}
|
|
1266
1269
|
.e-schedule .e-month-view .e-content-table {
|
|
1267
1270
|
height: 100%;
|
|
@@ -2475,8 +2478,8 @@
|
|
|
2475
2478
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2476
2479
|
min-height: 54px;
|
|
2477
2480
|
}
|
|
2478
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2479
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2481
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2482
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2480
2483
|
min-width: 34px;
|
|
2481
2484
|
}
|
|
2482
2485
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|