@syncfusion/ej2-vue-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.
Files changed (57) hide show
  1. package/CHANGELOG.md +25 -9
  2. package/README.md +1 -1
  3. package/dist/ej2-vue-schedule.umd.min.js +2 -2
  4. package/dist/es6/ej2-vue-schedule.es2015.js +135 -11
  5. package/dist/es6/ej2-vue-schedule.es2015.js.map +1 -1
  6. package/dist/es6/ej2-vue-schedule.es5.js +91 -10
  7. package/dist/es6/ej2-vue-schedule.es5.js.map +1 -1
  8. package/dist/global/ej2-vue-schedule.min.js +2 -2
  9. package/package.json +8 -8
  10. package/src/recurrence-editor/recurrenceeditor.component.d.ts +1 -0
  11. package/src/recurrence-editor/recurrenceeditor.component.js +10 -1
  12. package/src/schedule/headerrows.directive.d.ts +3 -1
  13. package/src/schedule/headerrows.directive.js +24 -2
  14. package/src/schedule/resources.directive.d.ts +3 -1
  15. package/src/schedule/resources.directive.js +24 -2
  16. package/src/schedule/schedule.component.d.ts +1 -0
  17. package/src/schedule/schedule.component.js +10 -1
  18. package/src/schedule/views.directive.d.ts +3 -1
  19. package/src/schedule/views.directive.js +24 -2
  20. package/styles/bootstrap-dark.css +19 -8
  21. package/styles/bootstrap.css +19 -8
  22. package/styles/bootstrap4.css +20 -9
  23. package/styles/bootstrap5-dark.css +29 -20
  24. package/styles/bootstrap5.css +29 -20
  25. package/styles/fabric-dark.css +19 -8
  26. package/styles/fabric.css +19 -8
  27. package/styles/fluent-dark.css +5102 -0
  28. package/styles/fluent-dark.scss +2 -0
  29. package/styles/fluent.css +5103 -0
  30. package/styles/fluent.scss +2 -0
  31. package/styles/highcontrast-light.css +19 -8
  32. package/styles/highcontrast.css +20 -9
  33. package/styles/material-dark.css +19 -8
  34. package/styles/material.css +19 -8
  35. package/styles/recurrence-editor/fluent-dark.css +495 -0
  36. package/styles/recurrence-editor/fluent-dark.scss +1 -0
  37. package/styles/recurrence-editor/fluent.css +495 -0
  38. package/styles/recurrence-editor/fluent.scss +1 -0
  39. package/styles/schedule/bootstrap-dark.css +19 -8
  40. package/styles/schedule/bootstrap.css +19 -8
  41. package/styles/schedule/bootstrap4.css +20 -9
  42. package/styles/schedule/bootstrap5-dark.css +29 -20
  43. package/styles/schedule/bootstrap5.css +29 -20
  44. package/styles/schedule/fabric-dark.css +19 -8
  45. package/styles/schedule/fabric.css +19 -8
  46. package/styles/schedule/fluent-dark.css +4606 -0
  47. package/styles/schedule/fluent-dark.scss +1 -0
  48. package/styles/schedule/fluent.css +4607 -0
  49. package/styles/schedule/fluent.scss +1 -0
  50. package/styles/schedule/highcontrast-light.css +19 -8
  51. package/styles/schedule/highcontrast.css +20 -9
  52. package/styles/schedule/material-dark.css +19 -8
  53. package/styles/schedule/material.css +19 -8
  54. package/styles/schedule/tailwind-dark.css +74 -61
  55. package/styles/schedule/tailwind.css +74 -61
  56. package/styles/tailwind-dark.css +74 -61
  57. package/styles/tailwind.css +74 -61
@@ -0,0 +1 @@
1
+ @import 'ej2-schedule/styles/schedule/fluent.scss';
@@ -1843,6 +1843,15 @@
1843
1843
  text-decoration: underline;
1844
1844
  }
1845
1845
 
1846
+ .e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
1847
+ background-color: rgba(0, 0, 0, 0.08);
1848
+ box-shadow: inset 0 0 0 8px #e4e4e4;
1849
+ }
1850
+
1851
+ .e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
1852
+ background-color: rgba(0, 0, 0, 0.08);
1853
+ }
1854
+
1846
1855
  .e-schedule .e-timeline-year-view .e-event-table {
1847
1856
  position: absolute;
1848
1857
  top: 0;
@@ -1978,6 +1987,12 @@
1978
1987
  top: 0;
1979
1988
  }
