@syncfusion/ej2-schedule 20.3.61 → 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 +8 -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 +786 -524
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +821 -535
- 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/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,3 +1,186 @@
|
|
|
1
|
+
/*! TreeView's high contrast theme wise override definitions and variables */
|
|
2
|
+
/* stylelint-disable */
|
|
3
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
4
|
+
/*! calendar fabric theme variables */
|
|
5
|
+
.e-bigger .e-ddl.e-popup .e-input-group .e-clear-icon {
|
|
6
|
+
height: 36px;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.e-popup.e-ddl .e-dropdownbase {
|
|
10
|
+
min-height: 26px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.e-ddl.e-popup {
|
|
14
|
+
border: 0;
|
|
15
|
+
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
|
|
16
|
+
margin-top: 1px;
|
|
17
|
+
}
|
|
18
|
+
.e-ddl.e-popup .e-content.e-nodata {
|
|
19
|
+
background-color: #000;
|
|
20
|
+
}
|
|
21
|
+
.e-ddl.e-popup .e-dropdownbase .e-list-item .e-highlight {
|
|
22
|
+
color: #ffd939;
|
|
23
|
+
}
|
|
24
|
+
.e-ddl.e-popup .e-input-group {
|
|
25
|
+
display: -ms-flexbox;
|
|
26
|
+
display: flex;
|
|
27
|
+
width: auto;
|
|
28
|
+
}
|
|
29
|
+
.e-ddl.e-popup .e-input-group input {
|
|
30
|
+
line-height: 15px;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.e-ddl.e-popup .e-input-group .e-clear-icon {
|
|
34
|
+
border-radius: 20px;
|
|
35
|
+
height: 20px;
|
|
36
|
+
margin: 5px;
|
|
37
|
+
min-width: 20px;
|
|
38
|
+
}
|
|
39
|
+
.e-ddl.e-popup .e-input-group .e-clear-icon::before {
|
|
40
|
+
font-size: 10px;
|
|
41
|
+
}
|
|
42
|
+
.e-ddl.e-popup .e-filter-parent {
|
|
43
|
+
border-left-width: 0;
|
|
44
|
+
border-right-width: 0;
|
|
45
|
+
}
|
|
46
|
+
.e-ddl.e-popup .e-filter-parent .e-input-group.e-control-wrapper:hover:active {
|
|
47
|
+
border-color: #fff;
|
|
48
|
+
}
|
|
49
|
+
.e-bigger .e-ddl.e-popup.e-ddl-device.e-ddl-device-filter {
|
|
50
|
+
margin-top: 0;
|
|
51
|
+
}
|
|
52
|
+
.e-bigger .e-ddl.e-popup .e-list-item, .e-bigger .e-ddl.e-popup .e-list-group-item, .e-bigger .e-ddl.e-popup .e-fixed-head {
|
|
53
|
+
font-size: 15px;
|
|
54
|
+
line-height: 45px;
|
|
55
|
+
padding-left: 0;
|
|
56
|
+
text-indent: 16px;
|
|
57
|
+
}
|
|
58
|
+
.e-bigger .e-ddl.e-popup .e-dd-group .e-list-item {
|
|
59
|
+
padding-left: 4px;
|
|
60
|
+
}
|
|
61
|
+
.e-bigger .e-ddl.e-popup .e-input-group {
|
|
62
|
+
padding: 4px 0;
|
|
63
|
+
}
|
|
64
|
+
.e-bigger .e-ddl.e-popup .e-input-group input {
|
|
65
|
+
height: 46px;
|
|
66
|
+
}
|
|
67
|
+
.e-bigger.e-small .e-ddl.e-popup .e-list-item, .e-bigger.e-small .e-ddl.e-popup .e-list-group-item, .e-bigger.e-small .e-ddl.e-popup .e-fixed-head {
|
|
68
|
+
font-size: 14px;
|
|
69
|
+
line-height: 40px;
|
|
70
|
+
padding-left: 0;
|
|
71
|
+
text-indent: 16px;
|
|
72
|
+
}
|
|
73
|
+
.e-bigger.e-small .e-ddl.e-popup .e-dd-group .e-list-item {
|
|
74
|
+
padding-left: 4px;
|
|
75
|
+
}
|
|
76
|
+
.e-bigger.e-small .e-ddl.e-popup .e-input-group {
|
|
77
|
+
padding: 0;
|
|
78
|
+
}
|
|
79
|
+
.e-bigger.e-small .e-ddl.e-popup .e-input-group input {
|
|
80
|
+
height: 34px;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.e-multi-select-wrapper .e-chips-close.e-close-hooker::before {
|
|
84
|
+
color: #fff;
|
|
85
|
+
top: 12px;
|
|
86
|
+
}
|
|
87
|
+
.e-multiselect .e-multi-select-wrapper input {
|
|
88
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
89
|
+
}
|
|
90
|
+
.e-multiselect .e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
91
|
+
color: #969696;
|
|
92
|
+
font-family: inherit;
|
|
93
|
+
font-size: 14px;
|
|
94
|
+
font-style: italic;
|
|
95
|
+
}
|
|
96
|
+
.e-multiselect .e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
97
|
+
color: #969696;
|
|
98
|
+
font-family: inherit;
|
|
99
|
+
font-size: 14px;
|
|
100
|
+
font-style: italic;
|
|
101
|
+
}
|
|
102
|
+
.e-multiselect .e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
103
|
+
color: #969696;
|
|
104
|
+
font-family: inherit;
|
|
105
|
+
font-size: 14px;
|
|
106
|
+
font-style: italic;
|
|
107
|
+
}
|
|
108
|
+
.e-multiselect .e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
109
|
+
color: #969696;
|
|
110
|
+
font-family: inherit;
|
|
111
|
+
font-size: 14px;
|
|
112
|
+
font-style: italic;
|
|
113
|
+
}
|
|
114
|
+
.e-multi-select-wrapper .e-chips-collection .e-chips:hover .e-chipcontent {
|
|
115
|
+
color: #fff;
|
|
116
|
+
}
|
|
117
|
+
.e-multi-select-wrapper .e-chips-collection .e-chips:hover .e-chips-close.e-icon::before {
|
|
118
|
+
color: #fff;
|
|
119
|
+
}
|
|
120
|
+
.e-multi-select-wrapper .e-chips-collection .e-chips .e-chips-close.e-icon::before {
|
|
121
|
+
line-height: 26px;
|
|
122
|
+
top: 0;
|
|
123
|
+
}
|
|
124
|
+
.e-multi-select-wrapper .e-delim-values.e-delim-view {
|
|
125
|
+
-webkit-text-fill-color: #fff;
|
|
126
|
+
color: #fff;
|
|
127
|
+
}
|
|
128
|
+
.e-multi-select-wrapper.e-delimiter .e-delim-values {
|
|
129
|
+
-webkit-text-fill-color: #fff;
|
|
130
|
+
color: #fff;
|
|
131
|
+
}
|
|
132
|
+
.e-multi-select-wrapper .e-searcher input[type=text] {
|
|
133
|
+
color: #fff;
|
|
134
|
+
height: 100%;
|
|
135
|
+
min-height: 28px;
|
|
136
|
+
}
|
|
137
|
+
.e-multi-select-wrapper .e-searcher input[type=text]::selection {
|
|
138
|
+
background-color: #ffd939;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.e-popup.e-multi-select-list-wrapper.e-ddl.e-checkbox .e-filter-parent .e-clear-icon, .e-bigger .e-popup.e-multi-select-list-wrapper.e-ddl.e-checkbox .e-filter-parent .e-clear-icon {
|
|
142
|
+
padding-left: 0;
|
|
143
|
+
}
|
|
144
|
+
.e-popup.e-multi-select-list-wrapper.e-checkbox .e-selectall-parent {
|
|
145
|
+
border-bottom: 1px solid #fff;
|
|
146
|
+
}
|
|
147
|
+
.e-popup.e-multi-select-list-wrapper.e-checkbox .e-list-parent .e-list-item.e-item-focus.e-active.e-hover {
|
|
148
|
+
background-color: #ffd939;
|
|
149
|
+
}
|
|
150
|
+
.e-popup.e-multi-select-list-wrapper.e-checkbox .e-list-parent .e-list-item.e-item-focus.e-active {
|
|
151
|
+
border: 2px solid #ffd939;
|
|
152
|
+
}
|
|
153
|
+
.e-popup.e-multi-select-list-wrapper.e-checkbox .e-list-parent .e-list-item.e-active.e-hover:not(.e-item-focus) {
|
|
154
|
+
border-bottom: 2px solid #fff;
|
|
155
|
+
border-left: 2px solid #fff;
|
|
156
|
+
border-right: 2px solid #fff;
|
|
157
|
+
border-top: 2px solid #fff;
|
|
158
|
+
}
|
|
159
|
+
.e-popup.e-multi-select-list-wrapper .e-list-parent .e-list-item.e-item-focus {
|
|
160
|
+
border: 2px solid #685708;
|
|
161
|
+
}
|
|
162
|
+
.e-popup.e-multi-select-list-wrapper .e-list-parent .e-list-item.e-active.e-hover {
|
|
163
|
+
background-color: #fff;
|
|
164
|
+
border-bottom: 1px solid #fff;
|
|
165
|
+
border-left: 1px solid #fff;
|
|
166
|
+
border-right: 1px solid #fff;
|
|
167
|
+
border-top: 1px solid #fff;
|
|
168
|
+
}
|
|
169
|
+
.e-popup.e-multi-select-list-wrapper .e-list-parent .e-list-item.e-hover:not(.e-active) {
|
|
170
|
+
border: 2px solid #fff;
|
|
171
|
+
}
|
|
172
|
+
.e-popup.e-multi-select-list-wrapper .e-list-parent .e-list-item:not(.e-hover):not(.e-item-focus) {
|
|
173
|
+
border: 2px solid #000;
|
|
174
|
+
}
|
|
175
|
+
.e-popup.e-multi-select-list-wrapper .e-list-parent .e-list-item.e-active {
|
|
176
|
+
border: 2px solid #ffd939;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.e-multi-select-wrapper.e-down-icon .e-input-group-icon.e-ddl-icon {
|
|
180
|
+
height: 30px;
|
|
181
|
+
width: 30px;
|
|
182
|
+
}
|
|
183
|
+
|
|
1
184
|
/*! recurrence editor theme wise definitions*/ /*! Schedule component's highcontrast theme definitions and variables */
|
|
2
185
|
.e-schedule .e-schedule-toolbar .e-icon-prev::before {
|
|
3
186
|
content: "\e98f";
|
|
@@ -193,7 +376,7 @@
|
|
|
193
376
|
}
|
|
194
377
|
.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 {
|
|
195
378
|
font-size: 12px;
|
|
196
|
-
|
|
379
|
+
margin-top: 3px;
|
|
197
380
|
}
|
|
198
381
|
.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 {
|
|
199
382
|
border-radius: 0%;
|
|
@@ -214,9 +397,6 @@
|
|
|
214
397
|
font-size: 16px;
|
|
215
398
|
text-transform: initial;
|
|
216
399
|
}
|
|
217
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
218
|
-
padding: 0 12px;
|
|
219
|
-
}
|
|
220
400
|
.e-schedule .e-schedule-toolbar.e-rtl .e-hor-nav {
|
|
221
401
|
background: #000;
|
|
222
402
|
border-left: 0;
|
|
@@ -260,6 +440,9 @@
|
|
|
260
440
|
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos > div {
|
|
261
441
|
height: inherit;
|
|
262
442
|
}
|
|
443
|
+
.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 {
|
|
444
|
+
padding: 0;
|
|
445
|
+
}
|
|
263
446
|
.e-schedule.e-device .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
|
|
264
447
|
font-size: 15px;
|
|
265
448
|
}
|
|
@@ -338,6 +521,7 @@
|
|
|
338
521
|
height: 100%;
|
|
339
522
|
position: absolute;
|
|
340
523
|
width: 250px;
|
|
524
|
+
color: #fff;
|
|
341
525
|
}
|
|
342
526
|
.e-schedule .e-resource-tree-popup .e-resource-tree {
|
|
343
527
|
height: 100%;
|
|
@@ -440,7 +624,6 @@
|
|
|
440
624
|
}
|
|
441
625
|
.e-schedule .e-block-appointment {
|
|
442
626
|
background: rgba(255, 255, 255, 0.2);
|
|
443
|
-
border-radius: 2px;
|
|
444
627
|
color: #bfbfbf;
|
|
445
628
|
cursor: default;
|
|
446
629
|
overflow: hidden;
|
|
@@ -698,11 +881,15 @@
|
|
|
698
881
|
.e-schedule .e-vertical-view .e-header-cells .e-header-day {
|
|
699
882
|
display: table;
|
|
700
883
|
font-size: 13px;
|
|
884
|
+
line-height: unset;
|
|
885
|
+
padding-bottom: 0;
|
|
701
886
|
}
|
|
702
887
|
.e-schedule .e-vertical-view .e-header-cells .e-header-date {
|
|
703
888
|
cursor: pointer;
|
|
704
889
|
display: table;
|
|
705
890
|
font-size: 18px;
|
|
891
|
+
line-height: unset;
|
|
892
|
+
padding-top: 0;
|
|
706
893
|
}
|
|
707
894
|
.e-schedule .e-vertical-view .e-header-cells .e-header-date:hover {
|
|
708
895
|
text-decoration: underline;
|
|
@@ -770,6 +957,7 @@
|
|
|
770
957
|
.e-schedule .e-vertical-view .e-all-day-appointment-section:hover, .e-schedule .e-vertical-view .e-all-day-appointment-section:focus {
|
|
771
958
|
background: #685708;
|
|
772
959
|
border-radius: 100%;
|
|
960
|
+
color: #fff;
|
|
773
961
|
}
|
|
774
962
|
.e-schedule .e-vertical-view .e-appointment-hide {
|
|
775
963
|
opacity: 0;
|
|
@@ -922,6 +1110,7 @@
|
|
|
922
1110
|
flex: auto;
|
|
923
1111
|
padding: 0 4px;
|
|
924
1112
|
text-align: left;
|
|
1113
|
+
line-height: unset;
|
|
925
1114
|
}
|
|
926
1115
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
927
1116
|
font-size: 13px;
|
|
@@ -1222,6 +1411,9 @@
|
|
|
1222
1411
|
.e-schedule .e-month-view .e-more-indicator:focus {
|
|
1223
1412
|
text-decoration: underline;
|
|
1224
1413
|
}
|
|
1414
|
+
.e-schedule.e-rtl .e-month-view .e-date-header {
|
|
1415
|
+
margin: 3px 3px 2px;
|
|
1416
|
+
}
|
|
1225
1417
|
.e-schedule.e-rtl .e-month-view .e-left-indent {
|
|
1226
1418
|
border-left: 1px solid #969696;
|
|
1227
1419
|
border-right-width: 0;
|
|
@@ -1394,57 +1586,6 @@
|
|
|
1394
1586
|
.e-schedule .e-timeline-year-view .e-resource-collapse {
|
|
1395
1587
|
transform: rotate(90deg);
|
|
1396
1588
|
}
|
|
1397
|
-
.e-schedule .e-timeline-year-view .e-work-cells {
|
|
1398
|
-
background-color: #1a1a1a;
|
|
1399
|
-
border-color: #969696;
|
|
1400
|
-
border-style: solid;
|
|
1401
|
-
border-width: 0 1px 1px 0;
|
|
1402
|
-
color: #fff;
|
|
1403
|
-
padding: 0;
|
|
1404
|
-
}
|
|
1405
|
-
.e-schedule .e-timeline-year-view .e-work-cells:hover:not(.e-other-month) {
|
|
1406
|
-
background: #685708;
|
|
1407
|
-
color: #fff;
|
|
1408
|
-
}
|
|
1409
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-work-days {
|
|
1410
|
-
background-color: #000;
|
|
1411
|
-
}
|
|
1412
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-other-month {
|
|
1413
|
-
color: #969696;
|
|
1414
|
-
}
|
|
1415
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-current-day .e-date-header {
|
|
1416
|
-
background-color: transparent;
|
|
1417
|
-
border-radius: 50%;
|
|
1418
|
-
color: #ffd939;
|
|
1419
|
-
margin: 2px;
|
|
1420
|
-
width: 20px;
|
|
1421
|
-
}
|
|
1422
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell {
|
|
1423
|
-
background-color: #ffd939;
|
|
1424
|
-
color: #000;
|
|
1425
|
-
}
|
|
1426
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-date-header {
|
|
1427
|
-
color: #000;
|
|
1428
|
-
}
|
|
1429
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-more-indicator {
|
|
1430
|
-
color: #000;
|
|
1431
|
-
}
|
|
1432
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell:hover {
|
|
1433
|
-
background-color: #ffd939;
|
|
1434
|
-
}
|
|
1435
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates {
|
|
1436
|
-
background-color: rgba(0, 0, 0, 0.08);
|
|
1437
|
-
}
|
|
1438
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header {
|
|
1439
|
-
cursor: default;
|
|
1440
|
-
opacity: 0.35;
|
|
1441
|
-
}
|
|
1442
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header:hover {
|
|
1443
|
-
text-decoration: none;
|
|
1444
|
-
}
|
|
1445
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates:hover {
|
|
1446
|
-
background-color: rgba(0, 0, 0, 0.08);
|
|
1447
|
-
}
|
|
1448
1589
|
.e-schedule .e-timeline-year-view .e-content-table {
|
|
1449
1590
|
height: 100%;
|
|
1450
1591
|
}
|
|
@@ -1471,6 +1612,7 @@
|
|
|
1471
1612
|
border-bottom: 1px solid #969696;
|
|
1472
1613
|
border-right: 1px solid #969696;
|
|
1473
1614
|
text-align: center;
|
|
1615
|
+
color: #fff;
|
|
1474
1616
|
}
|
|
1475
1617
|
.e-schedule .e-timeline-year-view .e-month-header.e-current-day {
|
|
1476
1618
|
color: #ffd939;
|
|
@@ -1506,13 +1648,6 @@
|
|
|
1506
1648
|
.e-schedule .e-timeline-year-view .e-work-cells .e-date-header:hover {
|
|
1507
1649
|
text-decoration: underline;
|
|
1508
1650
|
}
|
|
1509
|
-
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
|
|
1510
|
-
background-color: rgba(0, 0, 0, 0.08);
|
|
1511
|
-
box-shadow: inset 0 0 0 8px #1a1a1a;
|
|
1512
|
-
}
|
|
1513
|
-
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
|
|
1514
|
-
background-color: rgba(0, 0, 0, 0.08);
|
|
1515
|
-
}
|
|
1516
1651
|
.e-schedule .e-timeline-year-view .e-event-table {
|
|
1517
1652
|
position: absolute;
|
|
1518
1653
|
top: 0;
|
|
@@ -1609,7 +1744,7 @@
|
|
|
1609
1744
|
.e-schedule .e-timeline-year-view .e-event-table .e-more-indicator:focus {
|
|
1610
1745
|
text-decoration: underline;
|
|
1611
1746
|
}
|
|
1612
|
-
.e-schedule.e-device .e-year-view .e-month-calendar {
|
|
1747
|
+
.e-schedule.e-device .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
|
|
1613
1748
|
max-width: 100%;
|
|
1614
1749
|
min-width: 100%;
|
|
1615
1750
|
}
|
|
@@ -1651,6 +1786,7 @@
|
|
|
1651
1786
|
}
|
|
1652
1787
|
.e-schedule .e-timeline-view .e-date-header-wrap table tbody td.e-time-slots,
|
|
1653
1788
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table tbody td.e-time-slots {
|
|
1789
|
+
background-color: #000;
|
|
1654
1790
|
overflow: inherit;
|
|
1655
1791
|
}
|
|
1656
1792
|
.e-schedule .e-timeline-view .e-date-header-wrap table tbody td > span,
|
|
@@ -1976,6 +2112,7 @@
|
|
|
1976
2112
|
.e-schedule .e-month-agenda-view .e-content-table {
|
|
1977
2113
|
border-bottom: 1px solid #969696;
|
|
1978
2114
|
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
|
|
2115
|
+
height: 100%;
|
|
1979
2116
|
}
|
|
1980
2117
|
.e-schedule .e-month-agenda-view .e-resource-column {
|
|
1981
2118
|
border-bottom: 1px solid #969696;
|
|
@@ -2192,6 +2329,7 @@
|
|
|
2192
2329
|
.e-schedule .e-agenda-view .e-subject-wrap {
|
|
2193
2330
|
display: -ms-flexbox;
|
|
2194
2331
|
display: flex;
|
|
2332
|
+
margin-bottom: 0;
|
|
2195
2333
|
}
|
|
2196
2334
|
.e-schedule .e-agenda-view .e-active-appointment-agenda .e-subject {
|
|
2197
2335
|
color: #000;
|
|
@@ -2345,6 +2483,10 @@
|
|
|
2345
2483
|
min-width: 32px;
|
|
2346
2484
|
z-index: 0;
|
|
2347
2485
|
}
|
|
2486
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-item .e-btn.e-tbar-btn .e-icons.e-btn-icon,
|
|
2487
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-item .e-btn.e-tbar-btn .e-icons.e-btn-icon {
|
|
2488
|
+
font-size: 14px;
|
|
2489
|
+
}
|
|
2348
2490
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-item .e-tbar-btn-text,
|
|
2349
2491
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-item .e-tbar-btn-text {
|
|
2350
2492
|
line-height: inherit;
|
|
@@ -2386,13 +2528,19 @@
|
|
|
2386
2528
|
.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,
|
|
2387
2529
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
|
|
2388
2530
|
.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 {
|
|
2389
|
-
padding:
|
|
2531
|
+
padding: 0 12px 0 0;
|
|
2532
|
+
font-size: 14px;
|
|
2390
2533
|
}
|
|
2391
2534
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn .e-btn-icon,
|
|
2392
2535
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-btn-icon,
|
|
2393
2536
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn .e-btn-icon,
|
|
2394
2537
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-btn-icon {
|
|
2395
2538
|
height: 25px;
|
|
2539
|
+
padding-top: 0;
|
|
2540
|
+
}
|
|
2541
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-tbar-btn-text,
|
|
2542
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-tbar-btn-text {
|
|
2543
|
+
font-size: 16px;
|
|
2396
2544
|
}
|
|
2397
2545
|
.e-bigger .e-schedule .e-more-popup-wrapper .e-header-day,
|
|
2398
2546
|
.e-bigger.e-schedule .e-more-popup-wrapper .e-header-day {
|
|
@@ -2784,9 +2932,6 @@
|
|
|
2784
2932
|
.e-bigger .e-schedule-dialog .e-input-group .e-input-group-icon.e-icon-disable {
|
|
2785
2933
|
display: none;
|
|
2786
2934
|
}
|
|
2787
|
-
.e-bigger .e-schedule-dialog .e-footer-content {
|
|
2788
|
-
padding-right: 26px;
|
|
2789
|
-
}
|
|
2790
2935
|
.e-bigger .e-schedule-dialog.e-rtl .e-all-day-container {
|
|
2791
2936
|
margin-left: 20px;
|
|
2792
2937
|
margin-right: 0;
|
|
@@ -2957,6 +3102,7 @@
|
|
|
2957
3102
|
position: absolute;
|
|
2958
3103
|
right: 6px;
|
|
2959
3104
|
top: 4px;
|
|
3105
|
+
padding: 0;
|
|
2960
3106
|
}
|
|
2961
3107
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-edit,
|
|
2962
3108
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-delete,
|
|
@@ -2983,12 +3129,15 @@
|
|
|
2983
3129
|
width: 100%;
|
|
2984
3130
|
}
|
|
2985
3131
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-schedule-form > span {
|
|
2986
|
-
margin
|
|
3132
|
+
margin: 0 0 4px;
|
|
2987
3133
|
}
|
|
2988
3134
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
2989
3135
|
font-size: 22px;
|
|
2990
3136
|
height: 40px;
|
|
2991
3137
|
}
|
|
3138
|
+
.e-quick-popup-wrapper .e-event-popup .e-popup-header {
|
|
3139
|
+
background-color: #000;
|
|
3140
|
+
}
|
|
2992
3141
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper {
|
|
2993
3142
|
padding: 5px 5px 2px;
|
|
2994
3143
|
}
|
|
@@ -3032,14 +3181,15 @@
|
|
|
3032
3181
|
padding: 0 18px 8px;
|
|
3033
3182
|
}
|
|
3034
3183
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-subject-wrap .e-subject {
|
|
3184
|
+
background-color: rgba(28, 128, 0, 0.3);
|
|
3185
|
+
border-left: 6px solid #1c8000;
|
|
3186
|
+
border-radius: 2px;
|
|
3187
|
+
color: #fff;
|
|
3035
3188
|
cursor: default;
|
|
3036
3189
|
font-size: 20px;
|
|
3037
3190
|
font-weight: 500;
|
|
3038
3191
|
line-height: 1.5;
|
|
3039
3192
|
max-height: 87px;
|
|
3040
|
-
color: #fff;
|
|
3041
|
-
background-color: rgba(28, 128, 0, 0.3);
|
|
3042
|
-
border-left: 6px solid #1c8000;
|
|
3043
3193
|
padding: 8px 0 8px 10px;
|
|
3044
3194
|
}
|
|
3045
3195
|
.e-quick-popup-wrapper .e-event-popup .e-popup-content {
|
|
@@ -3088,8 +3238,7 @@
|
|
|
3088
3238
|
.e-quick-popup-wrapper .e-event-popup .e-resource-icon {
|
|
3089
3239
|
color: #fff;
|
|
3090
3240
|
font-size: 18px;
|
|
3091
|
-
padding
|
|
3092
|
-
padding-top: 4px;
|
|
3241
|
+
padding: 4px 13px 0 0;
|
|
3093
3242
|
}
|
|
3094
3243
|
.e-quick-popup-wrapper .e-cell-popup .e-date-time-details,
|
|
3095
3244
|
.e-quick-popup-wrapper .e-cell-popup .e-location-details,
|
|
@@ -3119,7 +3268,6 @@
|
|
|
3119
3268
|
.e-quick-popup-wrapper .e-popup-footer .e-event-edit,
|
|
3120
3269
|
.e-quick-popup-wrapper .e-popup-footer .e-event-delete {
|
|
3121
3270
|
right: auto;
|
|
3122
|
-
margin-right: 10px;
|
|
3123
3271
|
}
|
|
3124
3272
|
.e-quick-popup-wrapper .e-popup-footer .e-event-edit:disabled,
|
|
3125
3273
|
.e-quick-popup-wrapper .e-popup-footer .e-event-delete:disabled {
|
|
@@ -3131,6 +3279,9 @@
|
|
|
3131
3279
|
right: auto;
|
|
3132
3280
|
text-transform: capitalize;
|
|
3133
3281
|
}
|
|
3282
|
+
.e-quick-popup-wrapper .e-event-popup .e-popup-footer {
|
|
3283
|
+
display: block;
|
|
3284
|
+
}
|
|
3134
3285
|
.e-quick-popup-wrapper.e-rtl {
|
|
3135
3286
|
text-align: right;
|
|
3136
3287
|
}
|
|
@@ -3138,10 +3289,6 @@
|
|
|
3138
3289
|
left: 6px;
|
|
3139
3290
|
right: auto;
|
|
3140
3291
|
}
|
|
3141
|
-
.e-quick-popup-wrapper.e-rtl .e-cell-popup .e-popup-footer {
|
|
3142
|
-
padding: 8px 18px 8px 8px;
|
|
3143
|
-
text-align: left;
|
|
3144
|
-
}
|
|
3145
3292
|
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3146
3293
|
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3147
3294
|
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
@@ -3149,9 +3296,17 @@
|
|
|
3149
3296
|
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3150
3297
|
margin-right: 10px;
|
|
3151
3298
|
}
|
|
3152
|
-
.e-quick-popup-wrapper.e-rtl .e-event-details
|
|
3299
|
+
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3300
|
+
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3153
3301
|
margin-left: 8px;
|
|
3154
3302
|
}
|
|
3303
|
+
.e-quick-popup-wrapper.e-rtl .e-popup-footer {
|
|
3304
|
+
padding: 8px 8px 8px 18px;
|
|
3305
|
+
text-align: left;
|
|
3306
|
+
}
|
|
3307
|
+
.e-quick-popup-wrapper.e-rtl .e-date-time-icon {
|
|
3308
|
+
padding: 0 0 0 10px;
|
|
3309
|
+
}
|
|
3155
3310
|
.e-quick-popup-wrapper.e-device {
|
|
3156
3311
|
bottom: 0;
|
|
3157
3312
|
height: 100%;
|
|
@@ -3165,7 +3320,6 @@
|
|
|
3165
3320
|
top: 0;
|
|
3166
3321
|
width: 100%;
|
|
3167
3322
|
z-index: 1004;
|
|
3168
|
-
background-color: #000;
|
|
3169
3323
|
}
|
|
3170
3324
|
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper {
|
|
3171
3325
|
background-color: #1a1a1a;
|
|
@@ -3209,6 +3363,7 @@
|
|
|
3209
3363
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete {
|
|
3210
3364
|
background-color: transparent;
|
|
3211
3365
|
border: 0;
|
|
3366
|
+
color: #fff;
|
|
3212
3367
|
height: 40px;
|
|
3213
3368
|
width: 40px;
|
|
3214
3369
|
}
|
|
@@ -3240,6 +3395,25 @@
|
|
|
3240
3395
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
3241
3396
|
font-size: 24px;
|
|
3242
3397
|
}
|
|
3398
|
+
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content {
|
|
3399
|
+
padding: 38px 18px 12px;
|
|
3400
|
+
}
|
|
3401
|
+
.e-bigger .e-quick-popup-wrapper .e-popup-footer {
|
|
3402
|
+
padding: 8px 18px 8px 22px;
|
|
3403
|
+
}
|
|
3404
|
+
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-date-time-icon,
|
|
3405
|
+
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-date-time-icon {
|
|
3406
|
+
padding-right: 13px;
|
|
3407
|
+
}
|
|
3408
|
+
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close .e-close-icon {
|
|
3409
|
+
font-size: 16px;
|
|
3410
|
+
}
|
|
3411
|
+
.e-bigger .e-quick-popup-wrapper.e-rtl .e-cell-popup .e-date-time-icon {
|
|
3412
|
+
padding-right: 0;
|
|
3413
|
+
}
|
|
3414
|
+
.e-bigger .e-quick-popup-wrapper.e-rtl .e-event-popup .e-date-time-icon {
|
|
3415
|
+
padding-right: 13px;
|
|
3416
|
+
}
|
|
3243
3417
|
.e-bigger .e-quick-popup-wrapper .e-edit.e-btn.e-small.e-round,
|
|
3244
3418
|
.e-bigger .e-quick-popup-wrapper .e-delete.e-btn.e-small.e-round,
|
|
3245
3419
|
.e-bigger .e-quick-popup-wrapper .e-close.e-btn.e-small.e-round {
|
|
@@ -3260,6 +3434,35 @@
|
|
|
3260
3434
|
padding: 0 5px 0 8px;
|
|
3261
3435
|
}
|
|
3262
3436
|
|
|
3437
|
+
.e-bigger .e-agenda-view .e-appointment {
|
|
3438
|
+
padding: 0 8px;
|
|
3439
|
+
}
|
|
3440
|
+
.e-bigger .e-agenda-view .e-subject {
|
|
3441
|
+
font-size: 16px;
|
|
3442
|
+
}
|
|
3443
|
+
.e-bigger .e-agenda-view .e-date-time {
|
|
3444
|
+
font-size: 14px;
|
|
3445
|
+
}
|
|
3446
|
+
.e-bigger .e-agenda-view .e-day-date-header .e-m-date {
|
|
3447
|
+
font-size: 20px;
|
|
3448
|
+
}
|
|
3449
|
+
.e-bigger .e-agenda-view .e-day-date-header .e-m-day {
|
|
3450
|
+
font-size: 14px;
|
|
3451
|
+
}
|
|
3452
|
+
|
|
3453
|
+
.e-bigger .e-timeline-view .e-resource-text {
|
|
3454
|
+
font-size: 14px;
|
|
3455
|
+
padding-left: 12px;
|
|
3456
|
+
}
|
|
3457
|
+
.e-bigger .e-timeline-view .e-navigate {
|
|
3458
|
+
font-size: 18px;
|
|
3459
|
+
padding: 8px 0 8px 8px;
|
|
3460
|
+
}
|
|
3461
|
+
.e-bigger .e-timeline-view .e-date-header-wrap table tbody td > span {
|
|
3462
|
+
font-size: 18px;
|
|
3463
|
+
padding: 8px 0 8px 8px;
|
|
3464
|
+
}
|
|
3465
|
+
|
|
3263
3466
|
.e-appointment.e-schedule-event-clone {
|
|
3264
3467
|
background: #1c8000;
|
|
3265
3468
|
border-radius: 2px;
|
|
@@ -3362,8 +3565,7 @@
|
|
|
3362
3565
|
height: calc(100% - 35px);
|
|
3363
3566
|
max-height: 150px;
|
|
3364
3567
|
overflow-y: auto;
|
|
3365
|
-
padding
|
|
3366
|
-
padding-right: 10px;
|
|
3568
|
+
padding: 10px 10px 0;
|
|
3367
3569
|
}
|
|
3368
3570
|
.e-bigger .e-more-popup-wrapper .e-more-event-content .e-appointment-border,
|
|
3369
3571
|
.e-more-popup-wrapper .e-more-event-content .e-appointment-border {
|
|
@@ -3410,6 +3612,7 @@
|
|
|
3410
3612
|
color: #fff;
|
|
3411
3613
|
cursor: pointer;
|
|
3412
3614
|
height: 25px;
|
|
3615
|
+
padding: unset;
|
|
3413
3616
|
position: absolute;
|
|
3414
3617
|
right: 6px;
|
|
3415
3618
|
width: 25px;
|
|
@@ -3484,6 +3687,14 @@
|
|
|
3484
3687
|
.e-more-popup-wrapper.e-device .e-more-event-content {
|
|
3485
3688
|
max-height: unset;
|
|
3486
3689
|
}
|
|
3690
|
+
.e-bigger .e-more-popup-wrapper.e-rtl .e-header-date,
|
|
3691
|
+
.e-more-popup-wrapper.e-rtl .e-header-date {
|
|
3692
|
+
padding-right: 10px;
|
|
3693
|
+
}
|
|
3694
|
+
.e-bigger .e-more-popup-wrapper.e-rtl .e-header-day,
|
|
3695
|
+
.e-more-popup-wrapper.e-rtl .e-header-day {
|
|
3696
|
+
padding-right: 10px;
|
|
3697
|
+
}
|
|
3487
3698
|
.e-bigger .e-more-popup-wrapper.e-rtl .e-more-event-close,
|
|
3488
3699
|
.e-more-popup-wrapper.e-rtl .e-more-event-close {
|
|
3489
3700
|
left: 6px;
|
|
@@ -3501,6 +3712,10 @@
|
|
|
3501
3712
|
border-width: 0;
|
|
3502
3713
|
position: relative;
|
|
3503
3714
|
}
|
|
3715
|
+
.e-schedule .e-header-calendar {
|
|
3716
|
+
background-color: none;
|
|
3717
|
+
box-shadow: none;
|
|
3718
|
+
}
|
|
3504
3719
|
.e-schedule .e-vertical-view .e-date-header-wrap table tbody td:first-child,
|
|
3505
3720
|
.e-schedule .e-vertical-view .e-content-wrap table td:first-child {
|
|
3506
3721
|
border-left-width: 0;
|
|
@@ -3560,6 +3775,7 @@
|
|
|
3560
3775
|
}
|
|
3561
3776
|
.e-schedule .e-vertical-view .e-header-cells.e-current-day {
|
|
3562
3777
|
color: #ffd939;
|
|
3778
|
+
font-weight: normal;
|
|
3563
3779
|
}
|
|
3564
3780
|
.e-schedule .e-vertical-view .e-work-cells {
|
|
3565
3781
|
background-color: #1a1a1a;
|
|
@@ -3590,6 +3806,7 @@
|
|
|
3590
3806
|
}
|
|
3591
3807
|
.e-schedule .e-vertical-view .e-all-day-cells.e-selected-cell:hover {
|
|
3592
3808
|
background-color: #ffd939;
|
|
3809
|
+
color: #fff;
|
|
3593
3810
|
}
|
|
3594
3811
|
.e-schedule .e-vertical-view .e-selected-cell {
|
|
3595
3812
|
background-color: #ffd939;
|
|
@@ -3597,6 +3814,7 @@
|
|
|
3597
3814
|
}
|
|
3598
3815
|
.e-schedule .e-vertical-view .e-selected-cell:hover {
|
|
3599
3816
|
background-color: #ffd939;
|
|
3817
|
+
color: #fff;
|
|
3600
3818
|
}
|
|
3601
3819
|
.e-schedule .e-vertical-view .e-clone-time-indicator,
|
|
3602
3820
|
.e-schedule .e-vertical-view .e-current-time {
|
|
@@ -3622,11 +3840,14 @@
|
|
|
3622
3840
|
border-style: solid;
|
|
3623
3841
|
border-width: 0 0 1px;
|
|
3624
3842
|
color: #fff;
|
|
3843
|
+
font-size: none;
|
|
3625
3844
|
text-align: left;
|
|
3845
|
+
text-transform: none;
|
|
3626
3846
|
}
|
|
3627
3847
|
.e-schedule .e-month-view .e-date-header-wrap table td.e-current-day,
|
|
3628
3848
|
.e-schedule .e-month-agenda-view .e-date-header-wrap table td.e-current-day {
|
|
3629
3849
|
color: #ffd939;
|
|
3850
|
+
font-weight: normal;
|
|
3630
3851
|
}
|
|
3631
3852
|
.e-schedule .e-month-view .e-work-cells,
|
|
3632
3853
|
.e-schedule .e-month-agenda-view .e-work-cells {
|
|
@@ -3654,9 +3875,8 @@
|
|
|
3654
3875
|
.e-schedule .e-month-agenda-view .e-current-date .e-date-header {
|
|
3655
3876
|
background-color: transparent;
|
|
3656
3877
|
border-radius: 50%;
|
|
3657
|
-
color: #000;
|
|
3658
|
-
width: 20px;
|
|
3659
3878
|
color: #ffd939;
|
|
3879
|
+
width: 20px;
|
|
3660
3880
|
}
|
|
3661
3881
|
.e-schedule .e-month-view .e-selected-cell,
|
|
3662
3882
|
.e-schedule .e-month-agenda-view .e-selected-cell {
|
|
@@ -3675,6 +3895,9 @@
|
|
|
3675
3895
|
.e-schedule .e-month-agenda-view .e-selected-cell:hover {
|
|
3676
3896
|
background-color: #ffd939;
|
|
3677
3897
|
}
|
|
3898
|
+
.e-schedule .e-month-agenda-view .e-content-wrap .e-table-container {
|
|
3899
|
+
overflow: auto;
|
|
3900
|
+
}
|
|
3678
3901
|
.e-schedule .e-month-agenda-view .e-date-header-wrap table td {
|
|
3679
3902
|
border-width: 0 0 1px 0;
|
|
3680
3903
|
text-align: center;
|
|
@@ -3706,6 +3929,7 @@
|
|
|
3706
3929
|
.e-schedule .e-timeline-view .e-date-header-wrap table td.e-current-day,
|
|
3707
3930
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table td.e-current-day {
|
|
3708
3931
|
color: #ffd939;
|
|
3932
|
+
font-weight: normal;
|
|
3709
3933
|
}
|
|
3710
3934
|
.e-schedule .e-timeline-view .e-work-cells,
|
|
3711
3935
|
.e-schedule .e-timeline-month-view .e-work-cells {
|
|
@@ -3769,6 +3993,64 @@
|
|
|
3769
3993
|
.e-schedule .e-timeline-view .e-current-timeline {
|
|
3770
3994
|
border-left: 1px solid #ffd939;
|
|
3771
3995
|
}
|
|
3996
|
+
.e-schedule .e-timeline-year-view .e-work-cells {
|
|
3997
|
+
background-color: #1a1a1a;
|
|
3998
|
+
border-color: #969696;
|
|
3999
|
+
border-style: solid;
|
|
4000
|
+
border-width: 0 1px 1px 0;
|
|
4001
|
+
color: #fff;
|
|
4002
|
+
padding: 0;
|
|
4003
|
+
}
|
|
4004
|
+
.e-schedule .e-timeline-year-view .e-work-cells:hover:not(.e-other-month) {
|
|
4005
|
+
background: #685708;
|
|
4006
|
+
color: #fff;
|
|
4007
|
+
}
|
|
4008
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-work-days {
|
|
4009
|
+
background-color: #000;
|
|
4010
|
+
}
|
|
4011
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-other-month {
|
|
4012
|
+
color: #969696;
|
|
4013
|
+
}
|
|
4014
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-current-day .e-date-header {
|
|
4015
|
+
background-color: transparent;
|
|
4016
|
+
border-radius: 50%;
|
|
4017
|
+
color: #ffd939;
|
|
4018
|
+
margin: 2px;
|
|
4019
|
+
width: 20px;
|
|
4020
|
+
}
|
|
4021
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell {
|
|
4022
|
+
background-color: #ffd939;
|
|
4023
|
+
color: #000;
|
|
4024
|
+
}
|
|
4025
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-date-header {
|
|
4026
|
+
color: #000;
|
|
4027
|
+
}
|
|
4028
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-more-indicator {
|
|
4029
|
+
color: #000;
|
|
4030
|
+
}
|
|
4031
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell:hover {
|
|
4032
|
+
background-color: #ffd939;
|
|
4033
|
+
}
|
|
4034
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates {
|
|
4035
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
4036
|
+
}
|
|
4037
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header {
|
|
4038
|
+
cursor: default;
|
|
4039
|
+
opacity: 0.35;
|
|
4040
|
+
}
|
|
4041
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header:hover {
|
|
4042
|
+
text-decoration: none;
|
|
4043
|
+
}
|
|
4044
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates:hover {
|
|
4045
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
4046
|
+
}
|
|
4047
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
|
|
4048
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
4049
|
+
box-shadow: inset 0 0 0 8px #1a1a1a;
|
|
4050
|
+
}
|
|
4051
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
|
|
4052
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
4053
|
+
}
|
|
3772
4054
|
.e-schedule.e-rtl .e-vertical-view .e-date-header-wrap table tbody td:first-child,
|
|
3773
4055
|
.e-schedule.e-rtl .e-vertical-view .e-content-wrap table td:first-child {
|
|
3774
4056
|
border-right-width: 0;
|