@syncfusion/ej2-schedule 19.4.50 → 20.1.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +25 -9
- package/README.md +1 -1
- 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 +156 -46
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +156 -46
- 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 +15 -15
- package/src/recurrence-editor/date-generator.js +4 -0
- package/src/schedule/base/schedule.js +4 -0
- package/src/schedule/event-renderer/agenda-base.js +1 -1
- package/src/schedule/event-renderer/month.d.ts +3 -0
- package/src/schedule/event-renderer/month.js +38 -24
- package/src/schedule/event-renderer/timeline-view.js +2 -1
- package/src/schedule/event-renderer/year.js +3 -1
- package/src/schedule/popups/event-window.js +4 -2
- package/src/schedule/renderer/month.d.ts +1 -0
- package/src/schedule/renderer/month.js +29 -12
- package/src/schedule/renderer/renderer.js +2 -1
- package/src/schedule/renderer/timeline-year.d.ts +2 -1
- package/src/schedule/renderer/timeline-year.js +49 -4
- package/src/schedule/renderer/year.js +20 -0
- package/styles/bootstrap-dark.css +19 -8
- package/styles/bootstrap.css +19 -8
- package/styles/bootstrap4.css +20 -9
- package/styles/bootstrap5-dark.css +29 -20
- package/styles/bootstrap5.css +29 -20
- package/styles/fabric-dark.css +19 -8
- package/styles/fabric.css +19 -8
- package/styles/fluent-dark.css +5102 -0
- package/styles/fluent-dark.scss +2 -0
- package/styles/fluent.css +5103 -0
- package/styles/fluent.scss +2 -0
- package/styles/highcontrast-light.css +19 -8
- package/styles/highcontrast.css +20 -9
- package/styles/material-dark.css +19 -8
- package/styles/material.css +19 -8
- package/styles/recurrence-editor/_fluent-dark-definition.scss +1 -0
- package/styles/recurrence-editor/fluent-dark.css +495 -0
- package/styles/recurrence-editor/fluent-dark.scss +3 -0
- package/styles/recurrence-editor/fluent.css +495 -0
- package/styles/recurrence-editor/fluent.scss +3 -0
- package/styles/schedule/_bootstrap4-definition.scss +1 -1
- package/styles/schedule/_bootstrap5-definition.scss +4 -4
- package/styles/schedule/_fluent-dark-definition.scss +1 -0
- package/styles/schedule/_fluent-definition.scss +10 -8
- package/styles/schedule/_highcontrast-definition.scss +1 -1
- package/styles/schedule/_layout.scss +62 -15
- package/styles/schedule/_tailwind-definition.scss +1 -0
- package/styles/schedule/_theme.scss +6 -9
- package/styles/schedule/bootstrap-dark.css +19 -8
- package/styles/schedule/bootstrap.css +19 -8
- package/styles/schedule/bootstrap4.css +20 -9
- package/styles/schedule/bootstrap5-dark.css +29 -20
- package/styles/schedule/bootstrap5.css +29 -20
- package/styles/schedule/fabric-dark.css +19 -8
- package/styles/schedule/fabric.css +19 -8
- package/styles/schedule/fluent-dark.css +4606 -0
- package/styles/schedule/fluent-dark.scss +4 -0
- package/styles/schedule/fluent.css +4607 -0
- package/styles/schedule/fluent.scss +5 -0
- package/styles/schedule/highcontrast-light.css +19 -8
- package/styles/schedule/highcontrast.css +20 -9
- package/styles/schedule/icons/_fluent-dark.scss +1 -0
- package/styles/schedule/icons/_fluent.scss +51 -50
- package/styles/schedule/icons/_tailwind.scss +51 -50
- package/styles/schedule/material-dark.css +19 -8
- package/styles/schedule/material.css +19 -8
- package/styles/schedule/tailwind-dark.css +74 -61
- package/styles/schedule/tailwind.css +74 -61
- package/styles/tailwind-dark.css +74 -61
- package/styles/tailwind.css +74 -61
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
&.e-tbtn-txt {
|
|
71
71
|
.e-icons.e-icon-right.e-btn-icon.e-icon-down-arrow {
|
|
72
72
|
font-size: $schedule-tbar-down-arrow-font-size;
|
|
73
|
-
@if ($schedule-skin != 'bootstrap5') {
|
|
73
|
+
@if ($schedule-skin != 'bootstrap5' and $schedule-skin != 'FluentUI') {
|
|
74
74
|
padding-top: $schedule-tbar-down-arrow-padding-top;
|
|
75
75
|
}
|
|
76
76
|
}
|
|
@@ -303,7 +303,9 @@
|
|
|
303
303
|
}
|
|
304
304
|
|
|
305
305
|
.e-resource-tree.e-treeview .e-text-content {
|
|
306
|
-
|
|
306
|
+
@if ($schedule-skin != 'FluentUI') {
|
|
307
|
+
padding: 0 0 0 12px;
|
|
308
|
+
}
|
|
307
309
|
}
|
|
308
310
|
}
|
|
309
311
|
|
|
@@ -771,6 +773,10 @@
|
|
|
771
773
|
line-height: 21px;
|
|
772
774
|
}
|
|
773
775
|
|
|
776
|
+
@if ($schedule-skin == 'FluentUI') {
|
|
777
|
+
padding-top: $schedule-header-cells-padding;
|
|
778
|
+
}
|
|
779
|
+
|
|
774
780
|
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
775
781
|
line-height: 24px;
|
|
776
782
|
}
|
|
@@ -1778,6 +1784,15 @@
|
|
|
1778
1784
|
}
|
|
1779
1785
|
}
|
|
1780
1786
|
|
|
1787
|
+
&.e-virtual-mask .e-work-cells {
|
|
1788
|
+
background-color: $schedule-disable-dates-color;
|
|
1789
|
+
box-shadow: inset 0 0 0 8px $schedule-work-cells-bg-color;
|
|
1790
|
+
|
|
1791
|
+
&:hover {
|
|
1792
|
+
background-color: $schedule-disable-dates-color;
|
|
1793
|
+
}
|
|
1794
|
+
}
|
|
1795
|
+
|
|
1781
1796
|
.e-event-table {
|
|
1782
1797
|
position: absolute;
|
|
1783
1798
|
top: 0;
|
|
@@ -1913,6 +1928,11 @@
|
|
|
1913
1928
|
top: 0;
|
|
1914
1929
|
}
|
|
1915
1930
|
|
|
1931
|
+
.e-appointment-container.e-event-container {
|
|
1932
|
+
height: $schedule-timeline-work-cells-height;
|
|
1933
|
+
position: relative;
|
|
1934
|
+
}
|
|
1935
|
+
|
|
1916
1936
|
.e-date-header-wrap table col,
|
|
1917
1937
|
.e-content-wrap table col {
|
|
1918
1938
|
width: $schedule-timeline-work-cells-width;
|
|
@@ -2008,7 +2028,8 @@
|
|
|
2008
2028
|
}
|
|
2009
2029
|
|
|
2010
2030
|
&.e-ignore-whitespace .e-work-cells,
|
|
2011
|
-
&.e-ignore-whitespace .e-resource-cells
|
|
2031
|
+
&.e-ignore-whitespace .e-resource-cells,
|
|
2032
|
+
&.e-ignore-whitespace .e-event-container {
|
|
2012
2033
|
height: 42px;
|
|
2013
2034
|
}
|
|
2014
2035
|
|
|
@@ -2789,12 +2810,10 @@
|
|
|
2789
2810
|
}
|
|
2790
2811
|
|
|
2791
2812
|
&.e-tbtn-txt {
|
|
2792
|
-
.e-icons {
|
|
2793
|
-
padding: $schedule-tbar-btn-icn-bgr-padding;
|
|
2794
|
-
}
|
|
2795
|
-
|
|
2796
2813
|
.e-icons.e-icon-right {
|
|
2797
|
-
|
|
2814
|
+
@if ($schedule-skin != 'FluentUI') {
|
|
2815
|
+
padding: $schedule-tbar-btn-icn-right-bgr-padding;
|
|
2816
|
+
}
|
|
2798
2817
|
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
2799
2818
|
font-size: 22px;
|
|
2800
2819
|
}
|
|
@@ -2829,12 +2848,20 @@
|
|
|
2829
2848
|
|
|
2830
2849
|
.e-vertical-view {
|
|
2831
2850
|
.e-header-cells {
|
|
2851
|
+
@if ($schedule-skin == 'FluentUI' or $schedule-skin == 'bootstrap5') {
|
|
2852
|
+
height: $schedule-timezone-enable-bgr-height;
|
|
2853
|
+
padding: $schedule-tbar-btn-bgr-padding;
|
|
2854
|
+
}
|
|
2855
|
+
|
|
2832
2856
|
.e-header-day {
|
|
2833
2857
|
font-size: $schedule-header-day-bgr-font-size;
|
|
2834
2858
|
}
|
|
2835
2859
|
|
|
2836
2860
|
.e-header-date {
|
|
2837
2861
|
font-size: $schedule-header-date-bgr-font-size;
|
|
2862
|
+
@if ($schedule-skin == 'FluentUI') {
|
|
2863
|
+
padding-top: $schedule-more-popup-close-margin-top;
|
|
2864
|
+
}
|
|
2838
2865
|
}
|
|
2839
2866
|
}
|
|
2840
2867
|
|
|
@@ -3744,7 +3771,13 @@
|
|
|
3744
3771
|
.e-resource-icon {
|
|
3745
3772
|
color: $schedule-popup-content-icon-color;
|
|
3746
3773
|
font-size: 18px;
|
|
3747
|
-
|
|
3774
|
+
@if ($schedule-skin == 'FluentUI' or $schedule-skin == 'tailwind') {
|
|
3775
|
+
padding-right: 12px;
|
|
3776
|
+
}
|
|
3777
|
+
|
|
3778
|
+
@else {
|
|
3779
|
+
padding-right: 13px;
|
|
3780
|
+
}
|
|
3748
3781
|
|
|
3749
3782
|
@if ($schedule-skin == 'highcontrast' or $schedule-skin == 'fabric') {
|
|
3750
3783
|
padding-top: 4px;
|
|
@@ -3783,11 +3816,6 @@
|
|
|
3783
3816
|
padding-right: 4px;
|
|
3784
3817
|
}
|
|
3785
3818
|
|
|
3786
|
-
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
3787
|
-
background-color: $schedule-work-cells-bg-color;
|
|
3788
|
-
border-radius: 0 0 6px 6px;
|
|
3789
|
-
}
|
|
3790
|
-
|
|
3791
3819
|
.e-event-edit {
|
|
3792
3820
|
margin-right: 8px;
|
|
3793
3821
|
}
|
|
@@ -4013,7 +4041,14 @@
|
|
|
4013
4041
|
|
|
4014
4042
|
.e-cell-popup .e-date-time-icon,
|
|
4015
4043
|
.e-event-popup .e-date-time-icon {
|
|
4016
|
-
|
|
4044
|
+
|
|
4045
|
+
@if ($schedule-skin == 'FluentUI') {
|
|
4046
|
+
padding-right: 16px;
|
|
4047
|
+
}
|
|
4048
|
+
|
|
4049
|
+
@else {
|
|
4050
|
+
padding-right: 10px;
|
|
4051
|
+
}
|
|
4017
4052
|
}
|
|
4018
4053
|
|
|
4019
4054
|
.e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close .e-close-icon {
|
|
@@ -4069,6 +4104,12 @@
|
|
|
4069
4104
|
}
|
|
4070
4105
|
}
|
|
4071
4106
|
|
|
4107
|
+
@if ($schedule-skin == 'FluentUI') {
|
|
4108
|
+
.e-event-popup .e-popup-header .e-subject-wrap {
|
|
4109
|
+
padding: $schedule-big-event-popup-subject-padding;
|
|
4110
|
+
}
|
|
4111
|
+
}
|
|
4112
|
+
|
|
4072
4113
|
.e-event-popup .e-popup-header .e-header-icon-wrapper {
|
|
4073
4114
|
.e-close-icon,
|
|
4074
4115
|
.e-edit-icon,
|
|
@@ -4107,6 +4148,11 @@
|
|
|
4107
4148
|
}
|
|
4108
4149
|
|
|
4109
4150
|
.e-bigger .e-agenda-view {
|
|
4151
|
+
@if ($schedule-skin == 'FluentUI' or $schedule-skin == 'tailwind') {
|
|
4152
|
+
.e-appointment {
|
|
4153
|
+
padding: $schedule-agenda-big-appointment-padding;
|
|
4154
|
+
}
|
|
4155
|
+
}
|
|
4110
4156
|
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
4111
4157
|
.e-subject {
|
|
4112
4158
|
font-size: 16px;
|
|
@@ -4261,6 +4307,7 @@
|
|
|
4261
4307
|
}
|
|
4262
4308
|
|
|
4263
4309
|
.e-more-event-content {
|
|
4310
|
+
color: $schedule-primary-content-font-color;
|
|
4264
4311
|
height: calc(100% - 35px);
|
|
4265
4312
|
max-height: 150px;
|
|
4266
4313
|
overflow-y: auto;
|
|
@@ -28,6 +28,7 @@ $schedule-current-day-active-color: $schedule-active-color !default;
|
|
|
28
28
|
|
|
29
29
|
$schedule-alternate-cell-border: dotted !default;
|
|
30
30
|
$schedule-header-cells-padding: 8px 8px 0 !default;
|
|
31
|
+
$schedule-agenda-big-appointment-padding: 7px 16px !default;
|
|
31
32
|
$schedule-header-cells-height: 60px !default;
|
|
32
33
|
$schedule-header-cells-width: 36px !default;
|
|
33
34
|
$schedule-month-header-cells-nrml-height: 34px !default;
|
|
@@ -64,7 +64,9 @@
|
|
|
64
64
|
border-style: $border-type;
|
|
65
65
|
border-width: $schedule-vertical-work-cells-border;
|
|
66
66
|
color: $schedule-header-font-color;
|
|
67
|
-
|
|
67
|
+
@if ($schedule-skin != 'FluentUI') {
|
|
68
|
+
text-align: left;
|
|
69
|
+
}
|
|
68
70
|
|
|
69
71
|
&.e-header-cells {
|
|
70
72
|
border-bottom-width: 0;
|
|
@@ -199,7 +201,9 @@
|
|
|
199
201
|
border-style: $border-type;
|
|
200
202
|
border-width: $schedule-month-work-cells-border;
|
|
201
203
|
color: $schedule-header-font-color;
|
|
202
|
-
|
|
204
|
+
@if ($schedule-skin != 'FluentUI') {
|
|
205
|
+
text-align: left;
|
|
206
|
+
}
|
|
203
207
|
|
|
204
208
|
@if ($schedule-skin == 'tailwind') {
|
|
205
209
|
font-size: 12px;
|
|
@@ -254,13 +258,6 @@
|
|
|
254
258
|
background-color: $schedule-select-bg-color;
|
|
255
259
|
color: $schedule-select-font-color;
|
|
256
260
|
|
|
257
|
-
&.e-current-date .e-date-header {
|
|
258
|
-
@if ($schedule-skin == 'bootstrap5') {
|
|
259
|
-
background-color: $schedule-select-font-color;
|
|
260
|
-
color: $schedule-select-bg-color;
|
|
261
|
-
}
|
|
262
|
-
}
|
|
263
|
-
|
|
264
261
|
.e-date-header {
|
|
265
262
|
@if ($schedule-skin == 'highcontrast') {
|
|
266
263
|
color: $schedule-select-font-color;
|
|
@@ -1847,6 +1847,15 @@
|
|
|
1847
1847
|
text-decoration: underline;
|
|
1848
1848
|
}
|
|
1849
1849
|
|
|
1850
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
|
|
1851
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
1852
|
+
box-shadow: inset 0 0 0 8px #2a2a2a;
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1855
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
|
|
1856
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1850
1859
|
.e-schedule .e-timeline-year-view .e-event-table {
|
|
1851
1860
|
position: absolute;
|
|
1852
1861
|
top: 0;
|
|
@@ -1982,6 +1991,12 @@
|
|
|
1982
1991
|
top: 0;
|
|
1983
1992
|
}
|
|
1984
1993
|
|
|
1994
|
+
.e-schedule .e-timeline-view .e-appointment-container.e-event-container,
|
|
1995
|
+
.e-schedule .e-timeline-month-view .e-appointment-container.e-event-container {
|
|
1996
|
+
height: 60px;
|
|
1997
|
+
position: relative;
|
|
1998
|
+
}
|
|
1999
|
+
|
|
1985
2000
|
.e-schedule .e-timeline-view .e-date-header-wrap table col,
|
|
1986
2001
|
.e-schedule .e-timeline-view .e-content-wrap table col,
|
|
1987
2002
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table col,
|
|
@@ -2090,8 +2105,10 @@
|
|
|
2090
2105
|
|
|
2091
2106
|
.e-schedule .e-timeline-view.e-ignore-whitespace .e-work-cells,
|
|
2092
2107
|
.e-schedule .e-timeline-view.e-ignore-whitespace .e-resource-cells,
|
|
2108
|
+
.e-schedule .e-timeline-view.e-ignore-whitespace .e-event-container,
|
|
2093
2109
|
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-work-cells,
|
|
2094
|
-
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-resource-cells
|
|
2110
|
+
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-resource-cells,
|
|
2111
|
+
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-event-container {
|
|
2095
2112
|
height: 42px;
|
|
2096
2113
|
}
|
|
2097
2114
|
|
|
@@ -2870,13 +2887,6 @@
|
|
|
2870
2887
|
min-width: 34px;
|
|
2871
2888
|
}
|
|
2872
2889
|
|
|
2873
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons,
|
|
2874
|
-
.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,
|
|
2875
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons,
|
|
2876
|
-
.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 {
|
|
2877
|
-
padding: 0;
|
|
2878
|
-
}
|
|
2879
|
-
|
|
2880
2890
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
|
|
2881
2891
|
.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,
|
|
2882
2892
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
|
|
@@ -4007,6 +4017,7 @@
|
|
|
4007
4017
|
|
|
4008
4018
|
.e-bigger .e-more-popup-wrapper .e-more-event-content,
|
|
4009
4019
|
.e-more-popup-wrapper .e-more-event-content {
|
|
4020
|
+
color: #f0f0f0;
|
|
4010
4021
|
height: calc(100% - 35px);
|
|
4011
4022
|
max-height: 150px;
|
|
4012
4023
|
overflow-y: auto;
|
|
@@ -1844,6 +1844,15 @@
|
|
|
1844
1844
|
text-decoration: underline;
|
|
1845
1845
|
}
|
|
1846
1846
|
|
|
1847
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
|
|
1848
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
1849
|
+
box-shadow: inset 0 0 0 8px #f8f8f8;
|
|
1850
|
+
}
|
|
1851
|
+
|
|
1852
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
|
|
1853
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
1854
|
+
}
|
|
1855
|
+
|
|
1847
1856
|
.e-schedule .e-timeline-year-view .e-event-table {
|
|
1848
1857
|
position: absolute;
|
|
1849
1858
|
top: 0;
|
|
@@ -1979,6 +1988,12 @@
|
|
|
1979
1988
|
top: 0;
|
|
1980
1989
|
}
|
|
1981
1990
|
|
|
1991
|
+
.e-schedule .e-timeline-view .e-appointment-container.e-event-container,
|
|
1992
|
+
.e-schedule .e-timeline-month-view .e-appointment-container.e-event-container {
|
|
1993
|
+
height: 60px;
|
|
1994
|
+
position: relative;
|
|
1995
|
+
}
|
|
1996
|
+
|
|
1982
1997
|
.e-schedule .e-timeline-view .e-date-header-wrap table col,
|
|
1983
1998
|
.e-schedule .e-timeline-view .e-content-wrap table col,
|
|
1984
1999
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table col,
|
|
@@ -2087,8 +2102,10 @@
|
|
|
2087
2102
|
|
|
2088
2103
|
.e-schedule .e-timeline-view.e-ignore-whitespace .e-work-cells,
|
|
2089
2104
|
.e-schedule .e-timeline-view.e-ignore-whitespace .e-resource-cells,
|
|
2105
|
+
.e-schedule .e-timeline-view.e-ignore-whitespace .e-event-container,
|
|
2090
2106
|
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-work-cells,
|
|
2091
|
-
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-resource-cells
|
|
2107
|
+
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-resource-cells,
|
|
2108
|
+
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-event-container {
|
|
2092
2109
|
height: 42px;
|
|
2093
2110
|
}
|
|
2094
2111
|
|
|
@@ -2867,13 +2884,6 @@
|
|
|
2867
2884
|
min-width: 34px;
|
|
2868
2885
|
}
|
|
2869
2886
|
|
|
2870
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons,
|
|
2871
|
-
.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,
|
|
2872
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons,
|
|
2873
|
-
.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 {
|
|
2874
|
-
padding: 0;
|
|
2875
|
-
}
|
|
2876
|
-
|
|
2877
2887
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
|
|
2878
2888
|
.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,
|
|
2879
2889
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
|
|
@@ -4005,6 +4015,7 @@
|
|
|
4005
4015
|
|
|
4006
4016
|
.e-bigger .e-more-popup-wrapper .e-more-event-content,
|
|
4007
4017
|
.e-more-popup-wrapper .e-more-event-content {
|
|
4018
|
+
color: #333;
|
|
4008
4019
|
height: calc(100% - 35px);
|
|
4009
4020
|
max-height: 150px;
|
|
4010
4021
|
overflow-y: auto;
|
|
@@ -1818,7 +1818,7 @@
|
|
|
1818
1818
|
cursor: default;
|
|
1819
1819
|
font-weight: 400;
|
|
1820
1820
|
height: 35px;
|
|
1821
|
-
padding:
|
|
1821
|
+
padding: 0;
|
|
1822
1822
|
text-align: center;
|
|
1823
1823
|
}
|
|
1824
1824
|
|
|
@@ -1850,6 +1850,15 @@
|
|
|
1850
1850
|
text-decoration: underline;
|
|
1851
1851
|
}
|
|
1852
1852
|
|
|
1853
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
|
|
1854
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
1855
|
+
box-shadow: inset 0 0 0 8px #f8f9fa;
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1858
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
|
|
1859
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
1860
|
+
}
|
|
1861
|
+
|
|
1853
1862
|
.e-schedule .e-timeline-year-view .e-event-table {
|
|
1854
1863
|
position: absolute;
|
|
1855
1864
|
top: 0;
|
|
@@ -1985,6 +1994,12 @@
|
|
|
1985
1994
|
top: 0;
|
|
1986
1995
|
}
|
|
1987
1996
|
|
|
1997
|
+
.e-schedule .e-timeline-view .e-appointment-container.e-event-container,
|
|
1998
|
+
.e-schedule .e-timeline-month-view .e-appointment-container.e-event-container {
|
|
1999
|
+
height: 60px;
|
|
2000
|
+
position: relative;
|
|
2001
|
+
}
|
|
2002
|
+
|
|
1988
2003
|
.e-schedule .e-timeline-view .e-date-header-wrap table col,
|
|
1989
2004
|
.e-schedule .e-timeline-view .e-content-wrap table col,
|
|
1990
2005
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table col,
|
|
@@ -2093,8 +2108,10 @@
|
|
|
2093
2108
|
|
|
2094
2109
|
.e-schedule .e-timeline-view.e-ignore-whitespace .e-work-cells,
|
|
2095
2110
|
.e-schedule .e-timeline-view.e-ignore-whitespace .e-resource-cells,
|
|
2111
|
+
.e-schedule .e-timeline-view.e-ignore-whitespace .e-event-container,
|
|
2096
2112
|
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-work-cells,
|
|
2097
|
-
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-resource-cells
|
|
2113
|
+
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-resource-cells,
|
|
2114
|
+
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-event-container {
|
|
2098
2115
|
height: 42px;
|
|
2099
2116
|
}
|
|
2100
2117
|
|
|
@@ -2874,13 +2891,6 @@
|
|
|
2874
2891
|
min-width: 34px;
|
|
2875
2892
|
}
|
|
2876
2893
|
|
|
2877
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons,
|
|
2878
|
-
.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,
|
|
2879
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons,
|
|
2880
|
-
.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 {
|
|
2881
|
-
padding: 0;
|
|
2882
|
-
}
|
|
2883
|
-
|
|
2884
2894
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
|
|
2885
2895
|
.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,
|
|
2886
2896
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
|
|
@@ -4116,6 +4126,7 @@
|
|
|
4116
4126
|
|
|
4117
4127
|
.e-bigger .e-more-popup-wrapper .e-more-event-content,
|
|
4118
4128
|
.e-more-popup-wrapper .e-more-event-content {
|
|
4129
|
+
color: #212529;
|
|
4119
4130
|
height: calc(100% - 35px);
|
|
4120
4131
|
max-height: 150px;
|
|
4121
4132
|
overflow-y: auto;
|
|
@@ -879,7 +879,7 @@
|
|
|
879
879
|
.e-schedule .e-vertical-view .e-header-cells {
|
|
880
880
|
font-size: 12px;
|
|
881
881
|
height: 60px;
|
|
882
|
-
padding:
|
|
882
|
+
padding: 4px;
|
|
883
883
|
}
|
|
884
884
|
|
|
885
885
|
.e-schedule .e-vertical-view .e-header-cells .e-header-day {
|
|
@@ -1854,6 +1854,15 @@
|
|
|
1854
1854
|
text-decoration: underline;
|
|
1855
1855
|
}
|
|
1856
1856
|
|
|
1857
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
|
|
1858
|
+
background-color: #343a40;
|
|
1859
|
+
box-shadow: inset 0 0 0 8px #282d31;
|
|
1860
|
+
}
|
|
1861
|
+
|
|
1862
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
|
|
1863
|
+
background-color: #343a40;
|
|
1864
|
+
}
|
|
1865
|
+
|
|
1857
1866
|
.e-schedule .e-timeline-year-view .e-event-table {
|
|
1858
1867
|
position: absolute;
|
|
1859
1868
|
top: 0;
|
|
@@ -1989,6 +1998,12 @@
|
|
|
1989
1998
|
top: 0;
|
|
1990
1999
|
}
|
|
1991
2000
|
|
|
2001
|
+
.e-schedule .e-timeline-view .e-appointment-container.e-event-container,
|
|
2002
|
+
.e-schedule .e-timeline-month-view .e-appointment-container.e-event-container {
|
|
2003
|
+
height: 60px;
|
|
2004
|
+
position: relative;
|
|
2005
|
+
}
|
|
2006
|
+
|
|
1992
2007
|
.e-schedule .e-timeline-view .e-date-header-wrap table col,
|
|
1993
2008
|
.e-schedule .e-timeline-view .e-content-wrap table col,
|
|
1994
2009
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table col,
|
|
@@ -2098,8 +2113,10 @@
|
|
|
2098
2113
|
|
|
2099
2114
|
.e-schedule .e-timeline-view.e-ignore-whitespace .e-work-cells,
|
|
2100
2115
|
.e-schedule .e-timeline-view.e-ignore-whitespace .e-resource-cells,
|
|
2116
|
+
.e-schedule .e-timeline-view.e-ignore-whitespace .e-event-container,
|
|
2101
2117
|
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-work-cells,
|
|
2102
|
-
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-resource-cells
|
|
2118
|
+
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-resource-cells,
|
|
2119
|
+
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-event-container {
|
|
2103
2120
|
height: 42px;
|
|
2104
2121
|
}
|
|
2105
2122
|
|
|
@@ -2613,7 +2630,7 @@
|
|
|
2613
2630
|
.e-schedule .e-agenda-view .e-day-date-header {
|
|
2614
2631
|
color: #e9ecef;
|
|
2615
2632
|
cursor: default;
|
|
2616
|
-
padding: 8px
|
|
2633
|
+
padding: 8px 20px 14px 14px;
|
|
2617
2634
|
}
|
|
2618
2635
|
|
|
2619
2636
|
.e-schedule .e-agenda-view .e-day-date-header .e-m-date {
|
|
@@ -2730,7 +2747,7 @@
|
|
|
2730
2747
|
border-left: 3px solid #0d6efd;
|
|
2731
2748
|
border-right: 0;
|
|
2732
2749
|
cursor: default;
|
|
2733
|
-
padding: 0
|
|
2750
|
+
padding: 0 14px;
|
|
2734
2751
|
}
|
|
2735
2752
|
|
|
2736
2753
|
.e-schedule .e-agenda-view .e-appointment:hover {
|
|
@@ -2885,13 +2902,6 @@
|
|
|
2885
2902
|
padding: 8px;
|
|
2886
2903
|
}
|
|
2887
2904
|
|
|
2888
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons,
|
|
2889
|
-
.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,
|
|
2890
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons,
|
|
2891
|
-
.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 {
|
|
2892
|
-
padding: 0;
|
|
2893
|
-
}
|
|
2894
|
-
|
|
2895
2905
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
|
|
2896
2906
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-tbtn-txt .e-icons.e-icon-right,
|
|
2897
2907
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
|
|
@@ -2918,6 +2928,12 @@
|
|
|
2918
2928
|
font-size: 14px;
|
|
2919
2929
|
}
|
|
2920
2930
|
|
|
2931
|
+
.e-bigger .e-schedule .e-vertical-view .e-header-cells,
|
|
2932
|
+
.e-bigger.e-schedule .e-vertical-view .e-header-cells {
|
|
2933
|
+
height: 66px;
|
|
2934
|
+
padding: 8px;
|
|
2935
|
+
}
|
|
2936
|
+
|
|
2921
2937
|
.e-bigger .e-schedule .e-vertical-view .e-header-cells .e-header-day,
|
|
2922
2938
|
.e-bigger.e-schedule .e-vertical-view .e-header-cells .e-header-day {
|
|
2923
2939
|
font-size: 14px;
|
|
@@ -3755,8 +3771,6 @@
|
|
|
3755
3771
|
display: block;
|
|
3756
3772
|
padding: 8px 18px 8px 18px;
|
|
3757
3773
|
text-align: right;
|
|
3758
|
-
background-color: #282d31;
|
|
3759
|
-
border-radius: 0 0 6px 6px;
|
|
3760
3774
|
}
|
|
3761
3775
|
|
|
3762
3776
|
.e-quick-popup-wrapper .e-popup-footer .e-event-edit {
|
|
@@ -4123,6 +4137,7 @@
|
|
|
4123
4137
|
|
|
4124
4138
|
.e-bigger .e-more-popup-wrapper .e-more-event-content,
|
|
4125
4139
|
.e-more-popup-wrapper .e-more-event-content {
|
|
4140
|
+
color: #fff;
|
|
4126
4141
|
height: calc(100% - 35px);
|
|
4127
4142
|
max-height: 150px;
|
|
4128
4143
|
overflow-y: auto;
|
|
@@ -4196,7 +4211,7 @@
|
|
|
4196
4211
|
|
|
4197
4212
|
.e-bigger .e-more-popup-wrapper .e-more-event-close .e-btn-icon,
|
|
4198
4213
|
.e-more-popup-wrapper .e-more-event-close .e-btn-icon {
|
|
4199
|
-
margin-top:
|
|
4214
|
+
margin-top: 3px;
|
|
4200
4215
|
}
|
|
4201
4216
|
|
|
4202
4217
|
.e-bigger .e-more-popup-wrapper .e-more-event-close:focus, .e-bigger .e-more-popup-wrapper .e-more-event-close:hover,
|
|
@@ -4500,12 +4515,6 @@
|
|
|
4500
4515
|
color: #fff;
|
|
4501
4516
|
}
|
|
4502
4517
|
|
|
4503
|
-
.e-schedule .e-month-view .e-selected-cell.e-current-date .e-date-header,
|
|
4504
|
-
.e-schedule .e-month-agenda-view .e-selected-cell.e-current-date .e-date-header {
|
|
4505
|
-
background-color: #fff;
|
|
4506
|
-
color: #343a40;
|
|
4507
|
-
}
|
|
4508
|
-
|
|
4509
4518
|
.e-schedule .e-month-view .e-selected-cell .e-more-indicator,
|
|
4510
4519
|
.e-schedule .e-month-agenda-view .e-selected-cell .e-more-indicator {
|
|
4511
4520
|
color: #fff;
|
|
@@ -880,7 +880,7 @@
|
|
|
880
880
|
.e-schedule .e-vertical-view .e-header-cells {
|
|
881
881
|
font-size: 12px;
|
|
882
882
|
height: 60px;
|
|
883
|
-
padding:
|
|
883
|
+
padding: 4px;
|
|
884
884
|
}
|
|
885
885
|
|
|
886
886
|
.e-schedule .e-vertical-view .e-header-cells .e-header-day {
|
|
@@ -1855,6 +1855,15 @@
|
|
|
1855
1855
|
text-decoration: underline;
|
|
1856
1856
|
}
|
|
1857
1857
|
|
|
1858
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
|
|
1859
|
+
background-color: #e9ecef;
|
|
1860
|
+
box-shadow: inset 0 0 0 8px #f8f9fa;
|
|
1861
|
+
}
|
|
1862
|
+
|
|
1863
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
|
|
1864
|
+
background-color: #e9ecef;
|
|
1865
|
+
}
|
|
1866
|
+
|
|
1858
1867
|
.e-schedule .e-timeline-year-view .e-event-table {
|
|
1859
1868
|
position: absolute;
|
|
1860
1869
|
top: 0;
|
|
@@ -1990,6 +1999,12 @@
|
|
|
1990
1999
|
top: 0;
|
|
1991
2000
|
}
|
|
1992
2001
|
|
|
2002
|
+
.e-schedule .e-timeline-view .e-appointment-container.e-event-container,
|
|
2003
|
+
.e-schedule .e-timeline-month-view .e-appointment-container.e-event-container {
|
|
2004
|
+
height: 60px;
|
|
2005
|
+
position: relative;
|
|
2006
|
+
}
|
|
2007
|
+
|
|
1993
2008
|
.e-schedule .e-timeline-view .e-date-header-wrap table col,
|
|
1994
2009
|
.e-schedule .e-timeline-view .e-content-wrap table col,
|
|
1995
2010
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table col,
|
|
@@ -2099,8 +2114,10 @@
|
|
|
2099
2114
|
|
|
2100
2115
|
.e-schedule .e-timeline-view.e-ignore-whitespace .e-work-cells,
|
|
2101
2116
|
.e-schedule .e-timeline-view.e-ignore-whitespace .e-resource-cells,
|
|
2117
|
+
.e-schedule .e-timeline-view.e-ignore-whitespace .e-event-container,
|
|
2102
2118
|
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-work-cells,
|
|
2103
|
-
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-resource-cells
|
|
2119
|
+
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-resource-cells,
|
|
2120
|
+
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-event-container {
|
|
2104
2121
|
height: 42px;
|
|
2105
2122
|
}
|
|
2106
2123
|
|
|
@@ -2614,7 +2631,7 @@
|
|
|
2614
2631
|
.e-schedule .e-agenda-view .e-day-date-header {
|
|
2615
2632
|
color: #343a40;
|
|
2616
2633
|
cursor: default;
|
|
2617
|
-
padding: 8px
|
|
2634
|
+
padding: 8px 20px 14px 14px;
|
|
2618
2635
|
}
|
|
2619
2636
|
|
|
2620
2637
|
.e-schedule .e-agenda-view .e-day-date-header .e-m-date {
|
|
@@ -2731,7 +2748,7 @@
|
|
|
2731
2748
|
border-left: 3px solid #0d6efd;
|
|
2732
2749
|
border-right: 0;
|
|
2733
2750
|
cursor: default;
|
|
2734
|
-
padding: 0
|
|
2751
|
+
padding: 0 14px;
|
|
2735
2752
|
}
|
|
2736
2753
|
|
|
2737
2754
|
.e-schedule .e-agenda-view .e-appointment:hover {
|
|
@@ -2886,13 +2903,6 @@
|
|
|
2886
2903
|
padding: 8px;
|
|
2887
2904
|
}
|
|
2888
2905
|
|
|
2889
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons,
|
|
2890
|
-
.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,
|
|
2891
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons,
|
|
2892
|
-
.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 {
|
|
2893
|
-
padding: 0;
|
|
2894
|
-
}
|
|
2895
|
-
|
|
2896
2906
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
|
|
2897
2907
|
.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,
|
|
2898
2908
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
|
|
@@ -2919,6 +2929,12 @@
|
|
|
2919
2929
|
font-size: 14px;
|
|
2920
2930
|
}
|
|
2921
2931
|
|
|
2932
|
+
.e-bigger .e-schedule .e-vertical-view .e-header-cells,
|
|
2933
|
+
.e-bigger.e-schedule .e-vertical-view .e-header-cells {
|
|
2934
|
+
height: 66px;
|
|
2935
|
+
padding: 8px;
|
|
2936
|
+
}
|
|
2937
|
+
|
|
2922
2938
|
.e-bigger .e-schedule .e-vertical-view .e-header-cells .e-header-day,
|
|
2923
2939
|
.e-bigger.e-schedule .e-vertical-view .e-header-cells .e-header-day {
|
|
2924
2940
|
font-size: 14px;
|
|
@@ -3756,8 +3772,6 @@
|
|
|
3756
3772
|
display: block;
|
|
3757
3773
|
padding: 8px 18px 8px 18px;
|
|
3758
3774
|
text-align: right;
|
|
3759
|
-
background-color: #f8f9fa;
|
|
3760
|
-
border-radius: 0 0 6px 6px;
|
|
3761
3775
|
}
|
|
3762
3776
|
|
|
3763
3777
|
.e-quick-popup-wrapper .e-popup-footer .e-event-edit {
|
|
@@ -4124,6 +4138,7 @@
|
|
|
4124
4138
|
|
|
4125
4139
|
.e-bigger .e-more-popup-wrapper .e-more-event-content,
|
|
4126
4140
|
.e-more-popup-wrapper .e-more-event-content {
|
|
4141
|
+
color: #212529;
|
|
4127
4142
|
height: calc(100% - 35px);
|
|
4128
4143
|
max-height: 150px;
|
|
4129
4144
|
overflow-y: auto;
|
|
@@ -4197,7 +4212,7 @@
|
|
|
4197
4212
|
|
|
4198
4213
|
.e-bigger .e-more-popup-wrapper .e-more-event-close .e-btn-icon,
|
|
4199
4214
|
.e-more-popup-wrapper .e-more-event-close .e-btn-icon {
|
|
4200
|
-
margin-top:
|
|
4215
|
+
margin-top: 3px;
|
|
4201
4216
|
}
|
|
4202
4217
|
|
|
4203
4218
|
.e-bigger .e-more-popup-wrapper .e-more-event-close:focus, .e-bigger .e-more-popup-wrapper .e-more-event-close:hover,
|
|
@@ -4501,12 +4516,6 @@
|
|
|
4501
4516
|
color: #212529;
|
|
4502
4517
|
}
|
|
4503
4518
|
|
|
4504
|
-
.e-schedule .e-month-view .e-selected-cell.e-current-date .e-date-header,
|
|
4505
|
-
.e-schedule .e-month-agenda-view .e-selected-cell.e-current-date .e-date-header {
|
|
4506
|
-
background-color: #212529;
|
|
4507
|
-
color: #e9ecef;
|
|
4508
|
-
}
|
|
4509
|
-
|
|
4510
4519
|
.e-schedule .e-month-view .e-selected-cell .e-more-indicator,
|
|
4511
4520
|
.e-schedule .e-month-agenda-view .e-selected-cell .e-more-indicator {
|
|
4512
4521
|
color: #212529;
|