1980
1989
 
1990
+ .e-schedule .e-timeline-view .e-appointment-container.e-event-container,
1991
+ .e-schedule .e-timeline-month-view .e-appointment-container.e-event-container {
1992
+ height: 60px;
1993
+ position: relative;
1994
+ }
1995
+
1981
1996
  .e-schedule .e-timeline-view .e-date-header-wrap table col,
1982
1997
  .e-schedule .e-timeline-view .e-content-wrap table col,
1983
1998
  .e-schedule .e-timeline-month-view .e-date-header-wrap table col,
@@ -2086,8 +2101,10 @@
2086
2101
 
2087
2102
  .e-schedule .e-timeline-view.e-ignore-whitespace .e-work-cells,
2088
2103
  .e-schedule .e-timeline-view.e-ignore-whitespace .e-resource-cells,
2104
+ .e-schedule .e-timeline-view.e-ignore-whitespace .e-event-container,
2089
2105
  .e-schedule .e-timeline-month-view.e-ignore-whitespace .e-work-cells,
2090
- .e-schedule .e-timeline-month-view.e-ignore-whitespace .e-resource-cells {
2106
+ .e-schedule .e-timeline-month-view.e-ignore-whitespace .e-resource-cells,
2107
+ .e-schedule .e-timeline-month-view.e-ignore-whitespace .e-event-container {
2091
2108
  height: 42px;
2092
2109
  }
2093
2110
 
@@ -2867,13 +2884,6 @@
2867
2884
  padding: 0 1.5px;
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,
@@ -4004,6 +4014,7 @@
4004
4014
 
4005
4015
  .e-bigger .e-more-popup-wrapper .e-more-event-content,
4006
4016
  .e-more-popup-wrapper .e-more-event-content {
4017
+ color: #000;
4007
4018
  height: calc(100% - 35px);
4008
4019
  max-height: 150px;
4009
4020
  overflow-y: auto;
@@ -1851,6 +1851,15 @@
1851
1851
  text-decoration: underline;
1852
1852
  }
1853
1853
 
1854
+ .e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
1855
+ background-color: rgba(0, 0, 0, 0.08);
1856
+ box-shadow: inset 0 0 0 8px #1a1a1a;
1857
+ }
1858
+
1859
+ .e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
1860
+ background-color: rgba(0, 0, 0, 0.08);
1861
+ }
1862
+
1854
1863
  .e-schedule .e-timeline-year-view .e-event-table {
1855
1864
  position: absolute;
1856
1865
  top: 0;
@@ -1986,6 +1995,12 @@
1986
1995
  top: 0;
1987
1996
  }
1988
1997
 
1998
+ .e-schedule .e-timeline-view .e-appointment-container.e-event-container,
1999
+ .e-schedule .e-timeline-month-view .e-appointment-container.e-event-container {
2000
+ height: 60px;
2001
+ position: relative;
2002
+ }
2003
+
1989
2004
  .e-schedule .e-timeline-view .e-date-header-wrap table col,
1990
2005
  .e-schedule .e-timeline-view .e-content-wrap table col,
1991
2006
  .e-schedule .e-timeline-month-view .e-date-header-wrap table col,
@@ -2094,8 +2109,10 @@
2094
2109
 
2095
2110
  .e-schedule .e-timeline-view.e-ignore-whitespace .e-work-cells,
2096
2111
  .e-schedule .e-timeline-view.e-ignore-whitespace .e-resource-cells,
2112
+ .e-schedule .e-timeline-view.e-ignore-whitespace .e-event-container,
2097
2113
  .e-schedule .e-timeline-month-view.e-ignore-whitespace .e-work-cells,
2098
- .e-schedule .e-timeline-month-view.e-ignore-whitespace .e-resource-cells {
2114
+ .e-schedule .e-timeline-month-view.e-ignore-whitespace .e-resource-cells,
2115
+ .e-schedule .e-timeline-month-view.e-ignore-whitespace .e-event-container {
2099
2116
  height: 42px;
2100
2117
  }
2101
2118
 
@@ -2875,13 +2892,6 @@
2875
2892
  padding: 0 1.5px;
2876
2893
  }
2877
2894
 
2878
- .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons,
2879
- .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,
2880
- .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons,
2881
- .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 {
2882
- padding: 0;
2883
- }
2884
-
2885
2895
  .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
