@syncfusion/ej2-schedule 25.2.7 → 26.1.38
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/.eslintrc.json +3 -2
- 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 +436 -376
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +496 -450
- 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 +17 -16
- package/src/recurrence-editor/date-generator.js +1 -0
- package/src/recurrence-editor/recurrence-editor.d.ts +8 -8
- package/src/recurrence-editor/recurrence-editor.js +1 -2
- package/src/schedule/actions/crud.js +3 -1
- package/src/schedule/actions/drag.js +2 -1
- package/src/schedule/actions/keyboard.js +1 -1
- package/src/schedule/actions/resize.js +5 -0
- package/src/schedule/actions/virtual-scroll.js +2 -1
- package/src/schedule/base/interface.js +0 -1
- package/src/schedule/base/schedule-model.d.ts +11 -11
- package/src/schedule/base/schedule.d.ts +11 -11
- package/src/schedule/base/schedule.js +28 -12
- package/src/schedule/base/util.js +1 -1
- package/src/schedule/event-renderer/agenda-base.js +2 -2
- package/src/schedule/event-renderer/event-base.js +6 -4
- package/src/schedule/event-renderer/month.js +2 -1
- package/src/schedule/event-renderer/timeline-view.js +10 -3
- package/src/schedule/event-renderer/vertical-view.js +4 -4
- package/src/schedule/event-renderer/year.js +3 -2
- package/src/schedule/exports/calendar-import.js +1 -2
- package/src/schedule/exports/print.js +10 -7
- package/src/schedule/models/toolbar-model.d.ts +2 -2
- package/src/schedule/popups/event-window.js +1 -1
- package/src/schedule/popups/quick-popups.js +1 -1
- package/src/schedule/renderer/header-renderer.js +7 -5
- package/src/schedule/renderer/month.js +5 -4
- package/src/schedule/renderer/renderer.js +8 -2
- package/src/schedule/renderer/timeline-year.js +3 -3
- package/src/schedule/renderer/vertical-view.d.ts +1 -0
- package/src/schedule/renderer/vertical-view.js +24 -9
- package/src/schedule/renderer/view-base.d.ts +1 -0
- package/src/schedule/renderer/view-base.js +33 -6
- package/src/schedule/renderer/year.js +1 -1
- package/styles/bootstrap-dark.css +236 -147
- package/styles/bootstrap-dark.scss +19 -2
- package/styles/bootstrap.css +237 -148
- package/styles/bootstrap.scss +19 -2
- package/styles/bootstrap4.css +239 -153
- package/styles/bootstrap4.scss +19 -2
- package/styles/bootstrap5-dark.css +229 -144
- package/styles/bootstrap5-dark.scss +19 -2
- package/styles/bootstrap5.css +229 -144
- package/styles/bootstrap5.scss +19 -2
- package/styles/fabric-dark.css +234 -146
- package/styles/fabric-dark.scss +19 -2
- package/styles/fabric.css +234 -146
- package/styles/fabric.scss +19 -2
- package/styles/fluent-dark.css +229 -142
- package/styles/fluent-dark.scss +19 -2
- package/styles/fluent.css +229 -142
- package/styles/fluent.scss +19 -2
- package/styles/fluent2.css +5947 -0
- package/styles/fluent2.scss +19 -0
- package/styles/highcontrast-light.css +229 -138
- package/styles/highcontrast-light.scss +19 -2
- package/styles/highcontrast.css +229 -138
- package/styles/highcontrast.scss +19 -2
- package/styles/material-dark.css +273 -155
- package/styles/material-dark.scss +19 -2
- package/styles/material.css +285 -156
- package/styles/material.scss +19 -2
- package/styles/material3-dark.css +278 -154
- package/styles/material3-dark.scss +19 -2
- package/styles/material3.css +278 -154
- package/styles/material3.scss +19 -2
- package/styles/recurrence-editor/_bds-definition.scss +0 -1
- package/styles/recurrence-editor/_bootstrap-dark-definition.scss +0 -1
- package/styles/recurrence-editor/_bootstrap-definition.scss +0 -1
- package/styles/recurrence-editor/_bootstrap4-definition.scss +0 -1
- package/styles/recurrence-editor/_bootstrap5-definition.scss +0 -1
- package/styles/recurrence-editor/_bootstrap5.3-definition.scss +14 -0
- package/styles/recurrence-editor/_fabric-dark-definition.scss +0 -1
- package/styles/recurrence-editor/_fabric-definition.scss +0 -1
- package/styles/recurrence-editor/_fluent-definition.scss +0 -1
- package/styles/recurrence-editor/_fluent2-definition.scss +14 -0
- package/styles/recurrence-editor/_fusionnew-definition.scss +0 -1
- package/styles/recurrence-editor/_highcontrast-definition.scss +0 -1
- package/styles/recurrence-editor/_highcontrast-light-definition.scss +0 -1
- package/styles/recurrence-editor/_layout.scss +1 -17
- package/styles/recurrence-editor/_material-dark-definition.scss +0 -1
- package/styles/recurrence-editor/_material-definition.scss +0 -1
- package/styles/recurrence-editor/_material3-definition.scss +0 -1
- package/styles/recurrence-editor/_tailwind-definition.scss +0 -1
- package/styles/recurrence-editor/bootstrap-dark.css +21 -23
- package/styles/recurrence-editor/bootstrap.css +21 -23
- package/styles/recurrence-editor/bootstrap4.css +22 -23
- package/styles/recurrence-editor/bootstrap5-dark.css +22 -23
- package/styles/recurrence-editor/bootstrap5.css +22 -23
- package/styles/recurrence-editor/fabric-dark.css +19 -22
- package/styles/recurrence-editor/fabric.css +19 -22
- package/styles/recurrence-editor/fluent-dark.css +22 -23
- package/styles/recurrence-editor/fluent.css +22 -23
- package/styles/recurrence-editor/fluent2.css +1534 -0
- package/styles/recurrence-editor/fluent2.scss +8 -0
- package/styles/recurrence-editor/highcontrast-light.css +19 -22
- package/styles/recurrence-editor/highcontrast.css +19 -22
- package/styles/recurrence-editor/material-dark.css +32 -26
- package/styles/recurrence-editor/material.css +32 -26
- package/styles/recurrence-editor/material3-dark.css +33 -27
- package/styles/recurrence-editor/material3.css +33 -27
- package/styles/recurrence-editor/tailwind-dark.css +32 -26
- package/styles/recurrence-editor/tailwind.css +32 -26
- package/styles/schedule/_bds-definition.scss +0 -15
- package/styles/schedule/_bootstrap-dark-definition.scss +4 -19
- package/styles/schedule/_bootstrap-definition.scss +4 -19
- package/styles/schedule/_bootstrap4-definition.scss +3 -18
- package/styles/schedule/_bootstrap5-definition.scss +1 -22
- package/styles/schedule/_bootstrap5.3-definition.scss +273 -0
- package/styles/schedule/_fabric-dark-definition.scss +4 -17
- package/styles/schedule/_fabric-definition.scss +4 -19
- package/styles/schedule/_fluent-definition.scss +0 -14
- package/styles/schedule/_fluent2-definition.scss +273 -0
- package/styles/schedule/_fusionnew-definition.scss +0 -21
- package/styles/schedule/_highcontrast-definition.scss +1 -16
- package/styles/schedule/_highcontrast-light-definition.scss +1 -16
- package/styles/schedule/_layout.scss +83 -130
- package/styles/schedule/_material-dark-definition.scss +5 -20
- package/styles/schedule/_material-definition.scss +4 -19
- package/styles/schedule/_material3-definition.scss +1 -23
- package/styles/schedule/_tailwind-definition.scss +0 -16
- package/styles/schedule/_theme.scss +18 -2
- package/styles/schedule/bootstrap-dark.css +220 -126
- package/styles/schedule/bootstrap.css +221 -127
- package/styles/schedule/bootstrap4.css +223 -132
- package/styles/schedule/bootstrap5-dark.css +213 -123
- package/styles/schedule/bootstrap5.css +213 -123
- package/styles/schedule/fabric-dark.css +218 -125
- package/styles/schedule/fabric.css +218 -125
- package/styles/schedule/fluent-dark.css +213 -121
- package/styles/schedule/fluent.css +213 -121
- package/styles/schedule/fluent2.css +5551 -0
- package/styles/schedule/fluent2.scss +16 -0
- package/styles/schedule/highcontrast-light.css +213 -117
- package/styles/schedule/highcontrast.css +213 -117
- package/styles/schedule/icons/_bds.scss +6 -21
- package/styles/schedule/icons/_bootstrap-dark.scss +4 -16
- package/styles/schedule/icons/_bootstrap.scss +4 -16
- package/styles/schedule/icons/_bootstrap4.scss +8 -26
- package/styles/schedule/icons/_bootstrap5.3.scss +220 -0
- package/styles/schedule/icons/_bootstrap5.scss +7 -22
- package/styles/schedule/icons/_fabric-dark.scss +5 -17
- package/styles/schedule/icons/_fabric.scss +5 -17
- package/styles/schedule/icons/_fluent.scss +7 -22
- package/styles/schedule/icons/_fluent2.scss +220 -0
- package/styles/schedule/icons/_fusionnew.scss +7 -22
- package/styles/schedule/icons/_highcontrast-light.scss +5 -17
- package/styles/schedule/icons/_highcontrast.scss +5 -17
- package/styles/schedule/icons/_material-dark.scss +5 -17
- package/styles/schedule/icons/_material.scss +5 -17
- package/styles/schedule/icons/_material3.scss +7 -22
- package/styles/schedule/icons/_tailwind.scss +7 -22
- package/styles/schedule/material-dark.css +257 -134
- package/styles/schedule/material.css +269 -135
- package/styles/schedule/material3-dark.css +262 -133
- package/styles/schedule/material3.css +262 -133
- package/styles/schedule/tailwind-dark.css +223 -124
- package/styles/schedule/tailwind.css +223 -124
- package/styles/tailwind-dark.css +239 -145
- package/styles/tailwind-dark.scss +19 -2
- package/styles/tailwind.css +239 -145
- package/styles/tailwind.scss +19 -2
- package/CHANGELOG.md +0 -1932
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
--color-sf-on-warning: 99, 52, 0;
|
|
101
101
|
--color-sf-on-warning-container: 255, 220, 193;
|
|
102
102
|
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
103
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #
|
|
103
|
+
--color-sf-shadow-focus-ring1: 0 0 0 1px #000, 0 0 0 3px #fff;
|
|
104
104
|
--color-sf-success-text: 0, 0, 0;
|
|
105
105
|
--color-sf-warning-text: 0, 0, 0;
|
|
106
106
|
--color-sf-info-text: 0, 0, 0;
|
|
@@ -110,13 +110,21 @@
|
|
|
110
110
|
}
|
|
111
111
|
|
|
112
112
|
.e-ddl.e-control-wrapper .e-ddl-icon::before {
|
|
113
|
-
transform: rotate(0deg);
|
|
113
|
+
-webkit-transform: rotate(0deg);
|
|
114
|
+
transform: rotate(0deg);
|
|
115
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
116
|
+
transition: -webkit-transform 300ms ease;
|
|
114
117
|
transition: transform 300ms ease;
|
|
118
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
115
119
|
}
|
|
116
120
|
|
|
117
121
|
.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
|
|
118
|
-
transform: rotate(180deg);
|
|
122
|
+
-webkit-transform: rotate(180deg);
|
|
123
|
+
transform: rotate(180deg);
|
|
124
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
125
|
+
transition: -webkit-transform 300ms ease;
|
|
119
126
|
transition: transform 300ms ease;
|
|
127
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
120
128
|
}
|
|
121
129
|
|
|
122
130
|
.e-dropdownbase .e-list-item.e-active.e-hover {
|
|
@@ -133,12 +141,14 @@
|
|
|
133
141
|
}
|
|
134
142
|
|
|
135
143
|
.e-input-group .e-ddl-icon:not(:active)::after {
|
|
136
|
-
animation: none;
|
|
144
|
+
-webkit-animation: none;
|
|
145
|
+
animation: none;
|
|
137
146
|
}
|
|
138
147
|
|
|
139
148
|
.e-ddl.e-popup {
|
|
140
149
|
border: 0;
|
|
141
|
-
box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
150
|
+
-webkit-box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
151
|
+
box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
142
152
|
margin-top: 2px;
|
|
143
153
|
}
|
|
144
154
|
|
|
@@ -159,7 +169,8 @@
|
|
|
159
169
|
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
160
170
|
background: rgba(0, 0, 0, 0.0001);
|
|
161
171
|
border-width: 0;
|
|
162
|
-
box-shadow: none;
|
|
172
|
+
-webkit-box-shadow: none;
|
|
173
|
+
box-shadow: none;
|
|
163
174
|
margin-bottom: 0;
|
|
164
175
|
}
|
|
165
176
|
|
|
@@ -250,13 +261,14 @@
|
|
|
250
261
|
padding: 4px 8px;
|
|
251
262
|
}
|
|
252
263
|
|
|
253
|
-
/*! recurrence editor theme wise definitions*/
|
|
254
|
-
/*! Recurrence-Editor component layout */
|
|
255
264
|
.e-recurrenceeditor .e-editor {
|
|
265
|
+
display: -webkit-box;
|
|
256
266
|
display: -ms-flexbox;
|
|
257
267
|
display: flex;
|
|
258
|
-
-
|
|
259
|
-
|
|
268
|
+
-webkit-box-orient: horizontal;
|
|
269
|
+
-webkit-box-direction: normal;
|
|
270
|
+
-ms-flex-flow: row wrap;
|
|
271
|
+
flex-flow: row wrap;
|
|
260
272
|
margin: 0 auto;
|
|
261
273
|
max-width: 1240px;
|
|
262
274
|
}
|
|
@@ -356,8 +368,10 @@
|
|
|
356
368
|
}
|
|
357
369
|
.e-recurrenceeditor .e-days button {
|
|
358
370
|
border-radius: 50%;
|
|
359
|
-
-
|
|
360
|
-
|
|
371
|
+
-webkit-box-orient: horizontal;
|
|
372
|
+
-webkit-box-direction: normal;
|
|
373
|
+
-ms-flex-flow: row wrap;
|
|
374
|
+
flex-flow: row wrap;
|
|
361
375
|
height: 35px;
|
|
362
376
|
margin: 0 8px 10px;
|
|
363
377
|
width: 35px;
|
|
@@ -416,13 +430,6 @@
|
|
|
416
430
|
.e-bigger .e-recurrenceeditor .e-form-left {
|
|
417
431
|
padding: 0 12px 14px 0;
|
|
418
432
|
}
|
|
419
|
-
.e-bigger .e-recurrenceeditor .e-form-right,
|
|
420
|
-
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
421
|
-
padding: 0 0 10px;
|
|
422
|
-
}
|
|
423
|
-
.e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
|
|
424
|
-
padding-bottom: 6px;
|
|
425
|
-
}
|
|
426
433
|
.e-bigger .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
427
434
|
padding-left: 70px;
|
|
428
435
|
}
|
|
@@ -449,16 +456,12 @@
|
|
|
449
456
|
font-size: 12px;
|
|
450
457
|
margin-bottom: 8px;
|
|
451
458
|
}
|
|
452
|
-
.e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-non-week .e-form-left {
|
|
453
|
-
padding-bottom: 12px;
|
|
454
|
-
}
|
|
455
459
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
456
460
|
font-size: 12px;
|
|
457
461
|
margin-bottom: 1px;
|
|
458
462
|
}
|
|
459
463
|
.e-bigger .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper,
|
|
460
|
-
.e-bigger .e-recurrenceeditor .e-year-expander
|
|
461
|
-
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
464
|
+
.e-bigger .e-recurrenceeditor .e-year-expander {
|
|
462
465
|
margin-bottom: 11px;
|
|
463
466
|
}
|
|
464
467
|
.e-bigger .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
@@ -570,7 +573,8 @@
|
|
|
570
573
|
}
|
|
571
574
|
.e-device.e-recurrence-dialog .e-dlg-header-content {
|
|
572
575
|
background: none;
|
|
573
|
-
box-shadow: none;
|
|
576
|
+
-webkit-box-shadow: none;
|
|
577
|
+
box-shadow: none;
|
|
574
578
|
padding-bottom: 10px;
|
|
575
579
|
}
|
|
576
580
|
.e-device.e-recurrence-dialog .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
@@ -595,8 +599,10 @@
|
|
|
595
599
|
width: 100%;
|
|
596
600
|
}
|
|
597
601
|
.e-recurrenceeditor .e-editor {
|
|
598
|
-
-
|
|
599
|
-
|
|
602
|
+
-webkit-box-orient: vertical;
|
|
603
|
+
-webkit-box-direction: normal;
|
|
604
|
+
-ms-flex-direction: column;
|
|
605
|
+
flex-direction: column;
|
|
600
606
|
}
|
|
601
607
|
.e-recurrenceeditor .e-editor > .e-input-wrapper.e-form-left {
|
|
602
608
|
margin-top: 0;
|
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
.e-ddl.e-control-wrapper .e-ddl-icon::before {
|
|
2
|
-
transform: rotate(0deg);
|
|
2
|
+
-webkit-transform: rotate(0deg);
|
|
3
|
+
transform: rotate(0deg);
|
|
4
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
5
|
+
transition: -webkit-transform 300ms ease;
|
|
3
6
|
transition: transform 300ms ease;
|
|
7
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
4
8
|
}
|
|
5
9
|
|
|
6
10
|
.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
|
|
7
|
-
transform: rotate(180deg);
|
|
11
|
+
-webkit-transform: rotate(180deg);
|
|
12
|
+
transform: rotate(180deg);
|
|
13
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
14
|
+
transition: -webkit-transform 300ms ease;
|
|
8
15
|
transition: transform 300ms ease;
|
|
16
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
9
17
|
}
|
|
10
18
|
|
|
11
19
|
.e-dropdownbase .e-list-item.e-active.e-hover {
|
|
@@ -22,13 +30,15 @@
|
|
|
22
30
|
}
|
|
23
31
|
|
|
24
32
|
.e-input-group .e-ddl-icon:not(:active)::after {
|
|
25
|
-
animation: none;
|
|
33
|
+
-webkit-animation: none;
|
|
34
|
+
animation: none;
|
|
26
35
|
}
|
|
27
36
|
|
|
28
37
|
.e-ddl.e-popup {
|
|
29
38
|
border: 0;
|
|
30
39
|
border-radius: 4px;
|
|
31
|
-
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
40
|
+
-webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
41
|
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
32
42
|
margin-top: 4px;
|
|
33
43
|
}
|
|
34
44
|
|
|
@@ -67,7 +77,8 @@
|
|
|
67
77
|
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
68
78
|
background: #374151;
|
|
69
79
|
border-width: 0;
|
|
70
|
-
box-shadow: none;
|
|
80
|
+
-webkit-box-shadow: none;
|
|
81
|
+
box-shadow: none;
|
|
71
82
|
margin-bottom: 0;
|
|
72
83
|
}
|
|
73
84
|
|
|
@@ -92,13 +103,14 @@
|
|
|
92
103
|
padding: 4px 8px;
|
|
93
104
|
}
|
|
94
105
|
|
|
95
|
-
/*! recurrence editor theme wise definitions*/
|
|
96
|
-
/*! Recurrence-Editor component layout */
|
|
97
106
|
.e-recurrenceeditor .e-editor {
|
|
107
|
+
display: -webkit-box;
|
|
98
108
|
display: -ms-flexbox;
|
|
99
109
|
display: flex;
|
|
100
|
-
-
|
|
101
|
-
|
|
110
|
+
-webkit-box-orient: horizontal;
|
|
111
|
+
-webkit-box-direction: normal;
|
|
112
|
+
-ms-flex-flow: row wrap;
|
|
113
|
+
flex-flow: row wrap;
|
|
102
114
|
margin: 0 auto;
|
|
103
115
|
max-width: 1240px;
|
|
104
116
|
}
|
|
@@ -198,8 +210,10 @@
|
|
|
198
210
|
}
|
|
199
211
|
.e-recurrenceeditor .e-days button {
|
|
200
212
|
border-radius: 50%;
|
|
201
|
-
-
|
|
202
|
-
|
|
213
|
+
-webkit-box-orient: horizontal;
|
|
214
|
+
-webkit-box-direction: normal;
|
|
215
|
+
-ms-flex-flow: row wrap;
|
|
216
|
+
flex-flow: row wrap;
|
|
203
217
|
height: 35px;
|
|
204
218
|
margin: 0 8px 10px;
|
|
205
219
|
width: 35px;
|
|
@@ -258,13 +272,6 @@
|
|
|
258
272
|
.e-bigger .e-recurrenceeditor .e-form-left {
|
|
259
273
|
padding: 0 12px 14px 0;
|
|
260
274
|
}
|
|
261
|
-
.e-bigger .e-recurrenceeditor .e-form-right,
|
|
262
|
-
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
263
|
-
padding: 0 0 10px;
|
|
264
|
-
}
|
|
265
|
-
.e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
|
|
266
|
-
padding-bottom: 6px;
|
|
267
|
-
}
|
|
268
275
|
.e-bigger .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
269
276
|
padding-left: 70px;
|
|
270
277
|
}
|
|
@@ -291,16 +298,12 @@
|
|
|
291
298
|
font-size: 16px;
|
|
292
299
|
margin-bottom: 8px;
|
|
293
300
|
}
|
|
294
|
-
.e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-non-week .e-form-left {
|
|
295
|
-
padding-bottom: 12px;
|
|
296
|
-
}
|
|
297
301
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
298
302
|
font-size: 16px;
|
|
299
303
|
margin-bottom: 1px;
|
|
300
304
|
}
|
|
301
305
|
.e-bigger .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper,
|
|
302
|
-
.e-bigger .e-recurrenceeditor .e-year-expander
|
|
303
|
-
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
306
|
+
.e-bigger .e-recurrenceeditor .e-year-expander {
|
|
304
307
|
margin-bottom: 11px;
|
|
305
308
|
}
|
|
306
309
|
.e-bigger .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
@@ -412,7 +415,8 @@
|
|
|
412
415
|
}
|
|
413
416
|
.e-device.e-recurrence-dialog .e-dlg-header-content {
|
|
414
417
|
background: none;
|
|
415
|
-
box-shadow: none;
|
|
418
|
+
-webkit-box-shadow: none;
|
|
419
|
+
box-shadow: none;
|
|
416
420
|
padding-bottom: 10px;
|
|
417
421
|
}
|
|
418
422
|
.e-device.e-recurrence-dialog .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
@@ -437,8 +441,10 @@
|
|
|
437
441
|
width: 100%;
|
|
438
442
|
}
|
|
439
443
|
.e-recurrenceeditor .e-editor {
|
|
440
|
-
-
|
|
441
|
-
|
|
444
|
+
-webkit-box-orient: vertical;
|
|
445
|
+
-webkit-box-direction: normal;
|
|
446
|
+
-ms-flex-direction: column;
|
|
447
|
+
flex-direction: column;
|
|
442
448
|
}
|
|
443
449
|
.e-recurrenceeditor .e-editor > .e-input-wrapper.e-form-left {
|
|
444
450
|
margin-top: 0;
|
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
.e-ddl.e-control-wrapper .e-ddl-icon::before {
|
|
2
|
-
transform: rotate(0deg);
|
|
2
|
+
-webkit-transform: rotate(0deg);
|
|
3
|
+
transform: rotate(0deg);
|
|
4
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
5
|
+
transition: -webkit-transform 300ms ease;
|
|
3
6
|
transition: transform 300ms ease;
|
|
7
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
4
8
|
}
|
|
5
9
|
|
|
6
10
|
.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
|
|
7
|
-
transform: rotate(180deg);
|
|
11
|
+
-webkit-transform: rotate(180deg);
|
|
12
|
+
transform: rotate(180deg);
|
|
13
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
14
|
+
transition: -webkit-transform 300ms ease;
|
|
8
15
|
transition: transform 300ms ease;
|
|
16
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
9
17
|
}
|
|
10
18
|
|
|
11
19
|
.e-dropdownbase .e-list-item.e-active.e-hover {
|
|
@@ -22,13 +30,15 @@
|
|
|
22
30
|
}
|
|
23
31
|
|
|
24
32
|
.e-input-group .e-ddl-icon:not(:active)::after {
|
|
25
|
-
animation: none;
|
|
33
|
+
-webkit-animation: none;
|
|
34
|
+
animation: none;
|
|
26
35
|
}
|
|
27
36
|
|
|
28
37
|
.e-ddl.e-popup {
|
|
29
38
|
border: 0;
|
|
30
39
|
border-radius: 4px;
|
|
31
|
-
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
40
|
+
-webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
41
|
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
32
42
|
margin-top: 4px;
|
|
33
43
|
}
|
|
34
44
|
|
|
@@ -67,7 +77,8 @@
|
|
|
67
77
|
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
68
78
|
background: #fff;
|
|
69
79
|
border-width: 0;
|
|
70
|
-
box-shadow: none;
|
|
80
|
+
-webkit-box-shadow: none;
|
|
81
|
+
box-shadow: none;
|
|
71
82
|
margin-bottom: 0;
|
|
72
83
|
}
|
|
73
84
|
|
|
@@ -92,13 +103,14 @@
|
|
|
92
103
|
padding: 4px 8px;
|
|
93
104
|
}
|
|
94
105
|
|
|
95
|
-
/*! recurrence editor theme wise definitions*/
|
|
96
|
-
/*! Recurrence-Editor component layout */
|
|
97
106
|
.e-recurrenceeditor .e-editor {
|
|
107
|
+
display: -webkit-box;
|
|
98
108
|
display: -ms-flexbox;
|
|
99
109
|
display: flex;
|
|
100
|
-
-
|
|
101
|
-
|
|
110
|
+
-webkit-box-orient: horizontal;
|
|
111
|
+
-webkit-box-direction: normal;
|
|
112
|
+
-ms-flex-flow: row wrap;
|
|
113
|
+
flex-flow: row wrap;
|
|
102
114
|
margin: 0 auto;
|
|
103
115
|
max-width: 1240px;
|
|
104
116
|
}
|
|
@@ -198,8 +210,10 @@
|
|
|
198
210
|
}
|
|
199
211
|
.e-recurrenceeditor .e-days button {
|
|
200
212
|
border-radius: 50%;
|
|
201
|
-
-
|
|
202
|
-
|
|
213
|
+
-webkit-box-orient: horizontal;
|
|
214
|
+
-webkit-box-direction: normal;
|
|
215
|
+
-ms-flex-flow: row wrap;
|
|
216
|
+
flex-flow: row wrap;
|
|
203
217
|
height: 35px;
|
|
204
218
|
margin: 0 8px 10px;
|
|
205
219
|
width: 35px;
|
|
@@ -258,13 +272,6 @@
|
|
|
258
272
|
.e-bigger .e-recurrenceeditor .e-form-left {
|
|
259
273
|
padding: 0 12px 14px 0;
|
|
260
274
|
}
|
|
261
|
-
.e-bigger .e-recurrenceeditor .e-form-right,
|
|
262
|
-
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
263
|
-
padding: 0 0 10px;
|
|
264
|
-
}
|
|
265
|
-
.e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
|
|
266
|
-
padding-bottom: 6px;
|
|
267
|
-
}
|
|
268
275
|
.e-bigger .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
269
276
|
padding-left: 70px;
|
|
270
277
|
}
|
|
@@ -291,16 +298,12 @@
|
|
|
291
298
|
font-size: 16px;
|
|
292
299
|
margin-bottom: 8px;
|
|
293
300
|
}
|
|
294
|
-
.e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-non-week .e-form-left {
|
|
295
|
-
padding-bottom: 12px;
|
|
296
|
-
}
|
|
297
301
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
298
302
|
font-size: 16px;
|
|
299
303
|
margin-bottom: 1px;
|
|
300
304
|
}
|
|
301
305
|
.e-bigger .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper,
|
|
302
|
-
.e-bigger .e-recurrenceeditor .e-year-expander
|
|
303
|
-
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
306
|
+
.e-bigger .e-recurrenceeditor .e-year-expander {
|
|
304
307
|
margin-bottom: 11px;
|
|
305
308
|
}
|
|
306
309
|
.e-bigger .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
@@ -412,7 +415,8 @@
|
|
|
412
415
|
}
|
|
413
416
|
.e-device.e-recurrence-dialog .e-dlg-header-content {
|
|
414
417
|
background: none;
|
|
415
|
-
box-shadow: none;
|
|
418
|
+
-webkit-box-shadow: none;
|
|
419
|
+
box-shadow: none;
|
|
416
420
|
padding-bottom: 10px;
|
|
417
421
|
}
|
|
418
422
|
.e-device.e-recurrence-dialog .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
@@ -437,8 +441,10 @@
|
|
|
437
441
|
width: 100%;
|
|
438
442
|
}
|
|
439
443
|
.e-recurrenceeditor .e-editor {
|
|
440
|
-
-
|
|
441
|
-
|
|
444
|
+
-webkit-box-orient: vertical;
|
|
445
|
+
-webkit-box-direction: normal;
|
|
446
|
+
-ms-flex-direction: column;
|
|
447
|
+
flex-direction: column;
|
|
442
448
|
}
|
|
443
449
|
.e-recurrenceeditor .e-editor > .e-input-wrapper.e-form-left {
|
|
444
450
|
margin-top: 0;
|
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
/*! Schedule component's theme definitions and variables */
|
|
2
1
|
$schedule-skin: $skin-name !default;
|
|
3
|
-
|
|
4
2
|
$schedule-header-bg-color: $content-bg-color !default;
|
|
5
3
|
$schedule-header-border-color: $border-light !default;
|
|
6
4
|
$schedule-header-font-color: $content-text-color-alt1 !default;
|
|
@@ -27,7 +25,6 @@ $border-size: 1px;
|
|
|
27
25
|
$border-type: solid !default;
|
|
28
26
|
$schedule-current-day-active-color: $schedule-active-color !default;
|
|
29
27
|
$schedule-time-cells-font-color: $schedule-secondary-content-font-color !default;
|
|
30
|
-
|
|
31
28
|
$schedule-alternate-cell-border: dotted !default;
|
|
32
29
|
$schedule-header-cells-padding: 8px 8px 0 !default;
|
|
33
30
|
$schedule-agenda-big-appointment-padding: 7px 16px !default;
|
|
@@ -57,7 +54,6 @@ $schedule-date-header-margin-rtl: $schedule-date-header-margin !default;
|
|
|
57
54
|
$schedule-month-date-header-cell-font-size: $text-xs !default;
|
|
58
55
|
$schedule-month-date-header-cell-text-align: center !default;
|
|
59
56
|
$schedule-month-date-header-cell-text-transform: uppercase !default;
|
|
60
|
-
|
|
61
57
|
$schedule-timezone-enable-nrml-height: 54px !default;
|
|
62
58
|
$schedule-timezone-enable-bgr-height: 64px !default;
|
|
63
59
|
$schedule-appointment-details-padding: 0 4px !default;
|
|
@@ -76,7 +72,6 @@ $schedule-month-appointment-subject-padding: 1px 2px !default;
|
|
|
76
72
|
$schedule-timescale-appointment-height: 54px !default;
|
|
77
73
|
$schedule-appointment-detail-line-height: $schedule-appointment-text-line-height !default;
|
|
78
74
|
$schedule-drag-appointment-opacity: .4;
|
|
79
|
-
|
|
80
75
|
$schedule-header-day-nrml-font-size: $text-xs !default;
|
|
81
76
|
$schedule-header-day-bgr-font-size: $text-sm !default;
|
|
82
77
|
$schedule-header-day-device-font-size: $text-sm !default;
|
|
@@ -96,7 +91,6 @@ $schedule-time-scale-width: 85px !default;
|
|
|
96
91
|
$schedule-device-time-scale-width: 60px !default;
|
|
97
92
|
$schedule-header-date-line-height: 24px !default;
|
|
98
93
|
$schedule-header-padding-top: 0 !default;
|
|
99
|
-
|
|
100
94
|
$schedule-vertical-work-cells-border: 0 0 1px 1px !default;
|
|
101
95
|
$schedule-rtl-vertical-work-cells-border: 0 1px 1px 0 !default;
|
|
102
96
|
$schedule-month-work-cells-border: 0 0 1px 1px !default;
|
|
@@ -114,7 +108,6 @@ $schedule-month-agenda-appointment-padding: 0 16px !default;
|
|
|
114
108
|
$schedule-month-agenda-item-padding: 16px 0 0 !default;
|
|
115
109
|
$schedule-popup-content-padding: 40px 18px 12px !default;
|
|
116
110
|
$schedule-recurrence-font-size: $text-xs !default;
|
|
117
|
-
|
|
118
111
|
$schedule-tbar-bgr-min-height: 54px !default;
|
|
119
112
|
$schedule-tbar-border-bottom-size: 0 !default;
|
|
120
113
|
$schedule-tbar-box-shadow: 0 1px 2px rgba($color: $black, $alpha: .15) !default;
|
|
@@ -151,7 +144,6 @@ $schedule-tbar-right-active-items-btn-border: none !default;
|
|
|
151
144
|
$schedule-device-tbar-right-items-btn-border-radius: 0 !default;
|
|
152
145
|
$schedule-device-tbar-right-items-btn-border: none !default;
|
|
153
146
|
$schedule-device-font-size: 8px !default;
|
|
154
|
-
|
|
155
147
|
$schedule-content-nrml-font-text-transform: none !default;
|
|
156
148
|
$schedule-header-hover-border-radius: 100% !default;
|
|
157
149
|
$schedule-more-popup-wrapper-border-radius: 6px !default;
|
|
@@ -206,7 +198,6 @@ $schedule-multiple-event-popup-icon-height: 35px !default;
|
|
|
206
198
|
$schedule-multiple-event-popup-icon-font-size: 18px !default;
|
|
207
199
|
$schedule-bgr-multiple-event-popup-subject-padding: 2px 5px !default;
|
|
208
200
|
$schedule-bgr-multiple-event-popup-icon-height: 35px !default;
|
|
209
|
-
|
|
210
201
|
$schedule-event-box-shadow-1: $shadow-lg !default;
|
|
211
202
|
$schedule-event-box-shadow-2: $shadow-lg !default;
|
|
212
203
|
$schedule-event-box-shadow-3: $shadow-lg !default;
|
|
@@ -219,7 +210,6 @@ $schedule-more-popup-padding: 8px 0 !default;
|
|
|
219
210
|
$schedule-more-appointment-margin-bottom: 2px !default;
|
|
220
211
|
$schedule-event-popup-header-icon-padding: 6px 8px 0 0 !default;
|
|
221
212
|
$schedule-event-popup-subject-wrap-padding: 12px 18px !default;
|
|
222
|
-
|
|
223
213
|
$schedule-timeline-header-time-slots-bg: $schedule-tbar-default-bg !default;
|
|
224
214
|
$schedule-timeline-header-cells-height: 36px !default;
|
|
225
215
|
$schedule-timeline-work-cells-height: 60px !default;
|
|
@@ -242,24 +232,19 @@ $schedule-bigger-dialog-row-container-padding-bottom: 12px !default;
|
|
|
242
232
|
$schedule-bigger-dialog-all-day-row-padding-top: 10px !default;
|
|
243
233
|
$schedule-device-dialog-all-day-row-padding-top: 20px !default;
|
|
244
234
|
$schedule-all-day-section-hover-color: $schedule-tbar-default-icon-color !default;
|
|
245
|
-
|
|
246
235
|
$schedule-tree-bg-color: $content-bg-color-alt1 !default;
|
|
247
236
|
$schedule-tree-font-color: $schedule-primary-content-font-color !default;
|
|
248
237
|
$schedule-tree-content-color: $content-text-color-alt2;
|
|
249
238
|
$schedule-popup-overlay-bg-color: $overlay-bg-color !default;
|
|
250
|
-
|
|
251
239
|
$schedule-val-error-color: $danger-bg-color !default;
|
|
252
240
|
$schedule-val-error-bg-color: $danger-light !default;
|
|
253
|
-
|
|
254
241
|
$schedule-block-appointment-bg-color: $content-bg-color-alt2 !default;
|
|
255
242
|
$schedule-block-appointment-font-color: $content-text-color !default;
|
|
256
|
-
|
|
257
243
|
$schedule-resource-color-margin-top: 10px !default;
|
|
258
244
|
$schedule-bigger-resource-color-margin-top: 10px !default;
|
|
259
245
|
$schedule-resource-color-size: 14px !default;
|
|
260
246
|
$schedule-bigger-resource-color-size: 16px !default;
|
|
261
247
|
$schedule-resource-tree-text-content-padding: 0 0 0 12px !default;
|
|
262
|
-
|
|
263
248
|
$schedule-tip-content-padding: 3px 6px !default;
|
|
264
249
|
$schedule-time-cells-border-bottom-color: none !default;
|
|
265
250
|
$schedule-current-day-font-weight: $font-weight-medium !default;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/*! Schedule component's bootstrap theme definitions and variables */
|
|
2
1
|
$schedule-skin: $skin-name !default;
|
|
3
2
|
$schedule-header-bg-color: $grey-base !default;
|
|
4
3
|
$schedule-header-border-color: $grey-99 !default;
|
|
@@ -26,7 +25,6 @@ $schedule-calendar-background: none !default;
|
|
|
26
25
|
$schedule-calendar-shadow: none !default;
|
|
27
26
|
$schedule-time-cells-font-color: $schedule-secondary-content-font-color !default;
|
|
28
27
|
$schedule-time-cells-bg-color: $schedule-header-bg-color !default;
|
|
29
|
-
|
|
30
28
|
$schedule-timezone-enable-nrml-height: 60px !default;
|
|
31
29
|
$schedule-timezone-enable-bgr-height: 70px !default;
|
|
32
30
|
$schedule-alternate-cell-border: dotted !default;
|
|
@@ -54,7 +52,6 @@ $schedule-date-header-wrap-device-font-size: 14px !default;
|
|
|
54
52
|
$schedule-month-date-header-cell-font-size: none !default;
|
|
55
53
|
$schedule-month-date-header-cell-text-align: left !default;
|
|
56
54
|
$schedule-month-date-header-cell-text-transform: none !default;
|
|
57
|
-
|
|
58
55
|
$schedule-appointment-bg-color: $brand-primary !default;
|
|
59
56
|
$schedule-appointment-details-padding: 0 4px !default;
|
|
60
57
|
$schedule-appointment-font-color: $brand-primary-font !default;
|
|
@@ -70,7 +67,6 @@ $schedule-month-appointment-time-padding: 2.5px !default;
|
|
|
70
67
|
$schedule-month-appointment-subject-padding: 2.5px 2px !default;
|
|
71
68
|
$schedule-timescale-appointment-height: 54px !default;
|
|
72
69
|
$schedule-drag-appointment-opacity: .4;
|
|
73
|
-
|
|
74
70
|
$schedule-header-day-nrml-font-size: 13px !default;
|
|
75
71
|
$schedule-header-day-bgr-font-size: 14px !default;
|
|
76
72
|
$schedule-header-day-device-font-size: 14px !default;
|
|
@@ -90,7 +86,6 @@ $schedule-time-scale-width: 85px !default;
|
|
|
90
86
|
$schedule-device-time-scale-width: 60px !default;
|
|
91
87
|
$schedule-header-date-line-height: unset !default;
|
|
92
88
|
$schedule-header-padding-top: 0 !default;
|
|
93
|
-
|
|
94
89
|
$schedule-vertical-work-cells-border: 0 0 1px 1px !default;
|
|
95
90
|
$schedule-rtl-vertical-work-cells-border: 0 1px 1px 0 !default;
|
|
96
91
|
$schedule-month-work-cells-border: 0 0 1px 1px !default;
|
|
@@ -112,7 +107,6 @@ $schedule-popup-footer-padding: 8px 18px 8px 22px !default;
|
|
|
112
107
|
$schedule-date-header-line-height: 20px !default;
|
|
113
108
|
$schedule-date-header-margin: 3px 3px 2px !default;
|
|
114
109
|
$schedule-date-header-margin-rtl: $schedule-date-header-margin !default;
|
|
115
|
-
|
|
116
110
|
$schedule-tbar-bgr-min-height: 56px !default;
|
|
117
111
|
$schedule-tbar-border-bottom-size: 1px solid $grey-99 !default;
|
|
118
112
|
$schedule-tbar-box-shadow: none !default;
|
|
@@ -149,7 +143,6 @@ $schedule-tbar-right-active-items-btn-border: none !default;
|
|
|
149
143
|
$schedule-device-tbar-right-items-btn-border-radius: 0 !default;
|
|
150
144
|
$schedule-device-tbar-right-items-btn-border: none !default;
|
|
151
145
|
$schedule-device-font-size: 8px !default;
|
|
152
|
-
|
|
153
146
|
$schedule-content-nrml-font-text-transform: initial !default;
|
|
154
147
|
$schedule-header-hover-border-radius: 4px !default;
|
|
155
148
|
$schedule-more-popup-wrapper-border-radius: 2px !default;
|
|
@@ -203,7 +196,6 @@ $schedule-multiple-event-popup-icon-height: 35px !default;
|
|
|
203
196
|
$schedule-multiple-event-popup-icon-font-size: 14px !default;
|
|
204
197
|
$schedule-bgr-multiple-event-popup-subject-padding: 2px 5px !default;
|
|
205
198
|
$schedule-bgr-multiple-event-popup-icon-height: 35px !default;
|
|
206
|
-
|
|
207
199
|
$schedule-event-box-shadow-1: 0 6px 10px 0 rgba($shadow, .14) !default;
|
|
208
200
|
$schedule-event-box-shadow-2: 0 1px 18px 0 rgba($shadow, .12) !default;
|
|
209
201
|
$schedule-event-box-shadow-3: 0 3px 5px -1px rgba($shadow, .2) !default;
|
|
@@ -216,7 +208,6 @@ $schedule-more-popup-padding: 8px 0 !default;
|
|
|
216
208
|
$schedule-more-appointment-margin-bottom: 2px !default;
|
|
217
209
|
$schedule-event-popup-header-icon-padding: 5px 5px 2px !default;
|
|
218
210
|
$schedule-event-popup-subject-wrap-padding: 0 18px 8px !default;
|
|
219
|
-
|
|
220
211
|
$schedule-timeline-header-cells-height: 36px !default;
|
|
221
212
|
$schedule-timeline-work-cells-height: 60px !default;
|
|
222
213
|
$schedule-timeline-work-cells-width: 50px !default;
|
|
@@ -238,23 +229,18 @@ $schedule-bigger-dialog-row-container-padding-bottom: 12px !default;
|
|
|
238
229
|
$schedule-bigger-dialog-all-day-row-padding-top: 10px !default;
|
|
239
230
|
$schedule-device-dialog-all-day-row-padding-top: 20px !default;
|
|
240
231
|
$schedule-all-day-section-hover-color: $schedule-tbar-default-icon-color !default;
|
|
241
|
-
|
|
242
232
|
$schedule-tree-bg-color: $content-bg-color !default;
|
|
243
233
|
$schedule-tree-font-color: $schedule-primary-content-font-color !default;
|
|
244
|
-
$schedule-popup-overlay-bg-color: #
|
|
245
|
-
|
|
246
|
-
$schedule-val-error-color: #
|
|
247
|
-
$schedule-val-error-bg-color: #fcdbe4 !default;
|
|
248
|
-
|
|
234
|
+
$schedule-popup-overlay-bg-color: #333 !default;
|
|
235
|
+
$schedule-val-error-color: #f43 !default;
|
|
236
|
+
$schedule-val-error-bg-color: #fde !default;
|
|
249
237
|
$schedule-block-appointment-bg-color: rgba(255, 255, 255, .08) !default;
|
|
250
|
-
$schedule-block-appointment-font-color: #
|
|
251
|
-
|
|
238
|
+
$schedule-block-appointment-font-color: #999 !default;
|
|
252
239
|
$schedule-resource-color-margin-top: 6px !default;
|
|
253
240
|
$schedule-bigger-resource-color-margin-top: 10px !default;
|
|
254
241
|
$schedule-resource-color-size: 14px !default;
|
|
255
242
|
$schedule-bigger-resource-color-size: 16px !default;
|
|
256
243
|
$schedule-resource-tree-text-content-padding: 0 0 0 12px !default;
|
|
257
|
-
|
|
258
244
|
$schedule-tip-content-padding: 3px 6px !default;
|
|
259
245
|
$schedule-time-cells-border-bottom-color: $schedule-content-border-color !default;
|
|
260
246
|
$schedule-current-day-font-weight: normal !default;
|
|
@@ -277,7 +263,6 @@ $schedule-bgr-tbar-btn-text-font-size: $schedule-header-nrml-font-size !default;
|
|
|
277
263
|
@mixin tbar-btn-animation {
|
|
278
264
|
content: '';
|
|
279
265
|
}
|
|
280
|
-
|
|
281
266
|
@mixin tbar-btn-animation-after {
|
|
282
267
|
content: '';
|
|
283
268
|
}
|