@syncfusion/ej2-schedule 20.3.58 → 20.4.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 +16 -1
- package/CHANGELOG.md +10 -0
- package/README.md +62 -46
- 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 +821 -528
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +860 -539
- 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 +22 -30
- package/src/common/calendar-util.js +1 -1
- package/src/recurrence-editor/date-generator.js +26 -26
- package/src/recurrence-editor/recurrence-editor.js +5 -5
- package/src/schedule/actions/action-base.js +3 -3
- package/src/schedule/actions/crud.js +16 -16
- package/src/schedule/actions/drag.js +36 -32
- package/src/schedule/actions/keyboard.js +10 -8
- package/src/schedule/actions/resize.js +6 -6
- package/src/schedule/actions/touch.js +4 -3
- package/src/schedule/actions/virtual-scroll.js +10 -7
- package/src/schedule/base/interface.d.ts +8 -1
- package/src/schedule/base/resource.d.ts +1 -0
- package/src/schedule/base/resource.js +179 -93
- package/src/schedule/base/schedule-model.d.ts +7 -0
- package/src/schedule/base/schedule.d.ts +23 -0
- package/src/schedule/base/schedule.js +73 -22
- package/src/schedule/base/util.js +4 -6
- package/src/schedule/event-renderer/agenda-base.js +36 -31
- package/src/schedule/event-renderer/event-base.js +25 -25
- package/src/schedule/event-renderer/inline-edit.js +8 -5
- package/src/schedule/event-renderer/month.js +17 -14
- package/src/schedule/event-renderer/timeline-view.js +11 -11
- package/src/schedule/event-renderer/vertical-view.d.ts +1 -0
- package/src/schedule/event-renderer/vertical-view.js +97 -70
- package/src/schedule/event-renderer/year.js +25 -17
- package/src/schedule/exports/calendar-export.js +4 -4
- package/src/schedule/exports/calendar-import.js +14 -15
- package/src/schedule/exports/excel-export.js +1 -1
- package/src/schedule/exports/print.js +39 -4
- package/src/schedule/models/group-model.d.ts +8 -0
- package/src/schedule/models/group.d.ts +7 -0
- package/src/schedule/models/group.js +3 -0
- package/src/schedule/models/views-model.d.ts +8 -1
- package/src/schedule/models/views.d.ts +7 -1
- package/src/schedule/models/views.js +3 -0
- package/src/schedule/popups/event-tooltip.js +3 -2
- package/src/schedule/popups/event-window.js +36 -30
- package/src/schedule/popups/quick-popups.js +6 -6
- package/src/schedule/renderer/agenda.js +5 -5
- package/src/schedule/renderer/header-renderer.d.ts +1 -1
- package/src/schedule/renderer/header-renderer.js +21 -5
- package/src/schedule/renderer/month-agenda.js +11 -4
- package/src/schedule/renderer/month.js +44 -16
- package/src/schedule/renderer/renderer.js +3 -3
- package/src/schedule/renderer/timeline-header-row.js +7 -7
- package/src/schedule/renderer/timeline-month.js +5 -5
- package/src/schedule/renderer/timeline-view.js +2 -2
- package/src/schedule/renderer/timeline-year.js +20 -14
- package/src/schedule/renderer/vertical-view.js +24 -9
- package/src/schedule/renderer/view-base.d.ts +3 -0
- package/src/schedule/renderer/view-base.js +11 -3
- package/src/schedule/renderer/year.js +11 -5
- package/styles/bootstrap-dark.css +364 -101
- package/styles/bootstrap.css +363 -99
- package/styles/bootstrap4.css +375 -141
- package/styles/bootstrap5-dark.css +339 -137
- package/styles/bootstrap5.css +339 -137
- package/styles/fabric-dark.css +330 -101
- package/styles/fabric.css +316 -106
- package/styles/fluent-dark.css +395 -102
- package/styles/fluent.css +395 -102
- package/styles/highcontrast-light.css +407 -98
- package/styles/highcontrast.css +399 -113
- package/styles/material-dark.css +362 -110
- package/styles/material.css +404 -110
- package/styles/recurrence-editor/_layout.scss +42 -28
- package/styles/recurrence-editor/bootstrap-dark.css +137 -28
- package/styles/recurrence-editor/bootstrap-dark.scss +5 -0
- package/styles/recurrence-editor/bootstrap.css +137 -28
- package/styles/recurrence-editor/bootstrap.scss +5 -0
- package/styles/recurrence-editor/bootstrap4.css +171 -28
- package/styles/recurrence-editor/bootstrap4.scss +5 -0
- package/styles/recurrence-editor/bootstrap5-dark.css +178 -28
- package/styles/recurrence-editor/bootstrap5-dark.scss +5 -0
- package/styles/recurrence-editor/bootstrap5.css +178 -28
- package/styles/recurrence-editor/bootstrap5.scss +5 -0
- package/styles/recurrence-editor/fabric-dark.css +113 -28
- package/styles/recurrence-editor/fabric-dark.scss +5 -0
- package/styles/recurrence-editor/fabric.css +106 -28
- package/styles/recurrence-editor/fabric.scss +5 -0
- package/styles/recurrence-editor/fluent-dark.css +158 -28
- package/styles/recurrence-editor/fluent-dark.scss +5 -0
- package/styles/recurrence-editor/fluent.css +158 -28
- package/styles/recurrence-editor/fluent.scss +5 -0
- package/styles/recurrence-editor/highcontrast-light.css +110 -28
- package/styles/recurrence-editor/highcontrast-light.scss +5 -0
- package/styles/recurrence-editor/highcontrast.css +110 -28
- package/styles/recurrence-editor/highcontrast.scss +5 -0
- package/styles/recurrence-editor/material-dark.css +138 -28
- package/styles/recurrence-editor/material-dark.scss +5 -0
- package/styles/recurrence-editor/material.css +163 -28
- package/styles/recurrence-editor/material.scss +5 -0
- package/styles/recurrence-editor/tailwind-dark.css +126 -28
- package/styles/recurrence-editor/tailwind-dark.scss +5 -0
- package/styles/recurrence-editor/tailwind.css +126 -28
- package/styles/recurrence-editor/tailwind.scss +5 -0
- package/styles/schedule/_bootstrap-dark-definition.scss +63 -4
- package/styles/schedule/_bootstrap-definition.scss +62 -3
- package/styles/schedule/_bootstrap4-definition.scss +65 -5
- package/styles/schedule/_bootstrap5-definition.scss +63 -5
- package/styles/schedule/_fabric-dark-definition.scss +61 -3
- package/styles/schedule/_fabric-definition.scss +62 -3
- package/styles/schedule/_fluent-definition.scss +63 -6
- package/styles/schedule/_fusionnew-definition.scss +60 -3
- package/styles/schedule/_highcontrast-definition.scss +62 -3
- package/styles/schedule/_highcontrast-light-definition.scss +62 -3
- package/styles/schedule/_layout.scss +117 -506
- package/styles/schedule/_material-dark-definition.scss +63 -4
- package/styles/schedule/_material-definition.scss +63 -4
- package/styles/schedule/_material3-definition.scss +62 -3
- package/styles/schedule/_tailwind-definition.scss +63 -6
- package/styles/schedule/_theme.scss +97 -62
- package/styles/schedule/bootstrap-dark.css +332 -73
- package/styles/schedule/bootstrap-dark.scss +11 -0
- package/styles/schedule/bootstrap.css +331 -71
- package/styles/schedule/bootstrap.scss +11 -0
- package/styles/schedule/bootstrap4.css +343 -113
- package/styles/schedule/bootstrap4.scss +11 -0
- package/styles/schedule/bootstrap5-dark.css +307 -109
- package/styles/schedule/bootstrap5-dark.scss +11 -0
- package/styles/schedule/bootstrap5.css +307 -109
- package/styles/schedule/bootstrap5.scss +11 -0
- package/styles/schedule/fabric-dark.css +298 -73
- package/styles/schedule/fabric-dark.scss +11 -0
- package/styles/schedule/fabric.css +284 -78
- package/styles/schedule/fabric.scss +11 -0
- package/styles/schedule/fluent-dark.css +363 -74
- package/styles/schedule/fluent-dark.scss +11 -0
- package/styles/schedule/fluent.css +363 -74
- package/styles/schedule/fluent.scss +11 -0
- package/styles/schedule/highcontrast-light.css +375 -70
- package/styles/schedule/highcontrast-light.scss +11 -0
- package/styles/schedule/highcontrast.css +367 -85
- package/styles/schedule/highcontrast.scss +11 -0
- package/styles/schedule/material-dark.css +330 -82
- package/styles/schedule/material-dark.scss +11 -0
- package/styles/schedule/material.css +372 -82
- package/styles/schedule/material.scss +11 -0
- package/styles/schedule/tailwind-dark.css +246 -111
- package/styles/schedule/tailwind-dark.scss +11 -0
- package/styles/schedule/tailwind.css +246 -111
- package/styles/schedule/tailwind.scss +11 -0
- package/styles/tailwind-dark.css +279 -140
- package/styles/tailwind.css +279 -140
|
@@ -1,4 +1,133 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
2
|
+
/*! TreeView's tailwind theme wise override definitions and variables */
|
|
3
|
+
/* stylelint-disable */
|
|
4
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
5
|
+
/*! calendar tailwind theme variables */
|
|
6
|
+
.e-ddl.e-control-wrapper .e-ddl-icon::before {
|
|
7
|
+
transform: rotate(0deg);
|
|
8
|
+
transition: transform 300ms ease;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
|
|
12
|
+
transform: rotate(180deg);
|
|
13
|
+
transition: transform 300ms ease;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.e-dropdownbase .e-list-item.e-active.e-hover {
|
|
17
|
+
color: #111827;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
21
|
+
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
22
|
+
.e-input-group:not(.e-disabled) .e-back-icon:active,
|
|
23
|
+
.e-input-group:not(.e-disabled) .e-back-icon:hover,
|
|
24
|
+
.e-popup.e-ddl .e-input-group:not(.e-disabled) .e-clear-icon:active,
|
|
25
|
+
.e-popup.e-ddl .e-input-group:not(.e-disabled) .e-clear-icon:hover {
|
|
26
|
+
background: transparent;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.e-input-group .e-ddl-icon:not(:active)::after {
|
|
30
|
+
animation: none;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.e-ddl.e-popup {
|
|
34
|
+
border: 0;
|
|
35
|
+
border-radius: 4px;
|
|
36
|
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
37
|
+
margin-top: 4px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.e-small .e-ddl.e-popup,
|
|
41
|
+
.e-small.e-ddl.e-popup {
|
|
42
|
+
border-radius: 2px;
|
|
43
|
+
margin-top: 2px;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.e-bigger .e-ddl.e-popup,
|
|
47
|
+
.e-bigger.e-ddl.e-popup {
|
|
48
|
+
border-radius: 6px;
|
|
49
|
+
margin-top: 8px;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.e-bigger.e-small .e-ddl.e-popup,
|
|
53
|
+
.e-small.e-bigger.e-ddl.e-popup {
|
|
54
|
+
border-radius: 4px;
|
|
55
|
+
margin-top: 6px;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.e-popup.e-ddl .e-dropdownbase {
|
|
59
|
+
min-height: 26px;
|
|
60
|
+
padding: 4px 0;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.e-bigger .e-popup.e-ddl-device-filter .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
64
|
+
border-color: #e5e7eb;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.e-bigger .e-popup.e-ddl-device-filter {
|
|
68
|
+
margin-top: 0;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.e-bigger .e-ddl-device .e-input-group,
|
|
72
|
+
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
73
|
+
background: #fff;
|
|
74
|
+
border-width: 0;
|
|
75
|
+
box-shadow: none;
|
|
76
|
+
margin-bottom: 0;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.e-bigger .e-ddl-device .e-input-group .e-back-icon,
|
|
80
|
+
.e-bigger .e-ddl-device .e-input-group input.e-input,
|
|
81
|
+
.e-bigger .e-ddl-device .e-input-group .e-clear-icon {
|
|
82
|
+
background-color: #fff;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.e-input-group.e-ddl,
|
|
86
|
+
.e-input-group.e-ddl .e-input,
|
|
87
|
+
.e-input-group.e-ddl .e-ddl-icon {
|
|
88
|
+
background: #fff;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.e-ddl.e-ddl-device.e-ddl-device-filter .e-input-group:hover:not(.e-disabled):not(.e-float-icon-left),
|
|
92
|
+
.e-ddl.e-ddl-device.e-ddl-device-filter .e-input-group.e-control-wrapper:hover:not(.e-disabled):not(.e-float-icon-left) {
|
|
93
|
+
border-bottom-width: 0;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.e-ddl.e-popup.e-outline .e-filter-parent {
|
|
97
|
+
padding: 4px 8px;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.e-multi-select-wrapper .e-chips-collection .e-chips .e-chips-close.e-icon::before {
|
|
101
|
+
line-height: 30px;
|
|
102
|
+
top: 0;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.e-multiselect .e-input-group-icon.e-ddl-icon {
|
|
106
|
+
border-radius: 0 4px 4px 0;
|
|
107
|
+
border-right-width: 0;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.e-multiselect.e-rtl .e-input-group-icon.e-ddl-icon {
|
|
111
|
+
border-left-width: 0;
|
|
112
|
+
border-radius: 4px 0 0 4px;
|
|
113
|
+
border-right-width: 0;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
117
|
+
height: 32px;
|
|
118
|
+
width: 32px;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
122
|
+
height: 28px;
|
|
123
|
+
width: 28px;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.e-multi-select-wrapper .e-searcher input[type=text] {
|
|
127
|
+
color: #111827;
|
|
128
|
+
height: 100%;
|
|
129
|
+
}
|
|
130
|
+
|
|
2
131
|
/*! recurrence editor theme wise definitions*/ /*! Schedule component's tailwind theme definitions and variables */
|
|
3
132
|
.e-schedule .e-schedule-toolbar .e-icon-prev::before {
|
|
4
133
|
content: "\e765";
|
|
@@ -194,7 +323,7 @@
|
|
|
194
323
|
}
|
|
195
324
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-icon-right.e-btn-icon.e-icon-down-arrow {
|
|
196
325
|
font-size: 18px;
|
|
197
|
-
|
|
326
|
+
margin-top: 2px;
|
|
198
327
|
}
|
|
199
328
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:focus, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:hover {
|
|
200
329
|
border-radius: 100%;
|
|
@@ -215,9 +344,6 @@
|
|
|
215
344
|
font-size: 14px;
|
|
216
345
|
text-transform: initial;
|
|
217
346
|
}
|
|
218
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
219
|
-
padding: 0 12px;
|
|
220
|
-
}
|
|
221
347
|
.e-schedule .e-schedule-toolbar.e-rtl .e-hor-nav {
|
|
222
348
|
background: #f3f4f6;
|
|
223
349
|
border-left: 0;
|
|
@@ -261,6 +387,9 @@
|
|
|
261
387
|
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos > div {
|
|
262
388
|
height: inherit;
|
|
263
389
|
}
|
|
390
|
+
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
391
|
+
padding: 4px 6px;
|
|
392
|
+
}
|
|
264
393
|
.e-schedule.e-device .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
|
|
265
394
|
font-size: 16px;
|
|
266
395
|
}
|
|
@@ -442,7 +571,6 @@
|
|
|
442
571
|
}
|
|
443
572
|
.e-schedule .e-block-appointment {
|
|
444
573
|
background: #f3f4f6;
|
|
445
|
-
border-radius: 2px;
|
|
446
574
|
color: #111827;
|
|
447
575
|
cursor: default;
|
|
448
576
|
overflow: hidden;
|
|
@@ -708,6 +836,7 @@
|
|
|
708
836
|
display: table;
|
|
709
837
|
font-size: 16px;
|
|
710
838
|
line-height: 24px;
|
|
839
|
+
padding-top: 0;
|
|
711
840
|
}
|
|
712
841
|
.e-schedule .e-vertical-view .e-header-cells .e-header-date:hover {
|
|
713
842
|
text-decoration: underline;
|
|
@@ -775,6 +904,7 @@
|
|
|
775
904
|
.e-schedule .e-vertical-view .e-all-day-appointment-section:hover, .e-schedule .e-vertical-view .e-all-day-appointment-section:focus {
|
|
776
905
|
background: #e5e7eb;
|
|
777
906
|
border-radius: 100%;
|
|
907
|
+
color: #6b7280;
|
|
778
908
|
}
|
|
779
909
|
.e-schedule .e-vertical-view .e-appointment-hide {
|
|
780
910
|
opacity: 0;
|
|
@@ -1228,6 +1358,9 @@
|
|
|
1228
1358
|
.e-schedule .e-month-view .e-more-indicator:focus {
|
|
1229
1359
|
text-decoration: underline;
|
|
1230
1360
|
}
|
|
1361
|
+
.e-schedule.e-rtl .e-month-view .e-date-header {
|
|
1362
|
+
margin: 3px 3px 2px;
|
|
1363
|
+
}
|
|
1231
1364
|
.e-schedule.e-rtl .e-month-view .e-left-indent {
|
|
1232
1365
|
border-left: 1px solid #e5e7eb;
|
|
1233
1366
|
border-right-width: 0;
|
|
@@ -1400,54 +1533,6 @@
|
|
|
1400
1533
|
.e-schedule .e-timeline-year-view .e-resource-collapse {
|
|
1401
1534
|
transform: rotate(90deg);
|
|
1402
1535
|
}
|
|
1403
|
-
.e-schedule .e-timeline-year-view .e-work-cells {
|
|
1404
|
-
background-color: #f9fafb;
|
|
1405
|
-
border-color: #e5e7eb;
|
|
1406
|
-
border-style: solid;
|
|
1407
|
-
border-width: 0 1px 1px 0;
|
|
1408
|
-
color: #111827;
|
|
1409
|
-
padding: 0;
|
|
1410
|
-
}
|
|
1411
|
-
.e-schedule .e-timeline-year-view .e-work-cells:hover:not(.e-other-month) {
|
|
1412
|
-
background: #f3f4f6;
|
|
1413
|
-
color: #111827;
|
|
1414
|
-
}
|
|
1415
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-work-days {
|
|
1416
|
-
background-color: #fff;
|
|
1417
|
-
}
|
|
1418
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-other-month {
|
|
1419
|
-
color: #6b7280;
|
|
1420
|
-
}
|
|
1421
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-current-day .e-date-header {
|
|
1422
|
-
background-color: #4f46e5;
|
|
1423
|
-
border-radius: 50%;
|
|
1424
|
-
color: #fff;
|
|
1425
|
-
margin: 2px;
|
|
1426
|
-
width: 20px;
|
|
1427
|
-
}
|
|
1428
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell {
|
|
1429
|
-
background-color: #e5e7eb;
|
|
1430
|
-
color: #111827;
|
|
1431
|
-
}
|
|
1432
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-more-indicator {
|
|
1433
|
-
color: #111827;
|
|
1434
|
-
}
|
|
1435
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell:hover {
|
|
1436
|
-
background-color: #e5e7eb;
|
|
1437
|
-
}
|
|
1438
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates {
|
|
1439
|
-
background-color: #f3f4f6;
|
|
1440
|
-
}
|
|
1441
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header {
|
|
1442
|
-
cursor: default;
|
|
1443
|
-
opacity: 0.35;
|
|
1444
|
-
}
|
|
1445
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header:hover {
|
|
1446
|
-
text-decoration: none;
|
|
1447
|
-
}
|
|
1448
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates:hover {
|
|
1449
|
-
background-color: #f3f4f6;
|
|
1450
|
-
}
|
|
1451
1536
|
.e-schedule .e-timeline-year-view .e-content-table {
|
|
1452
1537
|
height: 100%;
|
|
1453
1538
|
}
|
|
@@ -1510,13 +1595,6 @@
|
|
|
1510
1595
|
.e-schedule .e-timeline-year-view .e-work-cells .e-date-header:hover {
|
|
1511
1596
|
text-decoration: underline;
|
|
1512
1597
|
}
|
|
1513
|
-
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
|
|
1514
|
-
background-color: #f3f4f6;
|
|
1515
|
-
box-shadow: inset 0 0 0 8px #f9fafb;
|
|
1516
|
-
}
|
|
1517
|
-
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
|
|
1518
|
-
background-color: #f3f4f6;
|
|
1519
|
-
}
|
|
1520
1598
|
.e-schedule .e-timeline-year-view .e-event-table {
|
|
1521
1599
|
position: absolute;
|
|
1522
1600
|
top: 0;
|
|
@@ -1613,7 +1691,7 @@
|
|
|
1613
1691
|
.e-schedule .e-timeline-year-view .e-event-table .e-more-indicator:focus {
|
|
1614
1692
|
text-decoration: underline;
|
|
1615
1693
|
}
|
|
1616
|
-
.e-schedule.e-device .e-year-view .e-month-calendar {
|
|
1694
|
+
.e-schedule.e-device .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
|
|
1617
1695
|
max-width: 100%;
|
|
1618
1696
|
min-width: 100%;
|
|
1619
1697
|
}
|
|
@@ -1655,8 +1733,8 @@
|
|
|
1655
1733
|
}
|
|
1656
1734
|
.e-schedule .e-timeline-view .e-date-header-wrap table tbody td.e-time-slots,
|
|
1657
1735
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table tbody td.e-time-slots {
|
|
1658
|
-
overflow: inherit;
|
|
1659
1736
|
background-color: #f3f4f6;
|
|
1737
|
+
overflow: inherit;
|
|
1660
1738
|
}
|
|
1661
1739
|
.e-schedule .e-timeline-view .e-date-header-wrap table tbody td > span,
|
|
1662
1740
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table tbody td > span {
|
|
@@ -1981,6 +2059,7 @@
|
|
|
1981
2059
|
.e-schedule .e-month-agenda-view .e-content-table {
|
|
1982
2060
|
border-bottom: 2px solid #e5e7eb;
|
|
1983
2061
|
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
|
|
2062
|
+
height: 100%;
|
|
1984
2063
|
}
|
|
1985
2064
|
.e-schedule .e-month-agenda-view .e-resource-column {
|
|
1986
2065
|
border-bottom: 1px solid #e5e7eb;
|
|
@@ -2390,13 +2469,13 @@
|
|
|
2390
2469
|
margin: 4px 0;
|
|
2391
2470
|
min-height: 24px;
|
|
2392
2471
|
min-width: 24px;
|
|
2393
|
-
padding:
|
|
2472
|
+
padding: 8px 8px 6px;
|
|
2394
2473
|
}
|
|
2395
2474
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
|
|
2396
2475
|
.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,
|
|
2397
2476
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
|
|
2398
2477
|
.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 {
|
|
2399
|
-
padding:
|
|
2478
|
+
padding: 3px 0 0 12px;
|
|
2400
2479
|
font-size: 22px;
|
|
2401
2480
|
}
|
|
2402
2481
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn .e-btn-icon,
|
|
@@ -2404,7 +2483,7 @@
|
|
|
2404
2483
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn .e-btn-icon,
|
|
2405
2484
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-btn-icon {
|
|
2406
2485
|
height: 25px;
|
|
2407
|
-
padding-
|
|
2486
|
+
padding-top: 3px;
|
|
2408
2487
|
}
|
|
2409
2488
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-tbar-btn-text,
|
|
2410
2489
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-tbar-btn-text {
|
|
@@ -2514,10 +2593,19 @@
|
|
|
2514
2593
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2515
2594
|
width: 420px;
|
|
2516
2595
|
}
|
|
2596
|
+
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content {
|
|
2597
|
+
padding: 8px 18px;
|
|
2598
|
+
}
|
|
2517
2599
|
@media screen and (max-width: 767px) {
|
|
2518
2600
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2519
2601
|
width: 289px;
|
|
2520
2602
|
}
|
|
2603
|
+
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content {
|
|
2604
|
+
padding: 5%;
|
|
2605
|
+
}
|
|
2606
|
+
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content button {
|
|
2607
|
+
margin-bottom: 5%;
|
|
2608
|
+
}
|
|
2521
2609
|
}
|
|
2522
2610
|
|
|
2523
2611
|
.e-dialog.e-quick-dialog {
|
|
@@ -2559,7 +2647,6 @@
|
|
|
2559
2647
|
.e-schedule-dialog .e-dlg-content {
|
|
2560
2648
|
padding-bottom: 12px;
|
|
2561
2649
|
position: relative;
|
|
2562
|
-
background-color: #fff;
|
|
2563
2650
|
}
|
|
2564
2651
|
.e-schedule-dialog .e-event-delete {
|
|
2565
2652
|
float: left;
|
|
@@ -2695,7 +2782,7 @@
|
|
|
2695
2782
|
}
|
|
2696
2783
|
.e-bigger .e-ddl.e-popup .e-resource-template .e-resource-color {
|
|
2697
2784
|
height: 16px;
|
|
2698
|
-
margin-top:
|
|
2785
|
+
margin-top: 10px;
|
|
2699
2786
|
width: 16px;
|
|
2700
2787
|
}
|
|
2701
2788
|
.e-bigger .e-schedule-dialog .e-disable {
|
|
@@ -2889,7 +2976,6 @@
|
|
|
2889
2976
|
.e-schedule-dialog.e-device .e-forward-icon {
|
|
2890
2977
|
cursor: pointer;
|
|
2891
2978
|
line-height: normal;
|
|
2892
|
-
color: #6b7280;
|
|
2893
2979
|
}
|
|
2894
2980
|
.e-schedule-dialog.e-device .e-save-icon {
|
|
2895
2981
|
text-align: right;
|
|
@@ -2990,15 +3076,14 @@
|
|
|
2990
3076
|
width: 100%;
|
|
2991
3077
|
}
|
|
2992
3078
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-schedule-form > span {
|
|
2993
|
-
margin
|
|
2994
|
-
margin-top: 14px;
|
|
3079
|
+
margin: 14px 0 4px;
|
|
2995
3080
|
}
|
|
2996
3081
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
2997
3082
|
font-size: 22px;
|
|
2998
|
-
height: 40px;
|
|
2999
3083
|
height: 30px;
|
|
3000
|
-
|
|
3001
|
-
|
|
3084
|
+
}
|
|
3085
|
+
.e-quick-popup-wrapper .e-event-popup .e-popup-header {
|
|
3086
|
+
background-color: #fff;
|
|
3002
3087
|
}
|
|
3003
3088
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper {
|
|
3004
3089
|
padding: 6px 8px 0 0;
|
|
@@ -3043,15 +3128,15 @@
|
|
|
3043
3128
|
padding: 12px 18px;
|
|
3044
3129
|
}
|
|
3045
3130
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-subject-wrap .e-subject {
|
|
3131
|
+
background-color: rgba(79, 70, 229, 0.3);
|
|
3132
|
+
border-left: 6px solid #4f46e5;
|
|
3133
|
+
border-radius: 4px;
|
|
3134
|
+
color: #111827;
|
|
3046
3135
|
cursor: default;
|
|
3047
3136
|
font-size: 20px;
|
|
3048
3137
|
font-weight: 500;
|
|
3049
3138
|
line-height: 1.5;
|
|
3050
3139
|
max-height: 87px;
|
|
3051
|
-
background-color: rgba(79, 70, 229, 0.3);
|
|
3052
|
-
border-left: 6px solid #4f46e5;
|
|
3053
|
-
padding: 8px 0 8px 10px;
|
|
3054
|
-
border-radius: 4px;
|
|
3055
3140
|
padding: 8px;
|
|
3056
3141
|
}
|
|
3057
3142
|
.e-quick-popup-wrapper .e-event-popup .e-popup-content {
|
|
@@ -3100,8 +3185,6 @@
|
|
|
3100
3185
|
.e-quick-popup-wrapper .e-event-popup .e-resource-icon {
|
|
3101
3186
|
color: #6b7280;
|
|
3102
3187
|
font-size: 18px;
|
|
3103
|
-
padding-right: 12px;
|
|
3104
|
-
font-size: 18px;
|
|
3105
3188
|
padding: 2px 12px 0 0;
|
|
3106
3189
|
}
|
|
3107
3190
|
.e-quick-popup-wrapper .e-cell-popup .e-date-time-details,
|
|
@@ -3143,6 +3226,9 @@
|
|
|
3143
3226
|
right: auto;
|
|
3144
3227
|
text-transform: capitalize;
|
|
3145
3228
|
}
|
|
3229
|
+
.e-quick-popup-wrapper .e-event-popup .e-popup-footer {
|
|
3230
|
+
display: block;
|
|
3231
|
+
}
|
|
3146
3232
|
.e-quick-popup-wrapper.e-rtl {
|
|
3147
3233
|
text-align: right;
|
|
3148
3234
|
}
|
|
@@ -3150,10 +3236,6 @@
|
|
|
3150
3236
|
left: 6px;
|
|
3151
3237
|
right: auto;
|
|
3152
3238
|
}
|
|
3153
|
-
.e-quick-popup-wrapper.e-rtl .e-cell-popup .e-popup-footer {
|
|
3154
|
-
padding: 8px 18px 8px 8px;
|
|
3155
|
-
text-align: left;
|
|
3156
|
-
}
|
|
3157
3239
|
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3158
3240
|
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3159
3241
|
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
@@ -3161,20 +3243,16 @@
|
|
|
3161
3243
|
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3162
3244
|
margin-right: 10px;
|
|
3163
3245
|
}
|
|
3164
|
-
.e-quick-popup-wrapper.e-rtl .e-event-details
|
|
3246
|
+
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3247
|
+
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3165
3248
|
margin-left: 8px;
|
|
3166
3249
|
}
|
|
3167
3250
|
.e-quick-popup-wrapper.e-rtl .e-popup-footer {
|
|
3168
3251
|
padding: 8px 8px 8px 18px;
|
|
3252
|
+
text-align: left;
|
|
3169
3253
|
}
|
|
3170
3254
|
.e-quick-popup-wrapper.e-rtl .e-date-time-icon {
|
|
3171
|
-
padding: 0 0 0
|
|
3172
|
-
}
|
|
3173
|
-
.e-quick-popup-wrapper.e-rtl .e-event-popup .e-date-time-icon {
|
|
3174
|
-
padding: 0 13px;
|
|
3175
|
-
}
|
|
3176
|
-
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3177
|
-
margin-left: 8px;
|
|
3255
|
+
padding: 0 0 0 10px;
|
|
3178
3256
|
}
|
|
3179
3257
|
.e-quick-popup-wrapper.e-device {
|
|
3180
3258
|
bottom: 0;
|
|
@@ -3193,11 +3271,6 @@
|
|
|
3193
3271
|
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper {
|
|
3194
3272
|
background-color: #fff;
|
|
3195
3273
|
}
|
|
3196
|
-
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit,
|
|
3197
|
-
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete,
|
|
3198
|
-
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-close {
|
|
3199
|
-
opacity: 1;
|
|
3200
|
-
}
|
|
3201
3274
|
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit:focus, .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit:hover,
|
|
3202
3275
|
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete:focus,
|
|
3203
3276
|
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete:hover,
|
|
@@ -3235,12 +3308,11 @@
|
|
|
3235
3308
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close,
|
|
3236
3309
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit,
|
|
3237
3310
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete {
|
|
3238
|
-
background-color:
|
|
3311
|
+
background-color: #fff;
|
|
3239
3312
|
border: 0;
|
|
3313
|
+
color: #6b7280;
|
|
3240
3314
|
height: 40px;
|
|
3241
3315
|
width: 40px;
|
|
3242
|
-
background-color: #fff;
|
|
3243
|
-
color: #6b7280;
|
|
3244
3316
|
}
|
|
3245
3317
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close:focus, .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close:hover,
|
|
3246
3318
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit:focus,
|
|
@@ -3273,6 +3345,9 @@
|
|
|
3273
3345
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content {
|
|
3274
3346
|
padding: 48px 24px 16px;
|
|
3275
3347
|
}
|
|
3348
|
+
.e-bigger .e-quick-popup-wrapper .e-popup-footer {
|
|
3349
|
+
padding: 8px 18px 8px 18px;
|
|
3350
|
+
}
|
|
3276
3351
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-date-time-icon,
|
|
3277
3352
|
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-date-time-icon {
|
|
3278
3353
|
padding-right: 16px;
|
|
@@ -3295,7 +3370,6 @@
|
|
|
3295
3370
|
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-close-icon,
|
|
3296
3371
|
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit-icon,
|
|
3297
3372
|
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete-icon {
|
|
3298
|
-
font-size: 14px;
|
|
3299
3373
|
font-size: 22px;
|
|
3300
3374
|
}
|
|
3301
3375
|
.e-bigger .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-close-icon,
|
|
@@ -3307,10 +3381,6 @@
|
|
|
3307
3381
|
padding: 0 5px 0 8px;
|
|
3308
3382
|
}
|
|
3309
3383
|
|
|
3310
|
-
.e-bigger .e-more-popup-wrapper {
|
|
3311
|
-
padding: 12px 2px 16px;
|
|
3312
|
-
}
|
|
3313
|
-
|
|
3314
3384
|
.e-bigger .e-agenda-view .e-appointment {
|
|
3315
3385
|
padding: 7px 16px;
|
|
3316
3386
|
}
|
|
@@ -3442,8 +3512,6 @@
|
|
|
3442
3512
|
height: calc(100% - 35px);
|
|
3443
3513
|
max-height: 150px;
|
|
3444
3514
|
overflow-y: auto;
|
|
3445
|
-
padding-left: 10px;
|
|
3446
|
-
padding-right: 10px;
|
|
3447
3515
|
padding: 10px 10px 0;
|
|
3448
3516
|
}
|
|
3449
3517
|
.e-bigger .e-more-popup-wrapper .e-more-event-content .e-appointment-border,
|
|
@@ -3491,14 +3559,13 @@
|
|
|
3491
3559
|
color: #6b7280;
|
|
3492
3560
|
cursor: pointer;
|
|
3493
3561
|
height: 25px;
|
|
3562
|
+
padding: 1px;
|
|
3494
3563
|
position: absolute;
|
|
3495
3564
|
right: 6px;
|
|
3496
3565
|
width: 25px;
|
|
3497
|
-
padding: 1px;
|
|
3498
3566
|
}
|
|
3499
3567
|
.e-bigger .e-more-popup-wrapper .e-more-event-close .e-close-icon,
|
|
3500
3568
|
.e-more-popup-wrapper .e-more-event-close .e-close-icon {
|
|
3501
|
-
font-size: 9px;
|
|
3502
3569
|
font-size: 14px;
|
|
3503
3570
|
}
|
|
3504
3571
|
.e-bigger .e-more-popup-wrapper .e-more-event-close .e-btn-icon,
|
|
@@ -3638,16 +3705,18 @@
|
|
|
3638
3705
|
border-bottom-width: 0;
|
|
3639
3706
|
}
|
|
3640
3707
|
.e-schedule .e-vertical-view .e-time-cells-wrap table td {
|
|
3641
|
-
background-color: #
|
|
3708
|
+
background-color: #f3f4f6;
|
|
3642
3709
|
border-color: #e5e7eb;
|
|
3643
3710
|
border-style: solid;
|
|
3644
3711
|
border-width: 0 1px 1px 0;
|
|
3645
3712
|
color: #6b7280;
|
|
3646
|
-
background-color: #f3f4f6;
|
|
3647
3713
|
}
|
|
3648
3714
|
.e-schedule .e-vertical-view .e-time-cells-wrap table td {
|
|
3649
3715
|
border-bottom-color: transparent;
|
|
3650
3716
|
}
|
|
3717
|
+
.e-schedule .e-vertical-view .e-time-cells-wrap .e-time-cells {
|
|
3718
|
+
border-bottom-color: none;
|
|
3719
|
+
}
|
|
3651
3720
|
.e-schedule .e-vertical-view .e-header-cells {
|
|
3652
3721
|
background-color: #fff;
|
|
3653
3722
|
}
|
|
@@ -3684,6 +3753,7 @@
|
|
|
3684
3753
|
}
|
|
3685
3754
|
.e-schedule .e-vertical-view .e-all-day-cells.e-selected-cell:hover {
|
|
3686
3755
|
background-color: #e5e7eb;
|
|
3756
|
+
color: #111827;
|
|
3687
3757
|
}
|
|
3688
3758
|
.e-schedule .e-vertical-view .e-selected-cell {
|
|
3689
3759
|
background-color: #e5e7eb;
|
|
@@ -3691,6 +3761,7 @@
|
|
|
3691
3761
|
}
|
|
3692
3762
|
.e-schedule .e-vertical-view .e-selected-cell:hover {
|
|
3693
3763
|
background-color: #e5e7eb;
|
|
3764
|
+
color: #111827;
|
|
3694
3765
|
}
|
|
3695
3766
|
.e-schedule .e-vertical-view .e-clone-time-indicator,
|
|
3696
3767
|
.e-schedule .e-vertical-view .e-current-time {
|
|
@@ -3716,7 +3787,6 @@
|
|
|
3716
3787
|
border-style: solid;
|
|
3717
3788
|
border-width: 0 0 1px 1px;
|
|
3718
3789
|
color: #374151;
|
|
3719
|
-
text-align: left;
|
|
3720
3790
|
font-size: 12px;
|
|
3721
3791
|
text-align: center;
|
|
3722
3792
|
text-transform: uppercase;
|
|
@@ -3760,6 +3830,10 @@
|
|
|
3760
3830
|
background-color: #e5e7eb;
|
|
3761
3831
|
color: #111827;
|
|
3762
3832
|
}
|
|
3833
|
+
.e-schedule .e-month-view .e-selected-cell .e-date-header,
|
|
3834
|
+
.e-schedule .e-month-agenda-view .e-selected-cell .e-date-header {
|
|
3835
|
+
color: none;
|
|
3836
|
+
}
|
|
3763
3837
|
.e-schedule .e-month-view .e-selected-cell .e-more-indicator,
|
|
3764
3838
|
.e-schedule .e-month-agenda-view .e-selected-cell .e-more-indicator {
|
|
3765
3839
|
color: #111827;
|
|
@@ -3768,6 +3842,9 @@
|
|
|
3768
3842
|
.e-schedule .e-month-agenda-view .e-selected-cell:hover {
|
|
3769
3843
|
background-color: #e5e7eb;
|
|
3770
3844
|
}
|
|
3845
|
+
.e-schedule .e-month-agenda-view .e-content-wrap .e-table-container {
|
|
3846
|
+
overflow: auto;
|
|
3847
|
+
}
|
|
3771
3848
|
.e-schedule .e-month-agenda-view .e-date-header-wrap table td {
|
|
3772
3849
|
border-width: 0 0 1px 0;
|
|
3773
3850
|
text-align: center;
|
|
@@ -3863,6 +3940,64 @@
|
|
|
3863
3940
|
.e-schedule .e-timeline-view .e-current-timeline {
|
|
3864
3941
|
border-left: 1px solid #4f46e5;
|
|
3865
3942
|
}
|
|
3943
|
+
.e-schedule .e-timeline-year-view .e-work-cells {
|
|
3944
|
+
background-color: #f9fafb;
|
|
3945
|
+
border-color: #e5e7eb;
|
|
3946
|
+
border-style: solid;
|
|
3947
|
+
border-width: 0 1px 1px 0;
|
|
3948
|
+
color: #111827;
|
|
3949
|
+
padding: 0;
|
|
3950
|
+
}
|
|
3951
|
+
.e-schedule .e-timeline-year-view .e-work-cells:hover:not(.e-other-month) {
|
|
3952
|
+
background: #f3f4f6;
|
|
3953
|
+
color: #111827;
|
|
3954
|
+
}
|
|
3955
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-work-days {
|
|
3956
|
+
background-color: #fff;
|
|
3957
|
+
}
|
|
3958
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-other-month {
|
|
3959
|
+
color: #6b7280;
|
|
3960
|
+
}
|
|
3961
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-current-day .e-date-header {
|
|
3962
|
+
background-color: #4f46e5;
|
|
3963
|
+
border-radius: 50%;
|
|
3964
|
+
color: #fff;
|
|
3965
|
+
margin: 2px;
|
|
3966
|
+
width: 20px;
|
|
3967
|
+
}
|
|
3968
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell {
|
|
3969
|
+
background-color: #e5e7eb;
|
|
3970
|
+
color: #111827;
|
|
3971
|
+
}
|
|
3972
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-date-header {
|
|
3973
|
+
color: #111827;
|
|
3974
|
+
}
|
|
3975
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-more-indicator {
|
|
3976
|
+
color: #111827;
|
|
3977
|
+
}
|
|
3978
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell:hover {
|
|
3979
|
+
background-color: #e5e7eb;
|
|
3980
|
+
}
|
|
3981
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates {
|
|
3982
|
+
background-color: #f3f4f6;
|
|
3983
|
+
}
|
|
3984
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header {
|
|
3985
|
+
cursor: default;
|
|
3986
|
+
opacity: 0.35;
|
|
3987
|
+
}
|
|
3988
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header:hover {
|
|
3989
|
+
text-decoration: none;
|
|
3990
|
+
}
|
|
3991
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates:hover {
|
|
3992
|
+
background-color: #f3f4f6;
|
|
3993
|
+
}
|
|
3994
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
|
|
3995
|
+
background-color: #f3f4f6;
|
|
3996
|
+
box-shadow: inset 0 0 0 8px #f9fafb;
|
|
3997
|
+
}
|
|
3998
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
|
|
3999
|
+
background-color: #f3f4f6;
|
|
4000
|
+
}
|
|
3866
4001
|
.e-schedule.e-rtl .e-vertical-view .e-date-header-wrap table tbody td:first-child,
|
|
3867
4002
|
.e-schedule.e-rtl .e-vertical-view .e-content-wrap table td:first-child {
|
|
3868
4003
|
border-right-width: 0;
|
|
@@ -1,4 +1,15 @@
|
|
|
1
1
|
@import 'ej2-base/styles/tailwind-definition.scss';
|
|
2
|
+
@import 'ej2-navigations/styles/toolbar/tailwind-definition.scss';
|
|
3
|
+
@import 'ej2-navigations/styles/treeview/tailwind-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/input/tailwind-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/tailwind-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/calendar/tailwind-definition.scss';
|
|
7
|
+
@import 'ej2-calendars/styles/datepicker/tailwind-definition.scss';
|
|
8
|
+
@import 'ej2-calendars/styles/datetimepicker/tailwind-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/drop-down-list/tailwind-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/tailwind-definition.scss';
|
|
11
|
+
@import 'ej2-buttons/styles/button/tailwind-definition.scss';
|
|
12
|
+
@import 'ej2-buttons/styles/check-box/tailwind-definition.scss';
|
|
2
13
|
@import '../recurrence-editor/tailwind-definition.scss';
|
|
3
14
|
@import 'tailwind-definition.scss';
|
|
4
15
|
@import 'icons/tailwind.scss';
|