2886
2896
  .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,
2887
2897
  .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
@@ -4030,6 +4040,7 @@
4030
4040
 
4031
4041
  .e-bigger .e-more-popup-wrapper .e-more-event-content,
4032
4042
  .e-more-popup-wrapper .e-more-event-content {
4043
+ color: #fff;
4033
4044
  height: calc(100% - 35px);
4034
4045
  max-height: 150px;
4035
4046
  overflow-y: auto;
@@ -4101,7 +4112,7 @@
4101
4112
 
4102
4113
  .e-bigger .e-more-popup-wrapper .e-more-event-close .e-btn-icon,
4103
4114
  .e-more-popup-wrapper .e-more-event-close .e-btn-icon {
4104
- margin-top: 3px;
4115
+ margin-top: 0;
4105
4116
  }
4106
4117
 
4107
4118
  .e-bigger .e-more-popup-wrapper .e-more-event-close:focus, .e-bigger .e-more-popup-wrapper .e-more-event-close:hover,
@@ -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 #424242;
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
 
@@ -2868,13 +2885,6 @@
2868
2885
  padding: 0 1.5px;
2869
2886
  }
2870
2887
 
2871
- .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons,
2872
- .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,
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
- padding: 0;
2876
- }
2877
-
2878
2888
  .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
2879
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.e-icon-right,
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,
@@ -4006,6 +4016,7 @@
4006
4016
 
4007
4017
  .e-bigger .e-more-popup-wrapper .e-more-event-content,
4008
4018
  .e-more-popup-wrapper .e-more-event-content {
4019
+ color: #fff;
4009
4020
  height: calc(100% - 35px);
4010
4021
  max-height: 150px;
4011
4022
  overflow-y: auto;
@@ -1848,6 +1848,15 @@
1848
1848
  text-decoration: underline;
1849
1849
  }
1850
1850
 
1851
+ .e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
1852
+ background-color: rgba(0, 0, 0, 0.08);
1853
+ box-shadow: inset 0 0 0 8px #fafafa;
1854
+ }
1855
+
1856
+ .e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
1857
+ background-color: rgba(0, 0, 0, 0.08);
1858
+ }
1859
+
1851
1860
  .e-schedule .e-timeline-year-view .e-event-table {
1852
1861
  position: absolute;
1853
1862
  top: 0;
@@ -1983,6 +1992,12 @@
1983
1992
  top: 0;
1984
1993
  }
1985
1994
 
1995
+ .e-schedule .e-timeline-view .e-appointment-container.e-event-container,
1996
+ .e-schedule .e-timeline-month-view .e-appointment-container.e-event-container {
1997
+ height: 60px;
1998
+ position: relative;
1999
+ }
2000
+
1986
2001
  .e-schedule .e-timeline-view .e-date-header-wrap table col,
1987
2002
  .e-schedule .e-timeline-view .e-content-wrap table col,
1988
2003
  .e-schedule .e-timeline-month-view .e-date-header-wrap table col,
@@ -2091,8 +2106,10 @@
2091
2106
 
2092
2107
  .e-schedule .e-timeline-view.e-ignore-whitespace .e-work-cells,
2093
2108
  .e-schedule .e-timeline-view.e-ignore-whitespace .e-resource-cells,
2109
+ .e-schedule .e-timeline-view.e-ignore-whitespace .e-event-container,
2094
2110
  .e-schedule .e-timeline-month-view.e-ignore-whitespace .e-work-cells,
2095
- .e-schedule .e-timeline-month-view.e-ignore-whitespace .e-resource-cells {
2111
+ .e-schedule .e-timeline-month-view.e-ignore-whitespace .e-resource-cells,
2112
+ .e-schedule .e-timeline-month-view.e-ignore-whitespace .e-event-container {
2096
2113
  height: 42px;
2097
2114
  }
2098
2115
 
@@ -2872,13 +2889,6 @@
2872
2889
  padding: 0 1.5px;
2873
2890
  }
2874
2891
 
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
- .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
- padding: 0;
2880
- }
2881
-
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,
2883
2893
  .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,
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,
@@ -4000,6 +4010,7 @@
4000
4010
 
4001
4011
  .e-bigger .e-more-popup-wrapper .e-more-event-content,
4002
4012
  .e-more-popup-wrapper .e-more-event-content {
4013
+ color: rgba(0, 0, 0, 0.87);
4003
4014
  height: calc(100% - 35px);
4004
4015
  max-height: 150px;
4005
4016
  overflow-y: auto;
@@ -1,203 +1,203 @@
1
1
  @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
2
2
  /*! Schedule component's tailwind theme definitions and variables */
3
3
  .e-schedule .e-schedule-toolbar .e-icon-prev::before {
4
- content: '\e70f';
4
+ content: '\e765';
5
5
  }
6
6
 
7
7
  .e-schedule .e-schedule-toolbar .e-icon-next::before {
8
- content: '\e7b7';
8
+ content: '\e748';
9
9
  }
10
10
 
11
11
  .e-schedule .e-schedule-toolbar .e-icon-add::before {
12
- content: '\e78a';
12
+ content: '\e805';
13
13
  }
14
14
 
15
15
  .e-schedule .e-schedule-toolbar .e-icon-today::before {
16
- content: '\e767';
16
+ content: '\e778';
17
17
  }
18
18
 
19
19
  .e-schedule .e-schedule-toolbar .e-icon-down-arrow::before {
20
- content: '\e7b3';
20
+ content: '\e729';
21
21
  }
22
22
 
23
23
  .e-schedule .e-schedule-toolbar .e-icon-day::before {
24
- content: '\e742';
24
+ content: '\e75e';
25
25
  }
26
26
 
27
27
  .e-schedule .e-schedule-toolbar .e-icon-week::before {
28
- content: '\e795';
28
+ content: '\e817';
29
29
  }
30
30
 
31
31
  .e-schedule .e-schedule-toolbar .e-icon-workweek::before {
32
- content: '\e795';
32
+ content: '\e817';
33
33
  }
34
34
 
35
35
  .e-schedule .e-schedule-toolbar .e-icon-month::before {
36
- content: '\e719';
36
+ content: '\e7c5';
37
37
  }
38
38
 
39
39
  .e-schedule .e-schedule-toolbar .e-icon-month-agenda::before {
40
- content: '\e770';
40
+ content: '\e75b';
41
41
  }
42
42
 
43
43
  .e-schedule .e-schedule-toolbar .e-icon-agenda::before {
44
- content: '\e718';
44
+ content: '\e74c';
45
45
  }
46
46
 
47
47
  .e-schedule .e-schedule-toolbar .e-icon-year::before {
48
- content: '\e719';
48
+ content: '\e7c5';
49
49
  }
50
50
 
51
51
  .e-schedule .e-schedule-toolbar .e-icon-timeline-year-vertical::before {
52
- content: '\e740';
52
+ content: '\e876';
53
53
  }
54
54
 
55
55
  .e-schedule .e-schedule-toolbar .e-icon-timeline-year-horizontal::before {
56
- content: '\e740';
56
+ content: '\e876';
57
57
  }
58
58
 
59
59
  .e-schedule .e-schedule-toolbar .e-icon-timeline-day::before {
60
- content: '\e7e6';
60
+ content: '\e7da';
61
61
  }
62
62
 
63
63
  .e-schedule .e-schedule-toolbar .e-icon-timeline-week::before {
64
- content: '\e74e';
64
+ content: '\e81f';
65
65
  }
66
66
 
67
67
  .e-schedule .e-schedule-toolbar .e-icon-timeline-workweek::before {
68
- content: '\e73a';
68
+ content: '\e720';
69
69
  }
70
70
 
71
71
  .e-schedule .e-schedule-toolbar .e-icon-timeline-month::before {
72
- content: '\e740';
72
+ content: '\e876';
73
73
  }
74
74
 
75
75
  .e-schedule .e-schedule-toolbar.e-toolbar .e-popup-down-icon::before {
76
- content: '\e75b';
76
+ content: '\e770';
77
77
  }
78
78
 
79
79
  .e-schedule .e-schedule-toolbar.e-toolbar .e-popup-up-icon::before {
80
- content: '\e75b';
80
+ content: '\e770';
81
81
  }
82
82
 
83
83
  .e-schedule .e-schedule-toolbar.e-rtl .e-icon-prev::before {
84
- content: '\e7b7';
84
+ content: '\e748';
85
85
  }
86
86
 
87
87
  .e-schedule .e-schedule-toolbar.e-rtl .e-icon-next::before {
88
- content: '\e70f';
88
+ content: '\e765';
89
89
  }
90
90
 
91
91
  .e-schedule .e-schedule-resource-toolbar .e-icon-menu::before {
92
- content: '\e75c';
92
+ content: '\e799';
93
93
  }
94
94
 
95
95
  .e-schedule .e-schedule-resource-toolbar .e-icon-next::before {
96
- content: '\e707';
96
+ content: '\e748';
97
97
  }
98
98
 
99
99
  .e-schedule .e-close-icon::before {
100
- content: '\e771';
100
+ content: '\e7e7';
101
101
  }
102
102
 
103
103
  .e-schedule .e-block-indicator::before {
104
- content: '\e77e';
104
+ content: '\e839';
105
105
  }
106
106
 
107
107
  .e-schedule .e-appointment .e-recurrence-icon::before {
108
- content: '\e71d';
108
+ content: '\e772';
109
109
  }
110
110
 
111
111
  .e-schedule .e-appointment .e-recurrence-edit-icon::before {
112
- content: '\e72b';
112
+ content: '\e789';
113
113
  }
114
114
 
115
115
  .e-schedule .e-appointment .e-up-icon::before {
116
- content: '\e798';
116
+ content: '\e822';
117
117
  }
118
118
 
119
119
  .e-schedule .e-appointment .e-down-icon::before {
120
- content: '\e738';
120
+ content: '\e7fe';
121
121
  }
122
122
 
123
123
  .e-schedule .e-appointment .e-left-icon::before {
124
- content: '\e78b';
124
+ content: '\e744';
125
125
  }
126
126
 
127
127
  .e-schedule .e-appointment .e-right-icon::before {
128
- content: '\e751';
128
+ content: '\e7a9';
129
129
  }
130
130
 
131
131
  .e-schedule .e-vertical-view .e-all-day-cells .e-all-day-appointment-section::before {
132
- content: '\e706';
132
+ content: '\e729';
133
133
  }
134
134
 
135
135
  .e-schedule.e-rtl .e-appointment .e-left-icon::before {
136
- content: '\e751';
136
+ content: '\e7a9';
137
137
  }
138
138
 
139
139
  .e-schedule.e-rtl .e-appointment .e-right-icon::before {
140
- content: '\e78b';
140
+ content: '\e744';
141
141
  }
142
142
 
143
143
  .e-schedule .e-resource-tree-icon::before {
144
- content: '\e707';
144
+ content: '\e748';
145
145
  }
146
146
 
147
147
  .e-schedule-dialog.e-device .e-back-icon::before {
148
- content: '\e7a5';
148
+ content: '\e773';
149
149
  }
150
150
 
151
151
  .e-schedule-dialog.e-device .e-save-icon::before {
152
- content: '\e704';
152
+ content: '\e7c8';
153
153
  }
154
154
 
155
155
  .e-schedule-dialog.e-device .e-recurrence-container .e-recurrence-edit-button .e-recurrence-edit.e-icons::before {
156
- content: '\e7d2';
156
+ content: '\e730';
157
157
  }
158
158
 
159
159
  .e-schedule-dialog.e-device.e-rtl .e-back-icon::before {
160
- content: '\e7a8';
160
+ content: '\e7f9';
161
161
  }
162
162
 
163
163
  .e-quick-popup-wrapper .e-edit-icon::before {
164
- content: '\e7d2';
164
+ content: '\e730';
165
165
  }
166
166
 
167
167
  .e-quick-popup-wrapper .e-delete-icon::before {
168
- content: '\e78d';
168
+ content: '\e820';
169
169
  }
170
170
 
171
171
  .e-quick-popup-wrapper .e-close-icon::before {
172
- content: '\e771';
172
+ content: '\e7e7';
173
173
  }
174
174
 
175
175
  .e-quick-popup-wrapper .e-time-icon::before {
176
- content: '\e730';
176
+ content: '\e705';
177
177
  }
178
178
 
179
179
  .e-quick-popup-wrapper .e-location-icon::before {
180
- content: '\e755';
180
+ content: '\e756';
181
181
  }
182
182
 
183
183
  .e-quick-popup-wrapper .e-time-zone-icon::before {
184
- content: '\e736';
184
+ content: '\e804';
185
185
  }
186
186
 
187
187
  .e-quick-popup-wrapper .e-description-icon::before {
188
- content: '\e7b6';
188
+ content: '\e7c0';
189
189
  }
190
190
 
191
191
  .e-quick-popup-wrapper .e-resource-icon::before {
192
- content: '\e790';
192
+ content: '\e7b9';
193
193
  }
194
194
 
195
195
  .e-quick-popup-wrapper .e-date-time-icon::before {
196
- content: '\e7e6';
196
+ content: '\e7da';
197
197
  }
198
198
 
199
199
  .e-more-popup-wrapper.e-device .e-close-icon::before {
200
- content: '\e771';
200
+ content: '\e7e7';
201
201
  }
202
202
 
203
203
  /*! schedule component layout */
@@ -1853,6 +1853,15 @@
1853
1853
  text-decoration: underline;
1854
1854
  }
1855
1855
 
1856
+ .e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
1857
+ background-color: #374151;
1858
+ box-shadow: inset 0 0 0 8px #232e3e;
1859
+ }
1860
+
1861
+ .e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
1862
+ background-color: #374151;
1863
+ }
1864
+
1856
1865
  .e-schedule .e-timeline-year-view .e-event-table {
1857
1866
  position: absolute;
1858
1867
  top: 0;
@@ -1988,6 +1997,12 @@
1988
1997
  top: 0;
1989
1998
  }
1990
1999
 
2000
+ .e-schedule .e-timeline-view .e-appointment-container.e-event-container,
2001
+ .e-schedule .e-timeline-month-view .e-appointment-container.e-event-container {
2002
+ height: 60px;
2003
+ position: relative;
2004
+ }
2005
+
1991
2006
  .e-schedule .e-timeline-view .e-date-header-wrap table col,
1992
2007
  .e-schedule .e-timeline-view .e-content-wrap table col,
1993
2008
  .e-schedule .e-timeline-month-view .e-date-header-wrap table col,
@@ -2097,8 +2112,10 @@
2097
2112
 
2098
2113
  .e-schedule .e-timeline-view.e-ignore-whitespace .e-work-cells,
2099
2114
  .e-schedule .e-timeline-view.e-ignore-whitespace .e-resource-cells,
2115
+ .e-schedule .e-timeline-view.e-ignore-whitespace .e-event-container,
2100
2116
  .e-schedule .e-timeline-month-view.e-ignore-whitespace .e-work-cells,
2101
- .e-schedule .e-timeline-month-view.e-ignore-whitespace .e-resource-cells {
2117
+ .e-schedule .e-timeline-month-view.e-ignore-whitespace .e-resource-cells,
2118
+ .e-schedule .e-timeline-month-view.e-ignore-whitespace .e-event-container {
2102
2119
  height: 42px;
2103
2120
  }
2104
2121
 
@@ -2884,13 +2901,6 @@
2884
2901
  padding: 10px 8px 6px;
2885
2902
  }
2886
2903
 
2887
- .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons,
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,
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
- padding: 0;
2892
- }
2893
-
2894
2904
  .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
2895
2905
  .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,
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,
@@ -3726,7 +3736,7 @@
3726
3736
  .e-quick-popup-wrapper .e-event-popup .e-resource-icon {
3727
3737
  color: #9ca3af;
3728
3738
  font-size: 18px;
3729
- padding-right: 13px;
3739
+ padding-right: 12px;
3730
3740
  font-size: 18px;
3731
3741
  padding: 2px 12px 0 0;
3732
3742
  }
@@ -3754,8 +3764,6 @@
3754
3764
  display: block;
3755
3765
  padding: 8px 18px 8px 18px;
3756
3766
  text-align: right;
3757
- background-color: #232e3e;
3758
- border-radius: 0 0 6px 6px;
3759
3767
  }
3760
3768
 
3761
3769
  .e-quick-popup-wrapper .e-popup-footer .e-event-edit {
@@ -3979,6 +3987,10 @@
3979
3987
  padding: 12px 2px 16px;
3980
3988
  }
3981
3989
 
3990
+ .e-bigger .e-agenda-view .e-appointment {
3991
+ padding: 7px 16px;
3992
+ }
3993
+
3982
3994
  .e-bigger .e-agenda-view .e-subject {
3983
3995
  font-size: 16px;
3984
3996
  }
@@ -4122,6 +4134,7 @@
4122
4134
 
4123
4135
  .e-bigger .e-more-popup-wrapper .e-more-event-content,
4124
4136
  .e-more-popup-wrapper .e-more-event-content {
4137
+ color: #fff;
4125
4138
  height: calc(100% - 35px);
4126
4139
  max-height: 150px;
4127
4140
  overflow-y: auto;