@syncfusion/ej2-schedule 26.2.14 → 27.1.50

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 (200) hide show
  1. package/dist/ej2-schedule.umd.min.js +2 -2
  2. package/dist/ej2-schedule.umd.min.js.map +1 -1
  3. package/dist/es6/ej2-schedule.es2015.js +166 -32
  4. package/dist/es6/ej2-schedule.es2015.js.map +1 -1
  5. package/dist/es6/ej2-schedule.es5.js +169 -32
  6. package/dist/es6/ej2-schedule.es5.js.map +1 -1
  7. package/dist/global/ej2-schedule.min.js +2 -2
  8. package/dist/global/ej2-schedule.min.js.map +1 -1
  9. package/dist/global/index.d.ts +1 -1
  10. package/package.json +16 -17
  11. package/src/schedule/actions/crud.js +2 -2
  12. package/src/schedule/actions/keyboard.d.ts +1 -0
  13. package/src/schedule/actions/keyboard.js +45 -3
  14. package/src/schedule/actions/resize.js +1 -0
  15. package/src/schedule/actions/virtual-scroll.d.ts +1 -0
  16. package/src/schedule/actions/virtual-scroll.js +35 -4
  17. package/src/schedule/base/interface.d.ts +1 -0
  18. package/src/schedule/base/resource.js +5 -0
  19. package/src/schedule/base/schedule.js +2 -1
  20. package/src/schedule/event-renderer/event-base.js +18 -3
  21. package/src/schedule/event-renderer/inline-edit.js +9 -1
  22. package/src/schedule/event-renderer/month.js +4 -1
  23. package/src/schedule/event-renderer/timeline-view.js +4 -1
  24. package/src/schedule/event-renderer/year.js +2 -2
  25. package/src/schedule/renderer/header-renderer.d.ts +1 -0
  26. package/src/schedule/renderer/header-renderer.js +9 -1
  27. package/src/schedule/renderer/month.js +6 -0
  28. package/src/schedule/renderer/timeline-header-row.js +1 -1
  29. package/src/schedule/renderer/timeline-view.js +5 -0
  30. package/src/schedule/renderer/timeline-year.js +6 -2
  31. package/src/schedule/renderer/vertical-view.js +2 -6
  32. package/src/schedule/renderer/view-base.d.ts +1 -0
  33. package/src/schedule/renderer/view-base.js +9 -0
  34. package/src/schedule/renderer/year.js +4 -4
  35. package/styles/bootstrap-dark-lite.css +4169 -0
  36. package/styles/bootstrap-dark-lite.scss +18 -0
  37. package/styles/bootstrap-dark.css +818 -596
  38. package/styles/bootstrap-dark.scss +3 -2
  39. package/styles/bootstrap-lite.css +4164 -0
  40. package/styles/bootstrap-lite.scss +18 -0
  41. package/styles/bootstrap.css +818 -596
  42. package/styles/bootstrap.scss +3 -2
  43. package/styles/bootstrap4-lite.css +4211 -0
  44. package/styles/bootstrap4-lite.scss +18 -0
  45. package/styles/bootstrap4.css +803 -636
  46. package/styles/bootstrap4.scss +3 -2
  47. package/styles/bootstrap5-dark-lite.css +4210 -0
  48. package/styles/bootstrap5-dark-lite.scss +18 -0
  49. package/styles/bootstrap5-dark.css +819 -597
  50. package/styles/bootstrap5-dark.scss +3 -2
  51. package/styles/bootstrap5-lite.css +4210 -0
  52. package/styles/bootstrap5-lite.scss +18 -0
  53. package/styles/bootstrap5.3-lite.css +4256 -0
  54. package/styles/bootstrap5.3-lite.scss +18 -0
  55. package/styles/bootstrap5.3.css +5017 -0
  56. package/styles/bootstrap5.3.scss +20 -0
  57. package/styles/bootstrap5.css +819 -597
  58. package/styles/bootstrap5.scss +3 -2
  59. package/styles/fabric-dark-lite.css +4139 -0
  60. package/styles/fabric-dark-lite.scss +18 -0
  61. package/styles/fabric-dark.css +825 -595
  62. package/styles/fabric-dark.scss +3 -2
  63. package/styles/fabric-lite.css +4136 -0
  64. package/styles/fabric-lite.scss +18 -0
  65. package/styles/fabric.css +825 -588
  66. package/styles/fabric.scss +3 -2
  67. package/styles/fluent-dark-lite.css +4202 -0
  68. package/styles/fluent-dark-lite.scss +18 -0
  69. package/styles/fluent-dark.css +823 -593
  70. package/styles/fluent-dark.scss +3 -2
  71. package/styles/fluent-lite.css +4202 -0
  72. package/styles/fluent-lite.scss +18 -0
  73. package/styles/fluent.css +823 -593
  74. package/styles/fluent.scss +3 -2
  75. package/styles/fluent2-lite.css +4422 -0
  76. package/styles/fluent2-lite.scss +18 -0
  77. package/styles/fluent2.css +860 -602
  78. package/styles/fluent2.scss +3 -2
  79. package/styles/highcontrast-light-lite.css +4228 -0
  80. package/styles/highcontrast-light-lite.scss +18 -0
  81. package/styles/highcontrast-light.css +828 -584
  82. package/styles/highcontrast-light.scss +3 -2
  83. package/styles/highcontrast-lite.css +4237 -0
  84. package/styles/highcontrast-lite.scss +18 -0
  85. package/styles/highcontrast.css +829 -585
  86. package/styles/highcontrast.scss +3 -2
  87. package/styles/material-dark-lite.css +4216 -0
  88. package/styles/material-dark-lite.scss +18 -0
  89. package/styles/material-dark.css +828 -581
  90. package/styles/material-dark.scss +3 -2
  91. package/styles/material-lite.css +4242 -0
  92. package/styles/material-lite.scss +18 -0
  93. package/styles/material.css +826 -600
  94. package/styles/material.scss +3 -2
  95. package/styles/material3-dark-lite.css +4233 -0
  96. package/styles/material3-dark-lite.scss +18 -0
  97. package/styles/material3-dark.css +825 -602
  98. package/styles/material3-dark.scss +3 -2
  99. package/styles/material3-lite.css +4235 -0
  100. package/styles/material3-lite.scss +18 -0
  101. package/styles/material3.css +825 -602
  102. package/styles/material3.scss +3 -2
  103. package/styles/recurrence-editor/_bigger.scss +134 -0
  104. package/styles/recurrence-editor/_layout.scss +0 -110
  105. package/styles/recurrence-editor/bootstrap-dark.css +87 -131
  106. package/styles/recurrence-editor/bootstrap-dark.scss +1 -0
  107. package/styles/recurrence-editor/bootstrap.css +87 -131
  108. package/styles/recurrence-editor/bootstrap.scss +1 -0
  109. package/styles/recurrence-editor/bootstrap4.css +87 -149
  110. package/styles/recurrence-editor/bootstrap4.scss +1 -0
  111. package/styles/recurrence-editor/bootstrap5-dark.css +87 -135
  112. package/styles/recurrence-editor/bootstrap5-dark.scss +1 -0
  113. package/styles/recurrence-editor/bootstrap5.3.css +501 -0
  114. package/styles/recurrence-editor/bootstrap5.3.scss +9 -0
  115. package/styles/recurrence-editor/bootstrap5.css +87 -135
  116. package/styles/recurrence-editor/bootstrap5.scss +1 -0
  117. package/styles/recurrence-editor/fabric-dark.css +87 -130
  118. package/styles/recurrence-editor/fabric-dark.scss +1 -0
  119. package/styles/recurrence-editor/fabric.css +87 -123
  120. package/styles/recurrence-editor/fabric.scss +1 -0
  121. package/styles/recurrence-editor/fluent-dark.css +87 -122
  122. package/styles/recurrence-editor/fluent-dark.scss +1 -0
  123. package/styles/recurrence-editor/fluent.css +87 -122
  124. package/styles/recurrence-editor/fluent.scss +1 -0
  125. package/styles/recurrence-editor/fluent2.css +91 -117
  126. package/styles/recurrence-editor/fluent2.scss +1 -0
  127. package/styles/recurrence-editor/highcontrast-light.css +87 -118
  128. package/styles/recurrence-editor/highcontrast-light.scss +1 -0
  129. package/styles/recurrence-editor/highcontrast.css +87 -118
  130. package/styles/recurrence-editor/highcontrast.scss +1 -0
  131. package/styles/recurrence-editor/material-dark.css +87 -115
  132. package/styles/recurrence-editor/material-dark.scss +1 -0
  133. package/styles/recurrence-editor/material.css +87 -136
  134. package/styles/recurrence-editor/material.scss +1 -0
  135. package/styles/recurrence-editor/material3-dark.css +87 -140
  136. package/styles/recurrence-editor/material3-dark.scss +1 -0
  137. package/styles/recurrence-editor/material3.css +87 -140
  138. package/styles/recurrence-editor/material3.scss +1 -0
  139. package/styles/recurrence-editor/tailwind-dark.css +87 -116
  140. package/styles/recurrence-editor/tailwind-dark.scss +1 -0
  141. package/styles/recurrence-editor/tailwind.css +87 -116
  142. package/styles/recurrence-editor/tailwind.scss +1 -0
  143. package/styles/schedule/_bds-definition.scss +1 -1
  144. package/styles/schedule/_bigger.scss +809 -0
  145. package/styles/schedule/_bootstrap4-definition.scss +1 -1
  146. package/styles/schedule/_bootstrap5-definition.scss +1 -1
  147. package/styles/schedule/_bootstrap5.3-definition.scss +9 -6
  148. package/styles/schedule/_fluent-definition.scss +1 -1
  149. package/styles/schedule/_fluent2-definition.scss +6 -6
  150. package/styles/schedule/_fusionnew-definition.scss +1 -1
  151. package/styles/schedule/_layout.scss +5 -442
  152. package/styles/schedule/_tailwind-definition.scss +1 -1
  153. package/styles/schedule/_theme.scss +23 -1
  154. package/styles/schedule/bootstrap-dark.css +699 -483
  155. package/styles/schedule/bootstrap-dark.scss +1 -0
  156. package/styles/schedule/bootstrap.css +699 -483
  157. package/styles/schedule/bootstrap.scss +1 -0
  158. package/styles/schedule/bootstrap4.css +684 -523
  159. package/styles/schedule/bootstrap4.scss +1 -0
  160. package/styles/schedule/bootstrap5-dark.css +707 -491
  161. package/styles/schedule/bootstrap5-dark.scss +1 -0
  162. package/styles/schedule/bootstrap5.3.css +4615 -0
  163. package/styles/schedule/bootstrap5.3.scss +17 -0
  164. package/styles/schedule/bootstrap5.css +707 -491
  165. package/styles/schedule/bootstrap5.scss +1 -0
  166. package/styles/schedule/fabric-dark.css +706 -482
  167. package/styles/schedule/fabric-dark.scss +1 -0
  168. package/styles/schedule/fabric.css +706 -475
  169. package/styles/schedule/fabric.scss +1 -0
  170. package/styles/schedule/fluent-dark.css +716 -492
  171. package/styles/schedule/fluent-dark.scss +1 -0
  172. package/styles/schedule/fluent.css +716 -492
  173. package/styles/schedule/fluent.scss +1 -0
  174. package/styles/schedule/fluent2.css +746 -497
  175. package/styles/schedule/fluent2.scss +1 -0
  176. package/styles/schedule/highcontrast-light.css +714 -476
  177. package/styles/schedule/highcontrast-light.scss +1 -0
  178. package/styles/schedule/highcontrast.css +714 -476
  179. package/styles/schedule/highcontrast.scss +1 -0
  180. package/styles/schedule/material-dark.css +724 -483
  181. package/styles/schedule/material-dark.scss +1 -0
  182. package/styles/schedule/material.css +720 -500
  183. package/styles/schedule/material.scss +1 -0
  184. package/styles/schedule/material3-dark.css +714 -497
  185. package/styles/schedule/material3-dark.scss +1 -0
  186. package/styles/schedule/material3.css +714 -497
  187. package/styles/schedule/material3.scss +1 -0
  188. package/styles/schedule/tailwind-dark.css +718 -483
  189. package/styles/schedule/tailwind-dark.scss +1 -0
  190. package/styles/schedule/tailwind.css +718 -483
  191. package/styles/schedule/tailwind.scss +1 -0
  192. package/styles/tailwind-dark-lite.css +4179 -0
  193. package/styles/tailwind-dark-lite.scss +18 -0
  194. package/styles/tailwind-dark.css +827 -586
  195. package/styles/tailwind-dark.scss +3 -2
  196. package/styles/tailwind-lite.css +4179 -0
  197. package/styles/tailwind-lite.scss +18 -0
  198. package/styles/tailwind.css +827 -586
  199. package/styles/tailwind.scss +3 -2
  200. package/dist/ej2-schedule.min.js +0 -10
@@ -0,0 +1,4422 @@
1
+
2
+
3
+
4
+
5
+
6
+
7
+ /*! TreeView's theme wise override definitions and variables */
8
+ /* stylelint-disable */
9
+ /* stylelint-disable property-no-vendor-prefix */
10
+ @-webkit-keyframes e-input-ripple {
11
+ 100% {
12
+ opacity: 0;
13
+ -webkit-transform: scale(4);
14
+ transform: scale(4);
15
+ }
16
+ }
17
+ @keyframes e-input-ripple {
18
+ 100% {
19
+ opacity: 0;
20
+ -webkit-transform: scale(4);
21
+ transform: scale(4);
22
+ }
23
+ }
24
+ @-webkit-keyframes slideTopUp {
25
+ from {
26
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
27
+ transform: translate3d(0, 0, 0) scale(1);
28
+ }
29
+ to {
30
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
31
+ transform: translate3d(0, 0, 0) scale(1);
32
+ }
33
+ }
34
+ @keyframes slideTopUp {
35
+ from {
36
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
37
+ transform: translate3d(0, 0, 0) scale(1);
38
+ }
39
+ to {
40
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
41
+ transform: translate3d(0, 0, 0) scale(1);
42
+ }
43
+ }
44
+ /* stylelint-disable */
45
+ .e-input:focus:not(.e-success):not(.e-warning).e-error,
46
+ .e-float-input:not(.e-success):not(.e-warning).e-error:not(.e-input-group) input:focus,
47
+ .e-float-input:not(.e-success):not(.e-warning).e-error:not(.e-input-group) textarea:focus,
48
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning).e-error:not(.e-input-group) input:focus,
49
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning).e-error:not(.e-input-group) textarea:focus,
50
+ .e-float-input:not(.e-success):not(.e-warning).e-error:not(.e-input-group).e-input-focus input,
51
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning).e-error:not(.e-input-group).e-input-focus input {
52
+ -webkit-box-shadow: none !important;
53
+ box-shadow: none !important;
54
+ }
55
+
56
+ .e-input:focus:not(.e-error):not(.e-warning).e-success,
57
+ .e-float-input:not(.e-error):not(.e-warning).e-success:not(.e-input-group) input:focus,
58
+ .e-float-input:not(.e-error):not(.e-warning).e-success:not(.e-input-group) textarea:focus,
59
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-warning).e-success:not(.e-input-group) input:focus,
60
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-warning).e-success:not(.e-input-group) textarea:focus,
61
+ .e-float-input:not(.e-error):not(.e-warning).e-success:not(.e-input-group).e-input-focus input,
62
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-warning).e-success:not(.e-input-group).e-input-focus input {
63
+ -webkit-box-shadow: none !important;
64
+ box-shadow: none !important;
65
+ }
66
+
67
+ .e-input:focus:not(.e-success):not(.e-error).e-warning,
68
+ .e-float-input:not(.e-success):not(.e-error).e-warning:not(.e-input-group) input:focus,
69
+ .e-float-input:not(.e-success):not(.e-error).e-warning:not(.e-input-group) textarea:focus,
70
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-error).e-warning:not(.e-input-group) input:focus,
71
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-error).e-warning:not(.e-input-group) textarea:focus,
72
+ .e-float-input:not(.e-success):not(.e-error).e-warning:not(.e-input-group).e-input-focus input,
73
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-error).e-warning:not(.e-input-group).e-input-focus input {
74
+ -webkit-box-shadow: none !important;
75
+ box-shadow: none !important;
76
+ }
77
+
78
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning).e-error,
79
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning).e-error {
80
+ -webkit-box-shadow: none !important;
81
+ box-shadow: none !important;
82
+ }
83
+
84
+ .e-input-group.e-input-focus:not(.e-error):not(.e-warning).e-success,
85
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-error):not(.e-warning).e-success {
86
+ -webkit-box-shadow: none !important;
87
+ box-shadow: none !important;
88
+ }
89
+
90
+ .e-input-group.e-input-focus:not(.e-success):not(.e-error).e-warning,
91
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-error).e-warning {
92
+ -webkit-box-shadow: none !important;
93
+ box-shadow: none !important;
94
+ }
95
+
96
+ .e-input-group:not(.e-disabled):active:not(.e-success):not(.e-warning).e-error,
97
+ .e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-success):not(.e-warning).e-error {
98
+ -webkit-box-shadow: none !important;
99
+ box-shadow: none !important;
100
+ }
101
+
102
+ .e-input-group:not(.e-disabled):active:not(.e-error):not(.e-warning).e-success,
103
+ .e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-error):not(.e-warning).e-success {
104
+ -webkit-box-shadow: none !important;
105
+ box-shadow: none !important;
106
+ }
107
+
108
+ .e-input-group:not(.e-disabled):active:not(.e-success):not(.e-error).e-warning,
109
+ .e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-success):not(.e-error).e-warning {
110
+ -webkit-box-shadow: none !important;
111
+ box-shadow: none !important;
112
+ }
113
+
114
+ .e-float-input.e-error label.e-float-text,
115
+ .e-float-input.e-control-wrapper.e-error label.e-float-text,
116
+ .e-float-input.e-error input:focus ~ label.e-float-text,
117
+ .e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
118
+ .e-float-input.e-error.e-input-focus input ~ label.e-float-text,
119
+ .e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text,
120
+ .e-float-input.e-error textarea:focus ~ label.e-float-text,
121
+ .e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text {
122
+ color: var(--color-sf-danger) !important;
123
+ }
124
+
125
+ .e-outline.e-float-input.e-error.e-input-focus input:focus ~ label.e-float-text,
126
+ .e-outline.e-float-input.e-input-group.e-error.e-valid-input label.e-label-top.e-float-text,
127
+ .e-outline.e-float-input.e-bigger.e-error.e-input-focus input:focus ~ label.e-float-text,
128
+ .e-bigger .e-outline.e-float-input.e-error.e-input-focus input:focus ~ label.e-float-text,
129
+ .e-outline.e-float-input.e-small.e-error.e-input-focus input:focus ~ label.e-float-text,
130
+ .e-small .e-outline.e-float-input.e-error input:focus ~ label.e-float-text,
131
+ .e-outline.e-float-input.e-small.e-bigger.e-error input:focus ~ label.e-float-text,
132
+ .e-bigger .e-outline.e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
133
+ .e-outline.e-float-input.e-error textarea:focus ~ label.e-float-text,
134
+ .e-outline.e-float-input.e-bigger.e-error textarea:focus ~ label.e-float-text,
135
+ .e-bigger .e-outline.e-float-input.e-error textarea:focus ~ label.e-float-text,
136
+ .e-outline.e-float-input.e-small.e-error textarea:focus ~ label.e-float-text,
137
+ .e-small .e-outline.e-float-input.e-error textarea:focus ~ label.e-float-text,
138
+ .e-outline.e-float-input.e-small.e-bigger.e-error textarea:focus ~ label.e-float-text,
139
+ .e-bigger .e-outline.e-float-input.e-small.e-error textarea:focus ~ label.e-float-text,
140
+ .e-outline.e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
141
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-error input:focus ~ label.e-float-text,
142
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
143
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-error input:focus ~ label.e-float-text,
144
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
145
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-error input:focus ~ label.e-float-text,
146
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-error input:focus ~ label.e-float-text,
147
+ .e-outline.e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text,
148
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-error textarea:focus ~ label.e-float-text,
149
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text,
150
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-error textarea:focus ~ label.e-float-text,
151
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text,
152
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-error textarea:focus ~ label.e-float-text,
153
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-error textarea:focus ~ label.e-float-text,
154
+ .e-outline.e-float-input.e-error label.e-float-text.e-label-top,
155
+ .e-outline.e-float-input.e-input-group.e-error label.e-float-text.e-label-top,
156
+ .e-outline.e-float-input.e-control-wrapper.e-error label.e-float-text.e-label-top,
157
+ .e-outline.e-float-input.e-valid-input.e-error:not(.e-input-focus) input:valid ~ label.e-float-text.e-label-top,
158
+ .e-outline.e-float-input.e-control-wrapper.e-valid-input.e-error:not(.e-input-focus) input:focus ~ label.e-float-text.e-label-top,
159
+ .e-outline.e-float-input.e-valid-input.e-error:not(.e-input-focus) textarea:valid ~ label.e-float-text.e-label-top,
160
+ .e-outline.e-float-input.e-control-wrapper.e-valid-input.e-error:not(.e-input-focus) textarea:focus ~ label.e-float-text.e-label-top,
161
+ .e-outline.e-float-input.e-error.e-input-focus input ~ label.e-float-text,
162
+ .e-outline.e-float-input.e-bigger.e-error.e-input-focus input ~ label.e-float-text,
163
+ .e-bigger .e-outline.e-float-input.e-error.e-input-focus input ~ label.e-float-text,
164
+ .e-outline.e-float-input.e-small.e-error.e-input-focus input ~ label.e-float-text,
165
+ .e-small .e-outline.e-float-input.e-error.e-input-focus input ~ label.e-float-text,
166
+ .e-outline.e-float-input.e-small.e-bigger.e-error.e-input-focus input ~ label.e-float-text,
167
+ .e-bigger .e-outline.e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
168
+ .e-outline.e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text,
169
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-error.e-input-focus input ~ label.e-float-text,
170
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text,
171
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-error.e-input-focus input ~ label.e-float-text,
172
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text,
173
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-error.e-input-focus input ~ label.e-float-text,
174
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-error.e-input-focus input ~ label.e-float-text {
175
+ color: var(--color-sf-danger) !important;
176
+ }
177
+
178
+ .e-filled.e-float-input.e-error label.e-float-text,
179
+ .e-filled.e-float-input.e-control-wrapper.e-error label.e-float-text,
180
+ .e-filled.e-float-input.e-error input:focus ~ label.e-float-text,
181
+ .e-filled.e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
182
+ .e-filled.e-float-input.e-error textarea:focus ~ label.e-float-text,
183
+ .e-filled.e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text,
184
+ .e-filled.e-float-input.e-error.e-input-focus input ~ label.e-float-text,
185
+ .e-filled.e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text {
186
+ color: var(--color-sf-danger) !important;
187
+ }
188
+
189
+ /*! calendar theme variables */
190
+ .e-ddl.e-control-wrapper .e-ddl-icon::before {
191
+ -webkit-transform: rotate(0deg);
192
+ transform: rotate(0deg);
193
+ -webkit-transition: -webkit-transform 300ms ease;
194
+ transition: -webkit-transform 300ms ease;
195
+ transition: transform 300ms ease;
196
+ transition: transform 300ms ease, -webkit-transform 300ms ease;
197
+ }
198
+
199
+ .e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
200
+ -webkit-transform: rotate(180deg);
201
+ transform: rotate(180deg);
202
+ -webkit-transition: -webkit-transform 300ms ease;
203
+ transition: -webkit-transform 300ms ease;
204
+ transition: transform 300ms ease;
205
+ transition: transform 300ms ease, -webkit-transform 300ms ease;
206
+ }
207
+
208
+ .e-dropdownbase .e-list-item.e-active.e-hover {
209
+ color: var(--color-sf-content-text-color-selected);
210
+ }
211
+
212
+ .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
213
+ .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
214
+ .e-input-group:not(.e-disabled) .e-back-icon:active,
215
+ .e-input-group:not(.e-disabled) .e-back-icon:hover,
216
+ .e-popup.e-ddl .e-input-group:not(.e-disabled) .e-clear-icon:active,
217
+ .e-popup.e-ddl .e-input-group:not(.e-disabled) .e-clear-icon:hover {
218
+ background: transparent;
219
+ }
220
+
221
+ .e-input-group .e-ddl-icon:not(:active)::after {
222
+ -webkit-animation: none;
223
+ animation: none;
224
+ }
225
+
226
+ .e-ddl.e-popup {
227
+ border: 0;
228
+ border-radius: 4px;
229
+ -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
230
+ box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
231
+ margin-top: 4px;
232
+ }
233
+
234
+ .e-small .e-ddl.e-popup,
235
+ .e-small.e-ddl.e-popup {
236
+ border-radius: 4px;
237
+ margin-top: 2px;
238
+ }
239
+
240
+ .e-popup.e-ddl .e-dropdownbase {
241
+ min-height: 26px;
242
+ padding: 6px 4px;
243
+ }
244
+
245
+ .e-input-group.e-ddl,
246
+ .e-input-group.e-ddl .e-input,
247
+ .e-input-group.e-ddl .e-ddl-icon {
248
+ background: var(--color-sf-content-bg-color);
249
+ }
250
+
251
+ .e-ddl.e-ddl-device.e-ddl-device-filter .e-input-group:hover:not(.e-disabled):not(.e-float-icon-left),
252
+ .e-ddl.e-ddl-device.e-ddl-device-filter .e-input-group.e-control-wrapper:hover:not(.e-disabled):not(.e-float-icon-left) {
253
+ border-bottom-width: 0;
254
+ }
255
+
256
+ .e-ddl.e-popup.e-outline .e-filter-parent {
257
+ padding: 4px 8px;
258
+ }
259
+
260
+ .e-multi-select-wrapper .e-chips-collection .e-chips .e-chips-close.e-icon::before {
261
+ line-height: 30px;
262
+ top: 0;
263
+ }
264
+
265
+ .e-multiselect .e-input-group-icon.e-ddl-icon {
266
+ border-radius: 0 4px 4px 0;
267
+ border-right-width: 0;
268
+ }
269
+
270
+ .e-multiselect.e-rtl .e-input-group-icon.e-ddl-icon {
271
+ border-left-width: 0;
272
+ border-radius: 4px 0 0 4px;
273
+ border-right-width: 0;
274
+ }
275
+
276
+ .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
277
+ height: 32px;
278
+ width: 32px;
279
+ }
280
+
281
+ .e-multi-select-wrapper .e-searcher input[type=text],
282
+ .e-multi-select-wrapper .e-multi-searcher input[type=text] {
283
+ color: var(--color-sf-content-text-color);
284
+ height: 100%;
285
+ }
286
+
287
+ .e-schedule .e-schedule-toolbar .e-icon-prev::before {
288
+ content: "\e765";
289
+ }
290
+ .e-schedule .e-schedule-toolbar .e-icon-next::before {
291
+ content: "\e748";
292
+ }
293
+ .e-schedule .e-schedule-toolbar .e-icon-add::before {
294
+ content: "\e805";
295
+ }
296
+ .e-schedule .e-schedule-toolbar .e-icon-today::before {
297
+ content: "\e778";
298
+ }
299
+ .e-schedule .e-schedule-toolbar .e-icon-down-arrow::before {
300
+ content: "\e729";
301
+ }
302
+ .e-schedule .e-schedule-toolbar .e-icon-day::before {
303
+ content: "\e75e";
304
+ }
305
+ .e-schedule .e-schedule-toolbar .e-icon-week::before, .e-schedule .e-schedule-toolbar .e-icon-workweek::before {
306
+ content: "\e817";
307
+ }
308
+ .e-schedule .e-schedule-toolbar .e-icon-month::before, .e-schedule .e-schedule-toolbar .e-icon-year::before {
309
+ content: "\e7c5";
310
+ }
311
+ .e-schedule .e-schedule-toolbar .e-icon-month-agenda::before {
312
+ content: "\e75b";
313
+ }
314
+ .e-schedule .e-schedule-toolbar .e-icon-agenda::before {
315
+ content: "\e74c";
316
+ }
317
+ .e-schedule .e-schedule-toolbar .e-icon-timeline-year-vertical::before, .e-schedule .e-schedule-toolbar .e-icon-timeline-year-horizontal::before, .e-schedule .e-schedule-toolbar .e-icon-timeline-month::before {
318
+ content: "\e876";
319
+ }
320
+ .e-schedule .e-schedule-toolbar .e-icon-timeline-day::before {
321
+ content: "\e7da";
322
+ }
323
+ .e-schedule .e-schedule-toolbar .e-icon-timeline-week::before {
324
+ content: "\e81f";
325
+ }
326
+ .e-schedule .e-schedule-toolbar .e-icon-timeline-workweek::before {
327
+ content: "\e720";
328
+ }
329
+ .e-schedule .e-schedule-toolbar.e-toolbar .e-popup-down-icon::before,
330
+ .e-schedule .e-schedule-toolbar.e-toolbar .e-popup-up-icon::before {
331
+ content: "\e770";
332
+ }
333
+ .e-schedule .e-schedule-toolbar.e-rtl .e-icon-prev::before {
334
+ content: "\e748";
335
+ }
336
+ .e-schedule .e-schedule-toolbar.e-rtl .e-icon-next::before {
337
+ content: "\e765";
338
+ }
339
+ .e-schedule .e-schedule-resource-toolbar .e-icon-menu::before {
340
+ content: "\e799";
341
+ }
342
+ .e-schedule .e-schedule-resource-toolbar .e-icon-next::before {
343
+ content: "\e748";
344
+ }
345
+ .e-schedule .e-close-icon::before {
346
+ content: "\e7e7";
347
+ }
348
+ .e-schedule .e-block-indicator::before {
349
+ content: "\e839";
350
+ }
351
+ .e-schedule .e-appointment .e-recurrence-icon::before {
352
+ content: "\e772";
353
+ }
354
+ .e-schedule .e-appointment .e-recurrence-edit-icon::before {
355
+ content: "\e789";
356
+ }
357
+ .e-schedule .e-appointment .e-up-icon::before {
358
+ content: "\e822";
359
+ }
360
+ .e-schedule .e-appointment .e-down-icon::before {
361
+ content: "\e7fe";
362
+ }
363
+ .e-schedule .e-appointment .e-left-icon::before {
364
+ content: "\e744";
365
+ }
366
+ .e-schedule .e-appointment .e-right-icon::before {
367
+ content: "\e7a9";
368
+ }
369
+ .e-schedule .e-vertical-view .e-all-day-cells .e-all-day-appointment-section::before {
370
+ content: "\e729";
371
+ }
372
+ .e-schedule.e-rtl .e-appointment .e-left-icon::before {
373
+ content: "\e7a9";
374
+ }
375
+ .e-schedule.e-rtl .e-appointment .e-right-icon::before {
376
+ content: "\e744";
377
+ }
378
+ .e-schedule .e-resource-tree-icon::before {
379
+ content: "\e748";
380
+ }
381
+
382
+ .e-schedule-dialog.e-device .e-back-icon::before {
383
+ content: "\e773";
384
+ }
385
+ .e-schedule-dialog.e-device .e-save-icon::before {
386
+ content: "\e7c8";
387
+ }
388
+ .e-schedule-dialog.e-device .e-delete-icon::before {
389
+ content: "\e820";
390
+ }
391
+ .e-schedule-dialog.e-device .e-recurrence-container .e-recurrence-edit-button .e-recurrence-edit.e-icons::before {
392
+ content: "\e730";
393
+ }
394
+
395
+ .e-schedule-dialog.e-device.e-rtl .e-back-icon::before {
396
+ content: "\e7f9";
397
+ }
398
+
399
+ .e-quick-popup-wrapper .e-edit-icon::before {
400
+ content: "\e730";
401
+ }
402
+ .e-quick-popup-wrapper .e-delete-icon::before {
403
+ content: "\e820";
404
+ }
405
+ .e-quick-popup-wrapper .e-close-icon::before {
406
+ content: "\e7e7";
407
+ }
408
+ .e-quick-popup-wrapper .e-time-icon::before {
409
+ content: "\e705";
410
+ }
411
+ .e-quick-popup-wrapper .e-location-icon::before {
412
+ content: "\e756";
413
+ }
414
+ .e-quick-popup-wrapper .e-time-zone-icon::before {
415
+ content: "\e804";
416
+ }
417
+ .e-quick-popup-wrapper .e-description-icon::before {
418
+ content: "\e7c0";
419
+ }
420
+ .e-quick-popup-wrapper .e-resource-icon::before {
421
+ content: "\e7b9";
422
+ }
423
+ .e-quick-popup-wrapper .e-date-time-icon::before {
424
+ content: "\e7da";
425
+ }
426
+
427
+ .e-more-popup-wrapper.e-device .e-close-icon::before {
428
+ content: "\e7e7";
429
+ }
430
+
431
+ .e-schedule {
432
+ display: block;
433
+ outline: medium none;
434
+ overflow: hidden;
435
+ position: relative;
436
+ -webkit-user-select: none;
437
+ -moz-user-select: none;
438
+ -ms-user-select: none;
439
+ user-select: none;
440
+ }
441
+ .e-schedule .e-schedule-toolbar {
442
+ border: 0;
443
+ border-bottom: 1px solid var(--color-sf-border-light);
444
+ -webkit-box-shadow: none;
445
+ box-shadow: none;
446
+ margin-bottom: 0;
447
+ min-height: 40px;
448
+ }
449
+ .e-schedule .e-schedule-toolbar .e-active-view .e-tbar-btn-text,
450
+ .e-schedule .e-schedule-toolbar .e-active-view .e-icons {
451
+ color: var(--color-sf-primary);
452
+ }
453
+ .e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
454
+ cursor: pointer;
455
+ font-size: 14px;
456
+ text-transform: none;
457
+ }
458
+ .e-schedule .e-schedule-toolbar .e-toolbar-items {
459
+ height: 40px;
460
+ }
461
+ .e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
462
+ height: 40px;
463
+ min-height: 40px;
464
+ }
465
+ .e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-right .e-toolbar-item .e-tbar-btn {
466
+ border: none;
467
+ border-radius: 4px;
468
+ }
469
+ .e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-right .e-toolbar-item.e-active-view .e-tbar-btn {
470
+ border: none;
471
+ }
472
+ .e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos > div {
473
+ height: inherit;
474
+ }
475
+ .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 {
476
+ font-size: 18px;
477
+ margin-top: 2px;
478
+ }
479
+ .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 {
480
+ border-radius: 4px;
481
+ }
482
+ .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-day .e-icon-day, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-week .e-icon-week, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-work-week .e-icon-workweek, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-month .e-icon-month, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-year .e-icon-year, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-agenda .e-icon-agenda, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-month-agenda .e-icon-month-agenda, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-timeline-day .e-icon-timeline-day, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-timeline-week .e-icon-timeline-week, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-timeline-work-week .e-icon-timeline-workweek, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-timeline-month .e-icon-timeline-month, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-timeline-year .e-icon-timeline-year-vertical, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-timeline-year .e-icon-timeline-year-horizontal, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-add .e-tbar-btn-text, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-today .e-icon-day, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-today .e-icon-today {
483
+ display: none;
484
+ }
485
+ .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-hidden {
486
+ display: none;
487
+ }
488
+ .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-prev .e-icon-prev, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-next .e-icon-next {
489
+ font-size: 18px;
490
+ }
491
+ .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator {
492
+ border-right: 1px solid var(--color-sf-border-light);
493
+ }
494
+ .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn .e-tbar-btn-text {
495
+ font-size: 14px;
496
+ text-transform: initial;
497
+ }
498
+ .e-schedule .e-schedule-toolbar.e-rtl .e-hor-nav {
499
+ border-left: 0;
500
+ border-right: 1px solid var(--color-sf-border-light);
501
+ }
502
+ .e-schedule .e-schedule-toolbar.e-rtl .e-hor-nav:not(.e-nav-active):hover {
503
+ background: var(--color-sf-content-bg-color-hover);
504
+ color: var(--color-sf-icon-color-hover);
505
+ }
506
+ .e-schedule .e-schedule-toolbar .e-hor-nav {
507
+ border-left: 1px solid var(--color-sf-border-light);
508
+ }
509
+ .e-schedule .e-schedule-toolbar .e-hor-nav::after {
510
+ content: "";
511
+ }
512
+ .e-schedule .e-schedule-toolbar .e-hor-nav:active {
513
+ color: var(--color-sf-icon-color-hover);
514
+ }
515
+ .e-schedule .e-schedule-toolbar .e-hor-nav:active::after {
516
+ content: "";
517
+ }
518
+ .e-schedule .e-schedule-toolbar .e-hor-nav:hover {
519
+ background: var(--color-sf-content-bg-color-hover);
520
+ color: var(--color-sf-icon-color-hover);
521
+ }
522
+ .e-schedule .e-schedule-toolbar .e-hor-nav:focus {
523
+ background: var(--color-sf-content-bg-color-hover);
524
+ color: var(--color-sf-icon-color-hover);
525
+ }
526
+ .e-schedule.e-adaptive .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-today .e-icon-today {
527
+ display: block;
528
+ }
529
+ .e-schedule.e-adaptive .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-today .e-icon-today + .e-tbar-btn-text {
530
+ display: none;
531
+ }
532
+ .e-schedule.e-device .e-schedule-toolbar {
533
+ height: 48px;
534
+ min-height: 48px;
535
+ }
536
+ .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:hover, .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:focus {
537
+ height: calc(100% - 20px);
538
+ }
539
+ .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items {
540
+ height: 48px;
541
+ }
542
+ .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-today .e-icon-today + .e-tbar-btn-text {
543
+ display: none;
544
+ }
545
+ .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-today .e-icon-today {
546
+ display: block;
547
+ }
548
+ .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
549
+ height: 48px;
550
+ min-height: 48px;
551
+ }
552
+ .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-right .e-toolbar-item .e-tbar-btn {
553
+ border: none;
554
+ border-radius: 0;
555
+ }
556
+ .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos > div {
557
+ height: inherit;
558
+ }
559
+ .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 {
560
+ padding: 4px 6px;
561
+ }
562
+ .e-schedule.e-device .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
563
+ font-size: 16px;
564
+ }
565
+ .e-schedule.e-device .e-schedule-toolbar .e-date-range .e-tbar-btn .e-tbar-btn-text {
566
+ font-size: 16px;
567
+ }
568
+ .e-schedule.e-device .e-schedule-toolbar .e-toolbar-pop {
569
+ overflow: auto;
570
+ }
571
+ .e-schedule.e-device .e-content-wrap.e-scroll-hidden {
572
+ overflow: hidden;
573
+ }
574
+ @media screen and (max-width: 320px) {
575
+ .e-schedule .e-schedule-toolbar .e-toolbar-pop {
576
+ width: 100%;
577
+ }
578
+ .e-schedule .e-schedule-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
579
+ padding-left: 7px;
580
+ }
581
+ .e-schedule .e-schedule-toolbar .e-toolbar-pop.e-rtl .e-toolbar-item .e-tbar-btn.e-btn {
582
+ padding-right: 7px;
583
+ }
584
+ .e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
585
+ font-size: 8px;
586
+ }
587
+ }
588
+ .e-schedule .e-schedule-resource-toolbar {
589
+ background: var(--color-sf-content-bg-color-alt1);
590
+ border-bottom: 1px solid var(--color-sf-border-light);
591
+ -webkit-box-shadow: none;
592
+ box-shadow: none;
593
+ display: -webkit-box;
594
+ display: -ms-flexbox;
595
+ display: flex;
596
+ margin-bottom: 0;
597
+ min-height: 40px;
598
+ padding: 10px;
599
+ }
600
+ .e-schedule .e-schedule-resource-toolbar .e-resource-menu .e-icon-menu {
601
+ color: var(--color-sf-icon-color);
602
+ font-size: 14px;
603
+ padding: 7px;
604
+ padding-left: 4px;
605
+ }
606
+ .e-schedule .e-schedule-resource-toolbar .e-resource-menu.e-disable {
607
+ display: none;
608
+ }
609
+ .e-schedule .e-schedule-resource-toolbar .e-resource-level-title {
610
+ display: -webkit-box;
611
+ display: -ms-flexbox;
612
+ display: flex;
613
+ }
614
+ .e-schedule .e-schedule-resource-toolbar .e-resource-level-title .e-resource-name {
615
+ font-size: 14px;
616
+ padding: 5px;
617
+ color: var(--color-sf-content-text-color-alt2);
618
+ }
619
+ .e-schedule .e-schedule-resource-toolbar .e-resource-level-title .e-resource-name:not(:last-child) {
620
+ opacity: 0.6;
621
+ }
622
+ .e-schedule .e-schedule-resource-toolbar .e-resource-level-title .e-icon-next {
623
+ color: var(--color-sf-icon-color);
624
+ font-size: 10px;
625
+ line-height: 18px;
626
+ opacity: 0.4;
627
+ padding: 5px;
628
+ }
629
+ .e-schedule .e-schedule-resource-toolbar.e-popup-close {
630
+ display: none;
631
+ }
632
+ .e-schedule .e-schedule-resource-toolbar.e-popup-open {
633
+ display: block;
634
+ }
635
+ .e-schedule .e-text-ellipsis {
636
+ overflow: hidden;
637
+ text-overflow: ellipsis;
638
+ }
639
+ .e-schedule .e-text-center {
640
+ text-align: center;
641
+ }
642
+ .e-schedule .e-table-container {
643
+ display: -webkit-inline-box;
644
+ display: -ms-inline-flexbox;
645
+ display: inline-flex;
646
+ position: relative;
647
+ vertical-align: top;
648
+ }
649
+ .e-schedule .e-table-container.e-translate {
650
+ -webkit-transition: -webkit-transform 0.1s ease 0s;
651
+ transition: -webkit-transform 0.1s ease 0s;
652
+ transition: transform 0.1s ease 0s;
653
+ transition: transform 0.1s ease 0s, -webkit-transform 0.1s ease 0s;
654
+ }
655
+ .e-schedule .e-resource-tree-popup {
656
+ background: var(--color-sf-content-bg-color-alt1);
657
+ -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
658
+ box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
659
+ height: 100%;
660
+ position: absolute;
661
+ width: 250px;
662
+ color: var(--color-sf-content-text-color);
663
+ }
664
+ .e-schedule .e-resource-tree-popup .e-resource-tree {
665
+ height: 100%;
666
+ overflow-y: auto;
667
+ }
668
+ .e-schedule .e-resource-tree-popup .e-resource-tree.e-treeview .e-text-content {
669
+ padding: 0 0 0 12px;
670
+ }
671
+ .e-schedule .e-resource-tree-popup-overlay.e-enable {
672
+ background: var(--color-sf-overlay-bg-color);
673
+ height: 100%;
674
+ left: 0;
675
+ opacity: 0.5;
676
+ position: absolute;
677
+ top: 0;
678
+ width: 100%;
679
+ }
680
+ .e-schedule .e-new-event {
681
+ background: var(--color-sf-primary);
682
+ border: 1px solid var(--color-sf-primary-text-color);
683
+ border-radius: 5px;
684
+ height: 100%;
685
+ opacity: 0.9;
686
+ position: relative;
687
+ width: 100%;
688
+ z-index: 1;
689
+ }
690
+ .e-schedule .e-new-event .e-title {
691
+ color: var(--color-sf-primary-text-color);
692
+ font-size: 12px;
693
+ line-height: 1.2;
694
+ margin: 0;
695
+ overflow-wrap: break-word;
696
+ padding: 3px;
697
+ position: absolute;
698
+ text-align: left;
699
+ white-space: normal;
700
+ word-wrap: break-word;
701
+ }
702
+ .e-schedule .e-schedule-table {
703
+ border: 0 none;
704
+ border-collapse: separate;
705
+ border-spacing: 0;
706
+ margin: 0;
707
+ table-layout: fixed;
708
+ width: 100%;
709
+ }
710
+ .e-schedule .e-schedule-table > tbody > tr > th,
711
+ .e-schedule .e-schedule-table > tbody > tr > td {
712
+ -webkit-box-sizing: border-box;
713
+ box-sizing: border-box;
714
+ font-weight: normal;
715
+ overflow: hidden;
716
+ text-overflow: ellipsis;
717
+ white-space: nowrap;
718
+ }
719
+ .e-schedule .e-outer-table > tbody > tr > td {
720
+ padding: 0;
721
+ vertical-align: top;
722
+ }
723
+ .e-schedule .e-content-wrap {
724
+ position: relative;
725
+ }
726
+ .e-schedule .e-content-wrap .e-day-wrapper {
727
+ width: 100%;
728
+ }
729
+ .e-schedule .e-content-placeholder {
730
+ height: 100%;
731
+ position: relative;
732
+ width: 100%;
733
+ z-index: 99999;
734
+ }
735
+ .e-schedule .e-content-wrap,
736
+ .e-schedule .e-scroll-container {
737
+ -webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
738
+ overflow: auto;
739
+ }
740
+ .e-schedule .e-hide-childs > * {
741
+ display: none;
742
+ }
743
+ .e-schedule .e-recurrence-icon,
744
+ .e-schedule .e-recurrence-edit-icon {
745
+ font-size: 12px;
746
+ }
747
+ .e-schedule .e-left-icon,
748
+ .e-schedule .e-right-icon {
749
+ font-size: 8px;
750
+ }
751
+ .e-schedule .e-m-date {
752
+ cursor: pointer;
753
+ font-size: 20px;
754
+ }
755
+ .e-schedule .e-m-date:hover {
756
+ text-decoration: underline;
757
+ }
758
+ .e-schedule .e-m-day {
759
+ font-size: 12px;
760
+ }
761
+ .e-schedule.e-device .e-m-date:hover {
762
+ text-decoration: none;
763
+ }
764
+ .e-schedule .e-block-appointment {
765
+ background: var(--color-sf-holiday-bg-color);
766
+ color: var(--color-sf-content-text-color);
767
+ cursor: default;
768
+ overflow: hidden;
769
+ position: absolute;
770
+ }
771
+ .e-schedule .e-block-appointment .e-subject {
772
+ overflow: hidden;
773
+ overflow-wrap: break-word;
774
+ padding: 4px;
775
+ white-space: normal;
776
+ word-wrap: break-word;
777
+ }
778
+ .e-schedule .e-block-indicator {
779
+ color: var(--color-sf-content-text-color);
780
+ float: right;
781
+ padding: 0 5px;
782
+ z-index: 1;
783
+ }
784
+ .e-schedule.e-rtl .e-block-indicator {
785
+ float: left;
786
+ }
787
+ .e-schedule .e-timeline-view .e-block-indicator,
788
+ .e-schedule .e-timeline-month-view .e-block-indicator {
789
+ position: absolute;
790
+ top: 3px;
791
+ }
792
+ .e-schedule .e-appointment {
793
+ opacity: 1;
794
+ -webkit-transition: opacity 100ms linear;
795
+ transition: opacity 100ms linear;
796
+ }
797
+ .e-schedule .e-appointment .e-subject.e-disable {
798
+ display: none;
799
+ }
800
+ .e-schedule .e-appointment .e-inline-appointment {
801
+ z-index: 1;
802
+ }
803
+ .e-schedule .e-appointment .e-inline-subject {
804
+ background: transparent;
805
+ border: 0;
806
+ color: var(--color-sf-primary-text-color);
807
+ font-size: 13px;
808
+ font-weight: 500;
809
+ line-height: 1.2;
810
+ padding-top: 4px;
811
+ width: 100%;
812
+ }
813
+ .e-schedule .e-appointment.e-event-action {
814
+ opacity: 0.4;
815
+ }
816
+ .e-schedule .e-appointment.e-allow-select {
817
+ pointer-events: none;
818
+ }
819
+ .e-schedule .e-read-only {
820
+ opacity: 0.8;
821
+ }
822
+ .e-schedule.e-event-action .e-appointment:not(.e-schedule-event-clone), .e-schedule.e-event-action .e-block-appointment {
823
+ pointer-events: none;
824
+ }
825
+ .e-schedule.e-event-action .e-drag-clone, .e-schedule.e-event-action .e-timeline-view .e-drag-clone {
826
+ cursor: move;
827
+ }
828
+ .e-schedule.e-event-action .e-drag-clone .e-top-handler,
829
+ .e-schedule.e-event-action .e-drag-clone .e-bottom-handler, .e-schedule.e-event-action .e-timeline-view .e-drag-clone .e-top-handler,
830
+ .e-schedule.e-event-action .e-timeline-view .e-drag-clone .e-bottom-handler {
831
+ pointer-events: none;
832
+ }
833
+ .e-schedule.e-event-action .e-vertical-view .e-appointment-wrapper .e-resize-clone {
834
+ cursor: ns-resize;
835
+ }
836
+ .e-schedule.e-event-action .e-timeline-view .e-resize-clone, .e-schedule.e-event-action .e-timeline-month-view .e-resize-clone, .e-schedule.e-event-action .e-all-day-appointment-wrapper .e-resize-clone {
837
+ cursor: ew-resize;
838
+ }
839
+ .e-schedule.e-device .e-appointment {
840
+ overflow: hidden;
841
+ }
842
+ .e-schedule.e-device .e-appointment.e-appointment-border .e-top-bottom-resize {
843
+ height: 10px;
844
+ left: 50%;
845
+ position: absolute;
846
+ -webkit-transform: translateX(-50%);
847
+ transform: translateX(-50%);
848
+ width: 100%;
849
+ }
850
+ .e-schedule.e-device .e-appointment.e-appointment-border .e-left-right-resize {
851
+ border-radius: 50%;
852
+ height: 100%;
853
+ position: absolute;
854
+ top: 50%;
855
+ -webkit-transform: translateY(-50%);
856
+ transform: translateY(-50%);
857
+ width: 10px;
858
+ }
859
+ .e-schedule.e-device .e-appointment.e-appointment-border .e-top-handler .e-top-bottom-resize {
860
+ margin-top: -8px;
861
+ }
862
+ .e-schedule.e-device .e-appointment.e-appointment-border .e-bottom-handler .e-top-bottom-resize {
863
+ margin-top: 8px;
864
+ }
865
+ .e-schedule.e-device .e-appointment.e-appointment-border .e-left-handler .e-left-right-resize {
866
+ margin-left: -8px;
867
+ }
868
+ .e-schedule.e-device .e-appointment.e-appointment-border .e-right-handler .e-left-right-resize {
869
+ margin-left: 8px;
870
+ }
871
+ .e-schedule .e-timeline-year-view .e-event-resize.e-left-handler, .e-schedule .e-timeline-year-view .e-event-resize.e-right-handler {
872
+ height: 100%;
873
+ width: 5px;
874
+ }
875
+ .e-schedule .e-timeline-year-view .e-event-resize.e-top-handler, .e-schedule .e-timeline-year-view .e-event-resize.e-bottom-handler {
876
+ height: 5px;
877
+ width: 100%;
878
+ }
879
+ .e-schedule .e-event-resize {
880
+ position: absolute;
881
+ }
882
+ .e-schedule .e-event-resize.e-left-handler, .e-schedule .e-event-resize.e-right-handler {
883
+ height: 100%;
884
+ min-width: 1px;
885
+ max-width: 10px;
886
+ width: 20%;
887
+ }
888
+ .e-schedule .e-event-resize.e-left-handler {
889
+ cursor: ew-resize;
890
+ float: left;
891
+ left: 0;
892
+ }
893
+ .e-schedule .e-event-resize.e-right-handler {
894
+ cursor: e-resize;
895
+ float: right;
896
+ right: 0;
897
+ }
898
+ .e-schedule .e-event-resize.e-top-handler, .e-schedule .e-event-resize.e-bottom-handler {
899
+ min-height: 1px;
900
+ max-height: 10px;
901
+ height: 20%;
902
+ width: 100%;
903
+ }
904
+ .e-schedule .e-event-resize.e-top-handler {
905
+ cursor: ns-resize;
906
+ top: 0;
907
+ }
908
+ .e-schedule .e-event-resize.e-bottom-handler {
909
+ bottom: 0;
910
+ cursor: ns-resize;
911
+ }
912
+ .e-schedule .e-vertical-view.e-timescale-disable .e-content-table,
913
+ .e-schedule .e-vertical-view.e-timescale-disable .e-content-wrap {
914
+ height: 100%;
915
+ }
916
+ .e-schedule .e-vertical-view.e-timescale-disable .e-all-day-row,
917
+ .e-schedule .e-vertical-view.e-timescale-disable .e-all-day-cells {
918
+ height: 0 !important; /* stylelint-disable-line declaration-no-important */
919
+ }
920
+ .e-schedule .e-vertical-view.e-timescale-disable .e-appointment {
921
+ background: var(--color-sf-primary);
922
+ border: 1px solid var(--color-sf-border-light);
923
+ border-radius: 2px;
924
+ color: var(--color-sf-primary-text-color);
925
+ display: -webkit-box;
926
+ display: -ms-flexbox;
927
+ display: flex;
928
+ overflow: hidden;
929
+ position: absolute;
930
+ height: 54px;
931
+ margin-bottom: 2px;
932
+ }
933
+ .e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-appointment-details {
934
+ display: -webkit-box;
935
+ display: -ms-flexbox;
936
+ display: flex;
937
+ -webkit-box-flex: 1;
938
+ -ms-flex: auto;
939
+ flex: auto;
940
+ padding: 2px 4px 0 2px;
941
+ text-align: left;
942
+ }
943
+ .e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-inner-wrap {
944
+ -webkit-box-flex: 1;
945
+ -ms-flex: auto;
946
+ flex: auto;
947
+ overflow: hidden;
948
+ }
949
+ .e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-subject {
950
+ font-size: 13px;
951
+ font-weight: 500;
952
+ line-height: 1.2;
953
+ margin-left: auto;
954
+ min-height: 18px;
955
+ overflow: hidden;
956
+ overflow-wrap: break-word;
957
+ padding-top: 1px;
958
+ white-space: normal;
959
+ word-wrap: break-word;
960
+ }
961
+ .e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-time,
962
+ .e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-location {
963
+ font-size: 11px;
964
+ overflow: hidden;
965
+ padding-top: 1px;
966
+ text-overflow: ellipsis;
967
+ }
968
+ .e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-disable {
969
+ display: none;
970
+ }
971
+ .e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-recurrence-icon,
972
+ .e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-recurrence-edit-icon {
973
+ line-height: 54px;
974
+ padding: 0 5px;
975
+ }
976
+ .e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-left-icon,
977
+ .e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-right-icon {
978
+ line-height: 54px;
979
+ padding: 0 2px;
980
+ }
981
+ .e-schedule .e-vertical-view.e-timescale-disable .e-appointment.e-appointment-border, .e-schedule .e-vertical-view.e-timescale-disable .e-appointment:focus {
982
+ border: 0;
983
+ -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
984
+ box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
985
+ }
986
+ .e-schedule .e-vertical-view.e-timescale-disable .e-appointment.e-allow-select {
987
+ pointer-events: none;
988
+ }
989
+ .e-schedule .e-vertical-view.e-timescale-disable .e-appointment-wrapper {
990
+ position: absolute;
991
+ width: 0;
992
+ }
993
+ .e-schedule .e-vertical-view.e-timescale-disable .e-work-cells {
994
+ height: auto;
995
+ vertical-align: top;
996
+ }
997
+ .e-schedule .e-vertical-view.e-timescale-disable .e-more-indicator {
998
+ color: var(--color-sf-content-text-color);
999
+ cursor: pointer;
1000
+ font-size: 12px;
1001
+ line-height: 11px;
1002
+ overflow: hidden;
1003
+ padding: 2px 4px;
1004
+ position: absolute;
1005
+ text-overflow: ellipsis;
1006
+ }
1007
+ .e-schedule .e-vertical-view.e-timescale-disable .e-more-indicator:focus {
1008
+ text-decoration: underline;
1009
+ }
1010
+ .e-schedule .e-vertical-view .e-left-indent {
1011
+ width: 85px;
1012
+ }
1013
+ .e-schedule .e-vertical-view .e-left-indent .e-all-day-cells {
1014
+ position: relative;
1015
+ }
1016
+ .e-schedule .e-vertical-view .e-date-header-wrap table col,
1017
+ .e-schedule .e-vertical-view .e-content-wrap table col {
1018
+ width: 36px;
1019
+ }
1020
+ .e-schedule .e-vertical-view .e-resource-cells {
1021
+ color: var(--color-sf-content-text-color);
1022
+ font-size: 12px;
1023
+ height: 40px;
1024
+ padding: 8px;
1025
+ padding-left: 15px;
1026
+ }
1027
+ .e-schedule .e-vertical-view .e-header-cells {
1028
+ font-size: 12px;
1029
+ height: 60px;
1030
+ padding: 8px 8px 0;
1031
+ }
1032
+ .e-schedule .e-vertical-view .e-header-cells .e-header-day {
1033
+ display: table;
1034
+ font-size: 12px;
1035
+ line-height: 18px;
1036
+ padding-bottom: 4px;
1037
+ }
1038
+ .e-schedule .e-vertical-view .e-header-cells .e-header-date {
1039
+ cursor: pointer;
1040
+ display: table;
1041
+ font-size: 16px;
1042
+ line-height: 24px;
1043
+ padding-top: 0;
1044
+ }
1045
+ .e-schedule .e-vertical-view .e-header-cells .e-header-date:hover {
1046
+ text-decoration: underline;
1047
+ }
1048
+ .e-schedule .e-vertical-view .e-header-cells.e-disable-dates .e-header-day {
1049
+ cursor: default;
1050
+ opacity: 0.35;
1051
+ }
1052
+ .e-schedule .e-vertical-view .e-header-cells.e-disable-dates .e-header-date {
1053
+ cursor: default;
1054
+ opacity: 0.35;
1055
+ }
1056
+ .e-schedule .e-vertical-view .e-header-cells.e-disable-dates .e-header-date:hover {
1057
+ text-decoration: none;
1058
+ }
1059
+ .e-schedule .e-vertical-view .e-row-count-wrapper {
1060
+ display: block;
1061
+ height: 100%;
1062
+ pointer-events: none;
1063
+ position: relative;
1064
+ }
1065
+ .e-schedule .e-vertical-view .e-row-count-wrapper .e-more-indicator {
1066
+ bottom: 0;
1067
+ color: var(--color-sf-content-text-color);
1068
+ cursor: pointer;
1069
+ overflow: hidden;
1070
+ overflow-wrap: normal;
1071
+ padding: 2px 4px;
1072
+ pointer-events: visible;
1073
+ position: absolute;
1074
+ text-overflow: ellipsis;
1075
+ width: 100%;
1076
+ }
1077
+ .e-schedule .e-vertical-view .e-row-count-wrapper .e-more-indicator:focus {
1078
+ text-decoration: underline;
1079
+ }
1080
+ .e-schedule .e-vertical-view .e-row-count-wrapper.e-disable {
1081
+ display: none;
1082
+ }
1083
+ .e-schedule .e-vertical-view .e-all-day-appointment-section {
1084
+ bottom: 4px;
1085
+ color: var(--color-sf-icon-color);
1086
+ cursor: pointer;
1087
+ display: block;
1088
+ font-size: 11px;
1089
+ height: 25px;
1090
+ left: 0;
1091
+ line-height: 25px;
1092
+ margin: 0 auto;
1093
+ position: absolute;
1094
+ right: 0;
1095
+ -webkit-transform: rotate(0deg);
1096
+ transform: rotate(0deg);
1097
+ -webkit-transition: -webkit-transform 300ms ease-in-out;
1098
+ transition: -webkit-transform 300ms ease-in-out;
1099
+ transition: transform 300ms ease-in-out;
1100
+ transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
1101
+ width: 25px;
1102
+ }
1103
+ .e-schedule .e-vertical-view .e-all-day-appointment-section.e-disable {
1104
+ display: none;
1105
+ }
1106
+ .e-schedule .e-vertical-view .e-all-day-appointment-section.e-appointment-expand {
1107
+ -webkit-transform: rotate(0deg);
1108
+ transform: rotate(0deg);
1109
+ }
1110
+ .e-schedule .e-vertical-view .e-all-day-appointment-section.e-appointment-collapse {
1111
+ -webkit-transform: rotate(180deg);
1112
+ transform: rotate(180deg);
1113
+ }
1114
+ .e-schedule .e-vertical-view .e-all-day-appointment-section:hover, .e-schedule .e-vertical-view .e-all-day-appointment-section:focus {
1115
+ background: var(--color-sf-content-bg-color-alt3);
1116
+ border-radius: 100%;
1117
+ color: var(--color-sf-icon-color);
1118
+ }
1119
+ .e-schedule .e-vertical-view .e-appointment-hide {
1120
+ opacity: 0;
1121
+ }
1122
+ .e-schedule .e-vertical-view .e-all-day-cells {
1123
+ height: 0;
1124
+ padding: 0;
1125
+ text-align: center;
1126
+ vertical-align: top;
1127
+ }
1128
+ .e-schedule .e-vertical-view .e-all-day-cells:first-child.e-animate {
1129
+ -webkit-transition: 250ms ease-out;
1130
+ transition: 250ms ease-out;
1131
+ }
1132
+ .e-schedule .e-vertical-view .e-time-cells-wrap table td,
1133
+ .e-schedule .e-vertical-view .e-work-cells {
1134
+ font-size: 12px;
1135
+ height: 36px;
1136
+ text-align: center;
1137
+ }
1138
+ .e-schedule .e-vertical-view .e-work-cells {
1139
+ width: 36px;
1140
+ }
1141
+ .e-schedule .e-vertical-view .e-work-cells.e-disable-dates {
1142
+ background: var(--color-sf-content-bg-color-alt2);
1143
+ }
1144
+ .e-schedule .e-vertical-view .e-work-cells.e-disable-dates:hover {
1145
+ background: var(--color-sf-content-bg-color-alt2);
1146
+ }
1147
+ .e-schedule .e-vertical-view.e-virtual-mask .e-work-cells {
1148
+ background: var(--color-sf-content-bg-color-alt2);
1149
+ -webkit-box-shadow: inset 0 0 0 8px var(--color-sf-holiday-bg-color);
1150
+ box-shadow: inset 0 0 0 8px var(--color-sf-holiday-bg-color);
1151
+ }
1152
+ .e-schedule .e-vertical-view.e-virtual-mask .e-work-cells:hover {
1153
+ background: var(--color-sf-content-bg-color-alt2);
1154
+ }
1155
+ .e-schedule .e-vertical-view .e-current-time {
1156
+ font-size: 10px;
1157
+ }
1158
+ .e-schedule .e-vertical-view .e-clone-time-indicator,
1159
+ .e-schedule .e-vertical-view .e-current-time,
1160
+ .e-schedule .e-vertical-view .e-previous-timeline,
1161
+ .e-schedule .e-vertical-view .e-current-timeline {
1162
+ left: 0;
1163
+ position: absolute;
1164
+ right: 0;
1165
+ text-align: center;
1166
+ top: 0;
1167
+ width: 100%;
1168
+ }
1169
+ .e-schedule .e-vertical-view .e-previous-timeline,
1170
+ .e-schedule .e-vertical-view .e-current-timeline {
1171
+ z-index: 1;
1172
+ }
1173
+ .e-schedule .e-vertical-view .e-date-header-wrap {
1174
+ max-height: 300px;
1175
+ overflow: hidden;
1176
+ }
1177
+ .e-schedule .e-vertical-view .e-date-header-wrap.e-all-day-scroll {
1178
+ border-bottom: 1px solid var(--color-sf-border-light);
1179
+ overflow-y: auto;
1180
+ }
1181
+ .e-schedule .e-vertical-view .e-date-header-wrap.e-all-day-scroll .e-header-row .e-resource-cells {
1182
+ position: sticky;
1183
+ }
1184
+ .e-schedule .e-vertical-view .e-date-header-wrap.e-all-day-scroll .e-header-row .e-header-cells {
1185
+ position: sticky;
1186
+ top: 0;
1187
+ }
1188
+ .e-schedule .e-vertical-view .e-date-header-wrap.e-all-day-auto {
1189
+ max-height: unset;
1190
+ }
1191
+ .e-schedule .e-vertical-view .e-time-cells-wrap {
1192
+ overflow: hidden;
1193
+ }
1194
+ .e-schedule .e-vertical-view .e-content-wrap,
1195
+ .e-schedule .e-vertical-view .e-time-cells-wrap {
1196
+ position: relative;
1197
+ }
1198
+ .e-schedule .e-vertical-view .e-timeline-wrapper,
1199
+ .e-schedule .e-vertical-view .e-day-wrapper,
1200
+ .e-schedule .e-vertical-view .e-all-day-appointment-wrapper {
1201
+ height: 0;
1202
+ margin: 0;
1203
+ padding: 0;
1204
+ position: relative;
1205
+ }
1206
+ .e-schedule .e-vertical-view .e-appointment-wrapper-hidden {
1207
+ visibility: hidden;
1208
+ }
1209
+ .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:not(.e-schedule-event-clone) {
1210
+ cursor: default;
1211
+ }
1212
+ .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment {
1213
+ background: var(--color-sf-primary);
1214
+ border: 1px solid var(--color-sf-border-light);
1215
+ border-radius: 2px;
1216
+ color: var(--color-sf-primary-text-color);
1217
+ display: -webkit-box;
1218
+ display: -ms-flexbox;
1219
+ display: flex;
1220
+ overflow: hidden;
1221
+ position: absolute;
1222
+ height: 26px;
1223
+ }
1224
+ .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-appointment-details {
1225
+ display: -webkit-box;
1226
+ display: -ms-flexbox;
1227
+ display: flex;
1228
+ -webkit-box-flex: 1;
1229
+ -ms-flex: auto;
1230
+ flex: auto;
1231
+ line-height: 18px;
1232
+ overflow: hidden;
1233
+ padding: 1px 0 1px 4px;
1234
+ }
1235
+ .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-appointment-details .e-subject {
1236
+ -webkit-box-flex: 1;
1237
+ -ms-flex: auto;
1238
+ flex: auto;
1239
+ font-size: 13px;
1240
+ font-weight: 500;
1241
+ overflow: hidden;
1242
+ text-overflow: ellipsis;
1243
+ }
1244
+ .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-appointment-details .e-time {
1245
+ display: block;
1246
+ font-size: 11px;
1247
+ padding: 1px 4px 2px 0;
1248
+ }
1249
+ .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-appointment-details .e-recurrence-icon,
1250
+ .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-appointment-details .e-recurrence-edit-icon,
1251
+ .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-appointment-details .e-left-icon,
1252
+ .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-appointment-details .e-right-icon {
1253
+ line-height: 20px;
1254
+ padding: 0 2px;
1255
+ }
1256
+ .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-disable {
1257
+ display: none;
1258
+ }
1259
+ .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment.e-appointment-border, .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:focus {
1260
+ border: 0;
1261
+ -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
1262
+ box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
1263
+ }
1264
+ .e-schedule .e-vertical-view .e-day-wrapper .e-appointment:not(.e-schedule-event-clone) {
1265
+ cursor: default;
1266
+ }
1267
+ .e-schedule .e-vertical-view .e-day-wrapper .e-appointment {
1268
+ background: var(--color-sf-primary);
1269
+ border: 1px solid var(--color-sf-border-light);
1270
+ border-radius: 2px;
1271
+ color: var(--color-sf-primary-text-color);
1272
+ overflow: hidden;
1273
+ position: absolute;
1274
+ }
1275
+ .e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-appointment-details {
1276
+ -webkit-box-flex: 1;
1277
+ -ms-flex: auto;
1278
+ flex: auto;
1279
+ padding: 0 4px;
1280
+ text-align: left;
1281
+ line-height: 20px;
1282
+ }
1283
+ .e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
1284
+ font-size: 13px;
1285
+ font-weight: 500;
1286
+ line-height: 1.2;
1287
+ margin-left: auto;
1288
+ min-height: 18px;
1289
+ overflow: hidden;
1290
+ overflow-wrap: break-word;
1291
+ padding-top: 4px;
1292
+ white-space: normal;
1293
+ word-wrap: break-word;
1294
+ }
1295
+ .e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-time,
1296
+ .e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-location {
1297
+ font-size: 11px;
1298
+ overflow: hidden;
1299
+ padding-top: 1px;
1300
+ text-overflow: ellipsis;
1301
+ }
1302
+ .e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-time {
1303
+ display: block;
1304
+ }
1305
+ .e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-disable {
1306
+ display: none;
1307
+ }
1308
+ .e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
1309
+ .e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-edit-icon {
1310
+ bottom: 5px;
1311
+ display: block;
1312
+ float: right;
1313
+ height: auto;
1314
+ left: auto;
1315
+ position: absolute;
1316
+ right: 5px;
1317
+ width: auto;
1318
+ }
1319
+ .e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-indicator {
1320
+ display: block;
1321
+ margin: 0 45%;
1322
+ }
1323
+ .e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-up-icon,
1324
+ .e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-down-icon {
1325
+ font-size: 8px;
1326
+ }
1327
+ .e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-up-icon {
1328
+ margin-top: 3px;
1329
+ top: 0;
1330
+ }
1331
+ .e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-down-icon {
1332
+ bottom: 6px;
1333
+ position: absolute;
1334
+ }
1335
+ .e-schedule .e-vertical-view .e-day-wrapper .e-appointment.e-appointment-border, .e-schedule .e-vertical-view .e-day-wrapper .e-appointment:focus {
1336
+ border: 0;
1337
+ -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
1338
+ box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
1339
+ }
1340
+ .e-schedule .e-vertical-view.e-day-view .e-header-date {
1341
+ cursor: default;
1342
+ }
1343
+ .e-schedule .e-vertical-view.e-day-view .e-header-date:hover {
1344
+ text-decoration: none;
1345
+ }
1346
+ .e-schedule.e-device .e-vertical-view .e-header-cells .e-header-day {
1347
+ font-size: 14px;
1348
+ }
1349
+ .e-schedule.e-device .e-vertical-view .e-header-cells .e-header-date {
1350
+ font-size: 18px;
1351
+ }
1352
+ .e-schedule.e-device .e-vertical-view .e-header-cells .e-header-date:hover {
1353
+ text-decoration: none;
1354
+ }
1355
+ .e-schedule.e-device .e-vertical-view .e-left-indent {
1356
+ width: 60px;
1357
+ }
1358
+ .e-schedule.e-device .e-vertical-view .e-clone-time-indicator,
1359
+ .e-schedule.e-device .e-vertical-view .e-current-time {
1360
+ font-size: 9px;
1361
+ }
1362
+ .e-schedule.e-device .e-vertical-view .e-time-cells-wrap {
1363
+ float: left;
1364
+ width: 60px;
1365
+ }
1366
+ .e-schedule.e-device .e-vertical-view .e-time-cells-wrap table td {
1367
+ font-size: 12px;
1368
+ }
1369
+ .e-schedule.e-device .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
1370
+ font-weight: 500;
1371
+ min-height: auto;
1372
+ }
1373
+ .e-schedule.e-rtl {
1374
+ text-align: right;
1375
+ }
1376
+ .e-schedule.e-rtl .e-vertical-view.e-timescale-disable .e-appointment-details {
1377
+ text-align: right;
1378
+ }
1379
+ .e-schedule.e-rtl .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-appointment-details {
1380
+ padding: 1px 4px 1px 0;
1381
+ }
1382
+ .e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-appointment-details {
1383
+ line-height: 15px;
1384
+ text-align: right;
1385
+ }
1386
+ .e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
1387
+ font-weight: 500;
1388
+ margin-left: 15px;
1389
+ margin-right: auto;
1390
+ }
1391
+ .e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
1392
+ .e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-edit-icon {
1393
+ float: left;
1394
+ left: 5px;
1395
+ right: auto;
1396
+ }
1397
+ .e-schedule.e-rtl.e-device .e-vertical-view .e-time-cells-wrap {
1398
+ float: right;
1399
+ }
1400
+ @media screen and (max-width: 480px) {
1401
+ .e-schedule .e-vertical-view .e-left-indent {
1402
+ width: 60px;
1403
+ }
1404
+ }
1405
+ .e-schedule .e-month-view .e-left-indent,
1406
+ .e-schedule .e-month-agenda-view .e-left-indent {
1407
+ border-right: 1px solid var(--color-sf-border-light);
1408
+ width: 36px;
1409
+ }
1410
+ .e-schedule .e-month-view .e-week-number-wrapper,
1411
+ .e-schedule .e-month-agenda-view .e-week-number-wrapper {
1412
+ overflow: hidden;
1413
+ position: relative;
1414
+ }
1415
+ .e-schedule .e-month-view .e-week-number-wrapper .e-schedule-table,
1416
+ .e-schedule .e-month-agenda-view .e-week-number-wrapper .e-schedule-table {
1417
+ height: 100%;
1418
+ }
1419
+ .e-schedule .e-month-view .e-week-number-wrapper .e-week-number,
1420
+ .e-schedule .e-month-agenda-view .e-week-number-wrapper .e-week-number {
1421
+ color: var(--color-sf-content-text-color);
1422
+ padding-top: 4px;
1423
+ text-align: center;
1424
+ vertical-align: top;
1425
+ width: 36px;
1426
+ }
1427
+ .e-schedule .e-month-view .e-content-wrap table tr:last-child td {
1428
+ border-bottom-width: 0;
1429
+ }
1430
+ .e-schedule .e-month-view .e-date-header-wrap {
1431
+ font-size: 14px;
1432
+ overflow: hidden;
1433
+ }
1434
+ .e-schedule .e-month-view .e-week-number {
1435
+ border-bottom: 1px solid var(--color-sf-border-light);
1436
+ border-right: 1px solid var(--color-sf-border-light);
1437
+ height: 75px;
1438
+ }
1439
+ .e-schedule .e-month-view .e-content-wrap {
1440
+ font-size: 14px;
1441
+ }
1442
+ .e-schedule .e-month-view .e-date-header-wrap table col {
1443
+ width: 36px;
1444
+ }
1445
+ .e-schedule .e-month-view .e-resource-cells {
1446
+ color: var(--color-sf-content-text-color);
1447
+ font-size: 14px;
1448
+ height: 40px;
1449
+ padding: 8px;
1450
+ padding-left: 15px;
1451
+ }
1452
+ .e-schedule .e-month-view .e-header-cells {
1453
+ cursor: default;
1454
+ font-weight: normal;
1455
+ height: 34px;
1456
+ padding: 8px;
1457
+ }
1458
+ .e-schedule .e-month-view .e-content-table {
1459
+ height: 100%;
1460
+ }
1461
+ .e-schedule .e-month-view .e-work-cells {
1462
+ height: 75px;
1463
+ vertical-align: top;
1464
+ width: 36px;
1465
+ }
1466
+ .e-schedule .e-month-view .e-work-cells.e-disable-date .e-date-header {
1467
+ visibility: hidden;
1468
+ }
1469
+ .e-schedule .e-month-view .e-work-cells.e-disable-dates {
1470
+ background: var(--color-sf-content-bg-color-alt2);
1471
+ }
1472
+ .e-schedule .e-month-view .e-work-cells.e-disable-dates .e-date-header {
1473
+ cursor: default;
1474
+ opacity: 0.35;
1475
+ }
1476
+ .e-schedule .e-month-view .e-work-cells.e-disable-dates .e-date-header:hover {
1477
+ text-decoration: none;
1478
+ }
1479
+ .e-schedule .e-month-view .e-work-cells.e-disable-dates:hover {
1480
+ background: var(--color-sf-content-bg-color-alt2);
1481
+ }
1482
+ .e-schedule .e-month-view.e-virtual-mask .e-work-cells {
1483
+ background: var(--color-sf-content-bg-color-alt2);
1484
+ -webkit-box-shadow: inset 0 0 0 8px var(--color-sf-holiday-bg-color);
1485
+ box-shadow: inset 0 0 0 8px var(--color-sf-holiday-bg-color);
1486
+ }
1487
+ .e-schedule .e-month-view.e-virtual-mask .e-work-cells:hover {
1488
+ background: var(--color-sf-content-bg-color-alt2);
1489
+ }
1490
+ .e-schedule .e-month-view .e-date-header {
1491
+ cursor: pointer;
1492
+ display: table;
1493
+ height: 20px;
1494
+ line-height: 22px;
1495
+ margin: 3px 3px 2px;
1496
+ text-align: center;
1497
+ }
1498
+ .e-schedule .e-month-view .e-date-header:hover {
1499
+ text-decoration: underline;
1500
+ }
1501
+ .e-schedule .e-month-view .e-appointment-wrapper {
1502
+ position: absolute;
1503
+ }
1504
+ .e-schedule .e-month-view .e-new-event {
1505
+ height: calc(100% - 25px);
1506
+ }
1507
+ .e-schedule .e-month-view .e-block-indicator {
1508
+ margin-top: -20px;
1509
+ }
1510
+ .e-schedule .e-month-view .e-inline-appointment {
1511
+ z-index: 1;
1512
+ }
1513
+ .e-schedule .e-month-view .e-appointment {
1514
+ background: var(--color-sf-primary);
1515
+ border: 1px solid var(--color-sf-border-light);
1516
+ border-radius: 2px;
1517
+ color: var(--color-sf-primary-text-color);
1518
+ display: -webkit-box;
1519
+ display: -ms-flexbox;
1520
+ display: flex;
1521
+ overflow: hidden;
1522
+ position: absolute;
1523
+ cursor: default;
1524
+ height: 26px;
1525
+ }
1526
+ .e-schedule .e-month-view .e-appointment .e-disable {
1527
+ display: none;
1528
+ }
1529
+ .e-schedule .e-month-view .e-appointment .e-appointment-details {
1530
+ display: -webkit-box;
1531
+ display: -ms-flexbox;
1532
+ display: flex;
1533
+ -webkit-box-flex: 1;
1534
+ -ms-flex: auto;
1535
+ flex: auto;
1536
+ line-height: 18px;
1537
+ overflow: hidden;
1538
+ }
1539
+ .e-schedule .e-month-view .e-appointment .e-appointment-details .e-subject {
1540
+ -webkit-box-flex: 1;
1541
+ -ms-flex: auto;
1542
+ flex: auto;
1543
+ font-size: 13px;
1544
+ font-weight: 500;
1545
+ overflow: hidden;
1546
+ padding: 1px 2px;
1547
+ text-overflow: ellipsis;
1548
+ }
1549
+ .e-schedule .e-month-view .e-appointment .e-appointment-details .e-inline-subject {
1550
+ padding: 4px;
1551
+ text-align: center;
1552
+ }
1553
+ .e-schedule .e-month-view .e-appointment .e-appointment-details .e-time {
1554
+ font-size: 11px;
1555
+ padding: 1.5px;
1556
+ }
1557
+ .e-schedule .e-month-view .e-appointment .e-appointment-details .e-recurrence-icon,
1558
+ .e-schedule .e-month-view .e-appointment .e-appointment-details .e-recurrence-edit-icon,
1559
+ .e-schedule .e-month-view .e-appointment .e-appointment-details .e-left-icon,
1560
+ .e-schedule .e-month-view .e-appointment .e-appointment-details .e-right-icon {
1561
+ line-height: 26px;
1562
+ padding: 0 2px;
1563
+ }
1564
+ .e-schedule .e-month-view .e-appointment.e-appointment-border, .e-schedule .e-month-view .e-appointment:focus {
1565
+ border: 0;
1566
+ -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
1567
+ box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
1568
+ }
1569
+ .e-schedule .e-month-view .e-appointment.e-allow-select {
1570
+ pointer-events: none;
1571
+ }
1572
+ .e-schedule .e-month-view .e-appointment .e-subject {
1573
+ padding: 2px;
1574
+ width: 100%;
1575
+ }
1576
+ .e-schedule .e-month-view .e-more-indicator {
1577
+ color: var(--color-sf-content-text-color);
1578
+ cursor: pointer;
1579
+ font-size: 12px;
1580
+ line-height: 11px;
1581
+ overflow: hidden;
1582
+ padding: 2px 4px;
1583
+ position: absolute;
1584
+ text-overflow: ellipsis;
1585
+ }
1586
+ .e-schedule .e-month-view .e-more-indicator:focus {
1587
+ text-decoration: underline;
1588
+ }
1589
+ .e-schedule.e-rtl .e-month-view .e-date-header {
1590
+ margin: 3px 3px 2px;
1591
+ }
1592
+ .e-schedule.e-rtl .e-month-view .e-left-indent,
1593
+ .e-schedule.e-rtl .e-month-view .e-week-number {
1594
+ border-left: 1px solid var(--color-sf-border-light);
1595
+ border-right-width: 0;
1596
+ }
1597
+ .e-schedule .e-year-view .e-calendar-wrapper {
1598
+ display: -webkit-box;
1599
+ display: -ms-flexbox;
1600
+ display: flex;
1601
+ -ms-flex-wrap: wrap;
1602
+ flex-wrap: wrap;
1603
+ -webkit-box-pack: center;
1604
+ -ms-flex-pack: center;
1605
+ justify-content: center;
1606
+ }
1607
+ .e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
1608
+ border: 0;
1609
+ -webkit-box-flex: 0;
1610
+ -ms-flex: 0 25%;
1611
+ flex: 0 25%;
1612
+ max-width: 100%;
1613
+ min-width: 260px;
1614
+ padding: 10px;
1615
+ -webkit-box-shadow: none;
1616
+ box-shadow: none;
1617
+ }
1618
+ .e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-header .e-title {
1619
+ cursor: default;
1620
+ }
1621
+ .e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-content span.e-day {
1622
+ display: block;
1623
+ margin: 0 auto;
1624
+ }
1625
+ .e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-other-month {
1626
+ color: var(--color-sf-content-text-color);
1627
+ pointer-events: visible;
1628
+ -ms-touch-action: auto;
1629
+ touch-action: auto;
1630
+ }
1631
+ .e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-other-month.e-today {
1632
+ opacity: 0.5;
1633
+ }
1634
+ .e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-appointment,
1635
+ .e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-appointment-indicator {
1636
+ background: var(--color-sf-primary);
1637
+ border-radius: 50%;
1638
+ height: 5px;
1639
+ margin: -6px auto 0;
1640
+ position: relative;
1641
+ width: 5px;
1642
+ }
1643
+ .e-schedule .e-year-view .e-calendar-wrapper .e-work-cells.e-disable-dates {
1644
+ background: var(--color-sf-content-bg-color-alt2);
1645
+ cursor: default;
1646
+ }
1647
+ .e-schedule .e-year-view .e-calendar-wrapper .e-work-cells.e-disable-dates .e-day {
1648
+ cursor: default;
1649
+ }
1650
+ .e-schedule .e-year-view .e-calendar-wrapper .e-work-cells.e-disable-dates:hover {
1651
+ background: var(--color-sf-content-bg-color-alt2);
1652
+ }
1653
+ .e-schedule .e-year-view .e-date-header-wrap {
1654
+ font-size: 14px;
1655
+ overflow: hidden;
1656
+ }
1657
+ .e-schedule .e-year-view .e-date-header-wrap table col {
1658
+ width: 36px;
1659
+ }
1660
+ .e-schedule .e-year-view .e-date-header-wrap table td {
1661
+ background: var(--color-sf-content-bg-color-alt1);
1662
+ border-color: var(--color-sf-border-light);
1663
+ border-style: solid;
1664
+ border-width: 0 0 1px 1px;
1665
+ color: var(--color-sf-content-text-color-alt1);
1666
+ text-align: left;
1667
+ }
1668
+ .e-schedule .e-year-view .e-date-header-wrap table td:first-child {
1669
+ border-left-width: 0;
1670
+ }
1671
+ .e-schedule .e-year-view .e-resource-cells {
1672
+ color: var(--color-sf-content-text-color);
1673
+ font-size: 14px;
1674
+ height: 40px;
1675
+ padding: 8px;
1676
+ padding-left: 15px;
1677
+ }
1678
+ .e-schedule .e-year-view .e-content-wrap table td:first-child {
1679
+ border-left-width: 0;
1680
+ }
1681
+ .e-schedule .e-year-view .e-resource .e-month-calendar {
1682
+ max-width: 100%;
1683
+ min-width: 100%;
1684
+ }
1685
+ .e-schedule .e-timeline-year-view .e-date-header-wrap,
1686
+ .e-schedule .e-timeline-year-view .e-month-header-wrapper {
1687
+ overflow: hidden;
1688
+ position: relative;
1689
+ }
1690
+ .e-schedule .e-timeline-year-view .e-month-header-wrapper .e-schedule-table {
1691
+ height: 100%;
1692
+ }
1693
+ .e-schedule .e-timeline-year-view .e-month-header-wrapper .e-schedule-table.e-auto-height {
1694
+ height: auto;
1695
+ }
1696
+ .e-schedule .e-timeline-year-view .e-date-header-wrap table col,
1697
+ .e-schedule .e-timeline-year-view .e-content-wrap table col {
1698
+ width: 100px;
1699
+ }
1700
+ .e-schedule .e-timeline-year-view .e-resource-left-td,
1701
+ .e-schedule .e-timeline-year-view .e-date-header-wrap table td {
1702
+ background: var(--color-sf-content-bg-color-alt1);
1703
+ border-color: var(--color-sf-border-light);
1704
+ border-style: solid;
1705
+ border-width: 0 1px 1px 0;
1706
+ color: var(--color-sf-content-text-color-alt1);
1707
+ text-align: center;
1708
+ }
1709
+ .e-schedule .e-timeline-year-view .e-resource-left-td.e-current-day,
1710
+ .e-schedule .e-timeline-year-view .e-date-header-wrap table td.e-current-day {
1711
+ color: var(--color-sf-primary);
1712
+ }
1713
+ .e-schedule .e-timeline-year-view .e-resource-text {
1714
+ color: var(--color-sf-content-text-color);
1715
+ font-size: 13px;
1716
+ overflow: hidden;
1717
+ padding: 4px 12px;
1718
+ text-overflow: ellipsis;
1719
+ }
1720
+ .e-schedule .e-timeline-year-view .e-resource-left-td {
1721
+ vertical-align: middle;
1722
+ width: 200px;
1723
+ }
1724
+ .e-schedule .e-timeline-year-view .e-left-indent-wrap .e-resource-cells,
1725
+ .e-schedule .e-timeline-year-view .e-date-header-wrap .e-resource-cells {
1726
+ height: 40px;
1727
+ }
1728
+ .e-schedule .e-timeline-year-view .e-resource-column-wrap {
1729
+ overflow: hidden;
1730
+ position: relative;
1731
+ }
1732
+ .e-schedule .e-timeline-year-view .e-resource-column-wrap .e-resource-cells {
1733
+ background: var(--color-sf-holiday-bg-color);
1734
+ border-color: var(--color-sf-border-light);
1735
+ border-style: solid;
1736
+ border-width: 0 1px 1px 0;
1737
+ color: var(--color-sf-content-text-color);
1738
+ height: 75px;
1739
+ padding-left: 12px;
1740
+ padding-right: 0;
1741
+ vertical-align: middle;
1742
+ }
1743
+ .e-schedule .e-timeline-year-view .e-resource-column-wrap .e-resource-cells.e-child-node {
1744
+ background: var(--color-sf-content-bg-color-alt1);
1745
+ }
1746
+ .e-schedule .e-timeline-year-view .e-resource-column-wrap .e-resource-cells:focus {
1747
+ background: var(--color-sf-content-bg-color-hover);
1748
+ }
1749
+ .e-schedule .e-timeline-year-view .e-resource-column-table {
1750
+ height: 100%;
1751
+ }
1752
+ .e-schedule .e-timeline-year-view .e-resource-column-table.e-auto-height {
1753
+ height: auto;
1754
+ }
1755
+ .e-schedule .e-timeline-year-view .e-resource-tree-icon {
1756
+ color: var(--color-sf-icon-color);
1757
+ cursor: pointer;
1758
+ float: left;
1759
+ font-family: "e-icons";
1760
+ font-size: 12px;
1761
+ padding: 4px 7px;
1762
+ }
1763
+ .e-schedule .e-timeline-year-view .e-resource-collapse {
1764
+ -webkit-transform: rotate(90deg);
1765
+ transform: rotate(90deg);
1766
+ }
1767
+ .e-schedule .e-timeline-year-view .e-content-table {
1768
+ height: 100%;
1769
+ }
1770
+ .e-schedule .e-timeline-year-view .e-content-table.e-auto-height {
1771
+ height: auto;
1772
+ }
1773
+ .e-schedule .e-timeline-year-view .e-left-indent td {
1774
+ border-color: var(--color-sf-border-light);
1775
+ border-style: solid;
1776
+ border-width: 0 1px 0 0;
1777
+ vertical-align: middle;
1778
+ }
1779
+ .e-schedule .e-timeline-year-view .e-left-indent tr:last-child td {
1780
+ border-width: 0 1px 1px 0;
1781
+ }
1782
+ .e-schedule .e-timeline-year-view.e-horizontal .e-left-indent {
1783
+ padding: 0;
1784
+ width: 100px;
1785
+ }
1786
+ .e-schedule .e-timeline-year-view.e-vertical .e-left-indent, .e-schedule .e-timeline-year-view.e-vertical .e-left-indent .e-header-cells {
1787
+ width: 100px;
1788
+ }
1789
+ .e-schedule .e-timeline-year-view .e-month-header {
1790
+ border-bottom: 1px solid var(--color-sf-border-light);
1791
+ border-right: 1px solid var(--color-sf-border-light);
1792
+ text-align: center;
1793
+ color: var(--color-sf-content-text-color-alt1);
1794
+ }
1795
+ .e-schedule .e-timeline-year-view .e-month-header.e-current-day {
1796
+ color: var(--color-sf-primary);
1797
+ }
1798
+ .e-schedule .e-timeline-year-view .e-left-indent,
1799
+ .e-schedule .e-timeline-year-view .e-header-cells {
1800
+ cursor: default;
1801
+ font-weight: normal;
1802
+ height: 34px;
1803
+ padding: 0;
1804
+ text-align: center;
1805
+ }
1806
+ .e-schedule .e-timeline-year-view .e-month-header,
1807
+ .e-schedule .e-timeline-year-view .e-work-cells {
1808
+ height: 75px;
1809
+ }
1810
+ .e-schedule .e-timeline-year-view .e-header-cells,
1811
+ .e-schedule .e-timeline-year-view .e-work-cells {
1812
+ width: 100px;
1813
+ }
1814
+ .e-schedule .e-timeline-year-view .e-work-cells {
1815
+ vertical-align: top;
1816
+ }
1817
+ .e-schedule .e-timeline-year-view .e-work-cells .e-date-header {
1818
+ cursor: pointer;
1819
+ display: table;
1820
+ height: 20px;
1821
+ line-height: 22px;
1822
+ margin: 3px 3px 2px;
1823
+ text-align: center;
1824
+ width: 10px;
1825
+ }
1826
+ .e-schedule .e-timeline-year-view .e-work-cells .e-date-header:hover {
1827
+ text-decoration: underline;
1828
+ }
1829
+ .e-schedule .e-timeline-year-view .e-event-table {
1830
+ position: absolute;
1831
+ top: 0;
1832
+ }
1833
+ .e-schedule .e-timeline-year-view .e-event-table .e-appointment-container.e-event-container {
1834
+ height: 75px;
1835
+ position: relative;
1836
+ }
1837
+ .e-schedule .e-timeline-year-view .e-event-table .e-appointment-wrapper {
1838
+ position: absolute;
1839
+ }
1840
+ .e-schedule .e-timeline-year-view .e-event-table .e-inline-appointment {
1841
+ z-index: 1;
1842
+ }
1843
+ .e-schedule .e-timeline-year-view .e-event-table .e-appointment {
1844
+ background: var(--color-sf-primary);
1845
+ border: 1px solid var(--color-sf-border-light);
1846
+ border-radius: 2px;
1847
+ color: var(--color-sf-primary-text-color);
1848
+ display: -webkit-box;
1849
+ display: -ms-flexbox;
1850
+ display: flex;
1851
+ overflow: hidden;
1852
+ position: absolute;
1853
+ cursor: default;
1854
+ height: 26px;
1855
+ }
1856
+ .e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-hidden {
1857
+ display: none;
1858
+ }
1859
+ .e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-appointment-details {
1860
+ display: -webkit-box;
1861
+ display: -ms-flexbox;
1862
+ display: flex;
1863
+ -webkit-box-flex: 1;
1864
+ -ms-flex: auto;
1865
+ flex: auto;
1866
+ line-height: 20px;
1867
+ overflow: hidden;
1868
+ }
1869
+ .e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-subject {
1870
+ -webkit-box-flex: 1;
1871
+ -ms-flex: auto;
1872
+ flex: auto;
1873
+ font-size: 13px;
1874
+ font-weight: 500;
1875
+ overflow: hidden;
1876
+ padding: 1px 2px;
1877
+ text-overflow: ellipsis;
1878
+ }
1879
+ .e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-time,
1880
+ .e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-location {
1881
+ font-size: 11px;
1882
+ overflow: hidden;
1883
+ padding: 1.5px;
1884
+ text-overflow: ellipsis;
1885
+ }
1886
+ .e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-disable {
1887
+ display: none;
1888
+ }
1889
+ .e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-recurrence-icon,
1890
+ .e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-recurrence-edit-icon {
1891
+ line-height: 26px;
1892
+ padding: 0 5px;
1893
+ }
1894
+ .e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-left-icon,
1895
+ .e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-right-icon {
1896
+ line-height: 26px;
1897
+ padding: 0 2px;
1898
+ }
1899
+ .e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-appointment-border, .e-schedule .e-timeline-year-view .e-event-table .e-appointment:focus {
1900
+ border: 0;
1901
+ -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
1902
+ box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
1903
+ }
1904
+ .e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-allow-select {
1905
+ pointer-events: none;
1906
+ }
1907
+ .e-schedule .e-timeline-year-view .e-event-table .e-more-indicator {
1908
+ color: var(--color-sf-content-text-color);
1909
+ cursor: pointer;
1910
+ font-size: 12px;
1911
+ line-height: 11px;
1912
+ overflow: hidden;
1913
+ padding: 2px 4px;
1914
+ position: absolute;
1915
+ text-overflow: ellipsis;
1916
+ }
1917
+ .e-schedule .e-timeline-year-view .e-event-table .e-more-indicator.e-hidden {
1918
+ display: none;
1919
+ }
1920
+ .e-schedule .e-timeline-year-view .e-event-table .e-more-indicator:focus {
1921
+ text-decoration: underline;
1922
+ }
1923
+ .e-schedule.e-device .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
1924
+ max-width: 100%;
1925
+ min-width: 100%;
1926
+ }
1927
+ .e-schedule .e-timeline-view .e-content-wrap,
1928
+ .e-schedule .e-timeline-view .e-content-table,
1929
+ .e-schedule .e-timeline-month-view .e-content-wrap,
1930
+ .e-schedule .e-timeline-month-view .e-content-table {
1931
+ height: 100%;
1932
+ }
1933
+ .e-schedule .e-timeline-view .e-date-header-wrap,
1934
+ .e-schedule .e-timeline-month-view .e-date-header-wrap {
1935
+ font-size: 14px;
1936
+ overflow: hidden;
1937
+ position: relative;
1938
+ }
1939
+ .e-schedule .e-timeline-view .e-event-table,
1940
+ .e-schedule .e-timeline-month-view .e-event-table {
1941
+ position: absolute;
1942
+ top: 0;
1943
+ }
1944
+ .e-schedule .e-timeline-view .e-appointment-container.e-event-container,
1945
+ .e-schedule .e-timeline-month-view .e-appointment-container.e-event-container {
1946
+ height: 60px;
1947
+ position: relative;
1948
+ }
1949
+ .e-schedule .e-timeline-view .e-date-header-wrap table col,
1950
+ .e-schedule .e-timeline-view .e-content-wrap table col,
1951
+ .e-schedule .e-timeline-month-view .e-date-header-wrap table col,
1952
+ .e-schedule .e-timeline-month-view .e-content-wrap table col {
1953
+ width: 50px;
1954
+ }
1955
+ .e-schedule .e-timeline-view .e-date-header-wrap table tbody td,
1956
+ .e-schedule .e-timeline-month-view .e-date-header-wrap table tbody td {
1957
+ height: 36px;
1958
+ overflow: hidden;
1959
+ padding: 8px 0 8px 8px;
1960
+ text-overflow: ellipsis;
1961
+ white-space: nowrap;
1962
+ }
1963
+ .e-schedule .e-timeline-view .e-date-header-wrap table tbody td.e-time-slots,
1964
+ .e-schedule .e-timeline-month-view .e-date-header-wrap table tbody td.e-time-slots {
1965
+ background: var(--color-sf-content-bg-color-alt1);
1966
+ overflow: inherit;
1967
+ }
1968
+ .e-schedule .e-timeline-view .e-date-header-wrap table tbody td > span,
1969
+ .e-schedule .e-timeline-month-view .e-date-header-wrap table tbody td > span {
1970
+ position: relative;
1971
+ }
1972
+ .e-schedule .e-timeline-view .e-navigate:hover,
1973
+ .e-schedule .e-timeline-month-view .e-navigate:hover {
1974
+ cursor: pointer;
1975
+ text-decoration: underline;
1976
+ }
1977
+ .e-schedule .e-timeline-view .e-navigate:focus,
1978
+ .e-schedule .e-timeline-month-view .e-navigate:focus {
1979
+ text-decoration: underline;
1980
+ }
1981
+ .e-schedule .e-timeline-view .e-work-cells,
1982
+ .e-schedule .e-timeline-month-view .e-work-cells {
1983
+ height: 60px;
1984
+ }
1985
+ .e-schedule .e-timeline-view .e-work-cells.e-disable-dates,
1986
+ .e-schedule .e-timeline-month-view .e-work-cells.e-disable-dates {
1987
+ background: var(--color-sf-content-bg-color-alt2);
1988
+ }
1989
+ .e-schedule .e-timeline-view .e-work-cells.e-disable-dates:hover,
1990
+ .e-schedule .e-timeline-month-view .e-work-cells.e-disable-dates:hover {
1991
+ background: var(--color-sf-content-bg-color-alt2);
1992
+ }
1993
+ .e-schedule .e-timeline-view .e-resource-text,
1994
+ .e-schedule .e-timeline-month-view .e-resource-text {
1995
+ color: var(--color-sf-content-text-color);
1996
+ font-size: 13px;
1997
+ overflow: hidden;
1998
+ padding: 4px 12px;
1999
+ text-overflow: ellipsis;
2000
+ }
2001
+ .e-schedule .e-timeline-view .e-resource-left-td,
2002
+ .e-schedule .e-timeline-month-view .e-resource-left-td {
2003
+ background: var(--color-sf-content-bg-color-alt1);
2004
+ border-color: var(--color-sf-border-light);
2005
+ border-style: solid;
2006
+ border-width: 0 1px 1px 0;
2007
+ color: var(--color-sf-content-text-color-alt1);
2008
+ vertical-align: middle;
2009
+ width: 200px;
2010
+ }
2011
+ .e-schedule .e-timeline-view .e-resource-cells,
2012
+ .e-schedule .e-timeline-month-view .e-resource-cells {
2013
+ background: var(--color-sf-holiday-bg-color);
2014
+ border-color: var(--color-sf-border-light);
2015
+ border-style: solid;
2016
+ border-width: 0 1px 1px 0;
2017
+ color: var(--color-sf-content-text-color);
2018
+ height: 60px;
2019
+ padding-left: 12px;
2020
+ padding-right: 0;
2021
+ vertical-align: middle;
2022
+ }
2023
+ .e-schedule .e-timeline-view .e-resource-cells:focus,
2024
+ .e-schedule .e-timeline-month-view .e-resource-cells:focus {
2025
+ background: var(--color-sf-content-bg-color-hover);
2026
+ }
2027
+ .e-schedule .e-timeline-view .e-resource-column-wrap,
2028
+ .e-schedule .e-timeline-month-view .e-resource-column-wrap {
2029
+ overflow: hidden;
2030
+ position: relative;
2031
+ }
2032
+ .e-schedule .e-timeline-view .e-resource-column-table,
2033
+ .e-schedule .e-timeline-month-view .e-resource-column-table {
2034
+ height: 100%;
2035
+ }
2036
+ .e-schedule .e-timeline-view .e-auto-height,
2037
+ .e-schedule .e-timeline-month-view .e-auto-height {
2038
+ height: auto;
2039
+ }
2040
+ .e-schedule .e-timeline-view.e-ignore-whitespace .e-work-cells, .e-schedule .e-timeline-view.e-ignore-whitespace .e-resource-cells, .e-schedule .e-timeline-view.e-ignore-whitespace .e-event-container,
2041
+ .e-schedule .e-timeline-month-view.e-ignore-whitespace .e-work-cells,
2042
+ .e-schedule .e-timeline-month-view.e-ignore-whitespace .e-resource-cells,
2043
+ .e-schedule .e-timeline-month-view.e-ignore-whitespace .e-event-container {
2044
+ height: 42px;
2045
+ }
2046
+ .e-schedule .e-timeline-view.e-virtual-mask .e-work-cells,
2047
+ .e-schedule .e-timeline-month-view.e-virtual-mask .e-work-cells {
2048
+ background: var(--color-sf-content-bg-color-alt2);
2049
+ -webkit-box-shadow: inset 0 0 0 8px var(--color-sf-holiday-bg-color);
2050
+ box-shadow: inset 0 0 0 8px var(--color-sf-holiday-bg-color);
2051
+ }
2052
+ .e-schedule .e-timeline-view .e-resource-tree-icon,
2053
+ .e-schedule .e-timeline-month-view .e-resource-tree-icon {
2054
+ color: var(--color-sf-icon-color);
2055
+ cursor: pointer;
2056
+ float: left;
2057
+ font-family: "e-icons";
2058
+ font-size: 12px;
2059
+ padding: 4px 7px;
2060
+ }
2061
+ .e-schedule .e-timeline-view .e-resource-collapse,
2062
+ .e-schedule .e-timeline-month-view .e-resource-collapse {
2063
+ -webkit-transform: rotate(90deg);
2064
+ transform: rotate(90deg);
2065
+ }
2066
+ .e-schedule .e-timeline-view .e-child-node,
2067
+ .e-schedule .e-timeline-month-view .e-child-node {
2068
+ background: var(--color-sf-content-bg-color-alt1);
2069
+ }
2070
+ .e-schedule .e-timeline-view .e-appointment-wrapper,
2071
+ .e-schedule .e-timeline-month-view .e-appointment-wrapper {
2072
+ position: absolute;
2073
+ }
2074
+ .e-schedule .e-timeline-view .e-inline-appointment,
2075
+ .e-schedule .e-timeline-month-view .e-inline-appointment {
2076
+ z-index: 1;
2077
+ }
2078
+ .e-schedule .e-timeline-view .e-appointment,
2079
+ .e-schedule .e-timeline-month-view .e-appointment {
2080
+ background: var(--color-sf-primary);
2081
+ border: 1px solid var(--color-sf-border-light);
2082
+ border-radius: 2px;
2083
+ color: var(--color-sf-primary-text-color);
2084
+ display: -webkit-box;
2085
+ display: -ms-flexbox;
2086
+ display: flex;
2087
+ overflow: hidden;
2088
+ position: absolute;
2089
+ cursor: default;
2090
+ height: 38px;
2091
+ }
2092
+ .e-schedule .e-timeline-view .e-appointment .e-appointment-details,
2093
+ .e-schedule .e-timeline-month-view .e-appointment .e-appointment-details {
2094
+ display: -webkit-box;
2095
+ display: -ms-flexbox;
2096
+ display: flex;
2097
+ -webkit-box-flex: 1;
2098
+ -ms-flex: auto;
2099
+ flex: auto;
2100
+ overflow: hidden;
2101
+ padding: 0 4px;
2102
+ }
2103
+ .e-schedule .e-timeline-view .e-appointment .e-appointment-details .e-inner-wrap,
2104
+ .e-schedule .e-timeline-month-view .e-appointment .e-appointment-details .e-inner-wrap {
2105
+ -webkit-box-flex: 1;
2106
+ -ms-flex: auto;
2107
+ flex: auto;
2108
+ overflow: hidden;
2109
+ }
2110
+ .e-schedule .e-timeline-view .e-appointment .e-subject,
2111
+ .e-schedule .e-timeline-month-view .e-appointment .e-subject {
2112
+ font-size: 13px;
2113
+ font-weight: 500;
2114
+ line-height: 1.2;
2115
+ margin-left: auto;
2116
+ min-height: 18px;
2117
+ overflow: hidden;
2118
+ padding-top: 4px;
2119
+ text-overflow: ellipsis;
2120
+ }
2121
+ .e-schedule .e-timeline-view .e-appointment .e-time,
2122
+ .e-schedule .e-timeline-view .e-appointment .e-location,
2123
+ .e-schedule .e-timeline-month-view .e-appointment .e-time,
2124
+ .e-schedule .e-timeline-month-view .e-appointment .e-location {
2125
+ font-size: 11px;
2126
+ overflow: hidden;
2127
+ padding-top: 1px;
2128
+ text-overflow: ellipsis;
2129
+ }
2130
+ .e-schedule .e-timeline-view .e-appointment .e-time,
2131
+ .e-schedule .e-timeline-month-view .e-appointment .e-time {
2132
+ display: block;
2133
+ line-height: 1.4;
2134
+ }
2135
+ .e-schedule .e-timeline-view .e-appointment .e-disable,
2136
+ .e-schedule .e-timeline-month-view .e-appointment .e-disable {
2137
+ display: none;
2138
+ }
2139
+ .e-schedule .e-timeline-view .e-appointment .e-recurrence-icon,
2140
+ .e-schedule .e-timeline-view .e-appointment .e-recurrence-edit-icon,
2141
+ .e-schedule .e-timeline-month-view .e-appointment .e-recurrence-icon,
2142
+ .e-schedule .e-timeline-month-view .e-appointment .e-recurrence-edit-icon {
2143
+ line-height: 38px;
2144
+ padding: 0 5px;
2145
+ }
2146
+ .e-schedule .e-timeline-view .e-appointment .e-indicator,
2147
+ .e-schedule .e-timeline-month-view .e-appointment .e-indicator {
2148
+ display: block;
2149
+ }
2150
+ .e-schedule .e-timeline-view .e-appointment .e-left-icon,
2151
+ .e-schedule .e-timeline-view .e-appointment .e-right-icon,
2152
+ .e-schedule .e-timeline-month-view .e-appointment .e-left-icon,
2153
+ .e-schedule .e-timeline-month-view .e-appointment .e-right-icon {
2154
+ font-size: 10px;
2155
+ line-height: 38px;
2156
+ padding-right: 7px;
2157
+ }
2158
+ .e-schedule .e-timeline-view .e-appointment .e-right-icon,
2159
+ .e-schedule .e-timeline-month-view .e-appointment .e-right-icon {
2160
+ padding-right: 5px;
2161
+ }
2162
+ .e-schedule .e-timeline-view .e-appointment.e-appointment-border, .e-schedule .e-timeline-view .e-appointment:focus,
2163
+ .e-schedule .e-timeline-month-view .e-appointment.e-appointment-border,
2164
+ .e-schedule .e-timeline-month-view .e-appointment:focus {
2165
+ border: 0;
2166
+ -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
2167
+ box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
2168
+ }
2169
+ .e-schedule .e-timeline-view .e-appointment.e-allow-select,
2170
+ .e-schedule .e-timeline-month-view .e-appointment.e-allow-select {
2171
+ pointer-events: none;
2172
+ }
2173
+ .e-schedule .e-timeline-view .e-more-indicator,
2174
+ .e-schedule .e-timeline-month-view .e-more-indicator {
2175
+ color: var(--color-sf-content-text-color);
2176
+ cursor: pointer;
2177
+ font-size: 12px;
2178
+ line-height: 11px;
2179
+ overflow: hidden;
2180
+ padding: 2px 4px;
2181
+ position: absolute;
2182
+ text-overflow: ellipsis;
2183
+ }
2184
+ .e-schedule .e-timeline-view .e-more-indicator:focus,
2185
+ .e-schedule .e-timeline-month-view .e-more-indicator:focus {
2186
+ text-decoration: underline;
2187
+ }
2188
+ .e-schedule .e-timeline-view .e-navigate {
2189
+ font-size: 14px;
2190
+ }
2191
+ .e-schedule .e-timeline-view .e-clone-time-indicator,
2192
+ .e-schedule .e-timeline-view .e-current-time {
2193
+ bottom: 0;
2194
+ position: absolute;
2195
+ }
2196
+ .e-schedule .e-timeline-view .e-current-timeline {
2197
+ position: absolute;
2198
+ top: 0;
2199
+ }
2200
+ .e-schedule .e-timeline-month-view .e-date-header-wrap table col,
2201
+ .e-schedule .e-timeline-month-view .e-content-wrap table col {
2202
+ width: 70px;
2203
+ }
2204
+ .e-schedule .e-virtual-scroll.e-vertical-view .e-content-table, .e-schedule .e-virtual-scroll.e-month-view .e-content-table {
2205
+ -webkit-transform: translateX(0);
2206
+ transform: translateX(0);
2207
+ }
2208
+ .e-schedule .e-virtual-scroll.e-timeline-view .e-content-table, .e-schedule .e-virtual-scroll.e-timeline-month-view .e-content-table, .e-schedule .e-virtual-scroll.e-timeline-year-view.e-vertical .e-content-table {
2209
+ -webkit-transform: translateY(0);
2210
+ transform: translateY(0);
2211
+ }
2212
+ .e-schedule .e-virtual-scroll .e-content-table {
2213
+ position: absolute;
2214
+ }
2215
+ .e-schedule .e-virtual-scroll .e-content-table.e-virtual-relative {
2216
+ position: relative;
2217
+ }
2218
+ .e-schedule .e-virtual-scroll .e-content-wrap.e-transition,
2219
+ .e-schedule .e-virtual-scroll .e-resource-column-wrap.e-transition {
2220
+ -webkit-transition: all 1000ms linear;
2221
+ transition: all 1000ms linear;
2222
+ }
2223
+ .e-schedule.e-rtl .e-timeline-view .e-appointment .e-left-icon,
2224
+ .e-schedule.e-rtl .e-timeline-view .e-appointment .e-right-icon,
2225
+ .e-schedule.e-rtl .e-timeline-month-view .e-appointment .e-left-icon,
2226
+ .e-schedule.e-rtl .e-timeline-month-view .e-appointment .e-right-icon {
2227
+ padding: 0 0 0 5px;
2228
+ }
2229
+ .e-schedule.e-rtl .e-timeline-view .e-inline-appointment,
2230
+ .e-schedule.e-rtl .e-timeline-month-view .e-inline-appointment {
2231
+ z-index: 1;
2232
+ }
2233
+ .e-schedule.e-rtl .e-timeline-view .e-resource-left-td,
2234
+ .e-schedule.e-rtl .e-timeline-month-view .e-resource-left-td {
2235
+ border-width: 0 0 1px 1px;
2236
+ }
2237
+ .e-schedule.e-rtl .e-timeline-view .e-resource-cells,
2238
+ .e-schedule.e-rtl .e-timeline-month-view .e-resource-cells {
2239
+ border-width: 0 0 1px 1px;
2240
+ padding-right: 15px;
2241
+ }
2242
+ .e-schedule.e-rtl .e-timeline-view .e-resource-tree-icon,
2243
+ .e-schedule.e-rtl .e-timeline-month-view .e-resource-tree-icon {
2244
+ float: right;
2245
+ }
2246
+ .e-schedule.e-rtl .e-timeline-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap,
2247
+ .e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
2248
+ text-align: right;
2249
+ }
2250
+ .e-schedule.e-device .e-month-view .e-date-header-wrap,
2251
+ .e-schedule.e-device .e-timeline-view .e-date-header-wrap,
2252
+ .e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
2253
+ font-size: 16px;
2254
+ }
2255
+ .e-schedule.e-device .e-month-view .e-date-header-wrap td,
2256
+ .e-schedule.e-device .e-timeline-view .e-date-header-wrap td,
2257
+ .e-schedule.e-device .e-timeline-month-view .e-date-header-wrap td {
2258
+ border-left-width: 0;
2259
+ border-right-width: 0;
2260
+ }
2261
+ .e-schedule.e-device .e-month-view .e-content-wrap,
2262
+ .e-schedule.e-device .e-timeline-view .e-content-wrap,
2263
+ .e-schedule.e-device .e-timeline-month-view .e-content-wrap {
2264
+ font-size: 14px;
2265
+ }
2266
+ .e-schedule.e-device .e-month-view .e-date-header:hover,
2267
+ .e-schedule.e-device .e-timeline-view .e-date-header:hover,
2268
+ .e-schedule.e-device .e-timeline-month-view .e-date-header:hover {
2269
+ text-decoration: none;
2270
+ }
2271
+ .e-schedule.e-device .e-month-view .e-more-indicator,
2272
+ .e-schedule.e-device .e-timeline-view .e-more-indicator,
2273
+ .e-schedule.e-device .e-timeline-month-view .e-more-indicator {
2274
+ font-size: 12px;
2275
+ }
2276
+ .e-schedule.e-device .e-month-view .e-navigate:hover,
2277
+ .e-schedule.e-device .e-timeline-view .e-navigate:hover,
2278
+ .e-schedule.e-device .e-timeline-month-view .e-navigate:hover {
2279
+ text-decoration: none;
2280
+ }
2281
+ .e-schedule .e-month-agenda-view .e-schedule-resource-toolbar .e-resource-menu {
2282
+ margin-top: 6px;
2283
+ }
2284
+ .e-schedule .e-month-agenda-view .e-schedule-resource-toolbar .e-resource-menu.e-disable {
2285
+ display: none;
2286
+ }
2287
+ .e-schedule .e-month-agenda-view .e-schedule-resource-toolbar .e-resource-level-title .e-icon-next {
2288
+ margin-top: 4px;
2289
+ }
2290
+ .e-schedule .e-month-agenda-view .e-week-number-wrapper .e-week-number {
2291
+ border-right: 1px solid var(--color-sf-border-light);
2292
+ height: 40px;
2293
+ padding-top: 8px;
2294
+ }
2295
+ .e-schedule .e-month-agenda-view .e-wrapper-container {
2296
+ position: relative;
2297
+ }
2298
+ .e-schedule .e-month-agenda-view .e-week-number-wrapper .e-schedule-table,
2299
+ .e-schedule .e-month-agenda-view .e-content-table {
2300
+ border-bottom: 2px solid var(--color-sf-border-light);
2301
+ -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
2302
+ box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
2303
+ height: 100%;
2304
+ }
2305
+ .e-schedule .e-month-agenda-view .e-resource-column {
2306
+ border-bottom: 1px solid var(--color-sf-border-light);
2307
+ vertical-align: top;
2308
+ width: 75px;
2309
+ border-right: 1px solid var(--color-sf-border-light);
2310
+ }
2311
+ .e-schedule .e-month-agenda-view .e-resource-name {
2312
+ color: var(--color-sf-content-text-color);
2313
+ font-size: 16px;
2314
+ line-height: 26px;
2315
+ overflow: hidden;
2316
+ padding: 8px;
2317
+ text-overflow: ellipsis;
2318
+ }
2319
+ .e-schedule .e-month-agenda-view .e-day-padding {
2320
+ padding-left: 8px;
2321
+ }
2322
+ .e-schedule .e-month-agenda-view .e-day-border {
2323
+ border-bottom: 1px solid var(--color-sf-border-light);
2324
+ }
2325
+ .e-schedule .e-month-agenda-view .e-date-header-wrap {
2326
+ font-size: 16px;
2327
+ overflow: hidden;
2328
+ }
2329
+ .e-schedule .e-month-agenda-view .e-content-wrap {
2330
+ font-size: 14px;
2331
+ }
2332
+ .e-schedule .e-month-agenda-view .e-header-cells {
2333
+ cursor: default;
2334
+ font-weight: normal;
2335
+ height: 34px;
2336
+ padding: 5px;
2337
+ text-align: center;
2338
+ }
2339
+ .e-schedule .e-month-agenda-view .e-work-cells {
2340
+ height: 40px;
2341
+ position: relative;
2342
+ vertical-align: top;
2343
+ }
2344
+ .e-schedule .e-month-agenda-view .e-work-cells.e-disable-dates {
2345
+ background: var(--color-sf-content-bg-color-alt2);
2346
+ }
2347
+ .e-schedule .e-month-agenda-view .e-work-cells.e-disable-dates:hover {
2348
+ background: var(--color-sf-content-bg-color-alt2);
2349
+ }
2350
+ .e-schedule .e-month-agenda-view .e-date-header {
2351
+ height: 24px;
2352
+ line-height: 24.5px;
2353
+ margin: 4px auto 0;
2354
+ text-align: center;
2355
+ width: 24px;
2356
+ }
2357
+ .e-schedule .e-month-agenda-view .e-appointment-container {
2358
+ min-height: 40px;
2359
+ }
2360
+ .e-schedule .e-month-agenda-view .e-appointment-wrap {
2361
+ background: transparent;
2362
+ overflow: auto;
2363
+ padding: 0 8px;
2364
+ }
2365
+ .e-schedule .e-month-agenda-view .e-appointment {
2366
+ border-left: 3px solid var(--color-sf-primary);
2367
+ border-right: 0;
2368
+ cursor: default;
2369
+ padding: 0 16px;
2370
+ }
2371
+ .e-schedule .e-month-agenda-view .e-appointment:hover {
2372
+ background: var(--color-sf-content-bg-color-hover);
2373
+ }
2374
+ .e-schedule .e-month-agenda-view .e-appointment.e-appointment-border, .e-schedule .e-month-agenda-view .e-appointment:focus {
2375
+ background: var(--color-sf-content-bg-color-selected);
2376
+ }
2377
+ .e-schedule .e-month-agenda-view .e-appointment.e-template {
2378
+ display: -webkit-inline-box;
2379
+ display: -ms-inline-flexbox;
2380
+ display: inline-flex;
2381
+ -webkit-box-orient: horizontal;
2382
+ -webkit-box-direction: reverse;
2383
+ -ms-flex-direction: row-reverse;
2384
+ flex-direction: row-reverse;
2385
+ }
2386
+ .e-schedule .e-month-agenda-view .e-subject-wrap {
2387
+ display: -webkit-box;
2388
+ display: -ms-flexbox;
2389
+ display: flex;
2390
+ }
2391
+ .e-schedule .e-month-agenda-view .e-subject {
2392
+ color: var(--color-sf-content-text-color);
2393
+ font-size: 14px;
2394
+ line-height: 26px;
2395
+ overflow: hidden;
2396
+ text-overflow: ellipsis;
2397
+ }
2398
+ .e-schedule .e-month-agenda-view .e-recurrence-icon,
2399
+ .e-schedule .e-month-agenda-view .e-recurrence-edit-icon {
2400
+ color: var(--color-sf-content-text-color);
2401
+ line-height: 26px;
2402
+ padding: 0 10px;
2403
+ }
2404
+ .e-schedule .e-month-agenda-view .e-date-time {
2405
+ color: var(--color-sf-content-text-color);
2406
+ font-size: 12px;
2407
+ line-height: 26px;
2408
+ overflow: hidden;
2409
+ text-overflow: ellipsis;
2410
+ }
2411
+ .e-schedule .e-month-agenda-view .e-location {
2412
+ color: var(--color-sf-content-text-color);
2413
+ font-size: 12px;
2414
+ line-height: 26px;
2415
+ overflow: hidden;
2416
+ padding-left: 8px;
2417
+ text-overflow: ellipsis;
2418
+ }
2419
+ .e-schedule .e-month-agenda-view .e-no-event {
2420
+ color: var(--color-sf-content-text-color);
2421
+ cursor: default;
2422
+ font-size: 14px;
2423
+ height: 100%;
2424
+ padding: 8px 4px;
2425
+ }
2426
+ .e-schedule .e-month-agenda-view .e-agenda-item.e-month-agenda-view {
2427
+ padding: 16px 0 0;
2428
+ }
2429
+ .e-schedule .e-month-agenda-view .e-agenda-parent.e-month-agenda-view {
2430
+ margin: 0;
2431
+ padding: 0;
2432
+ }
2433
+ .e-schedule .e-month-agenda-view .e-work-cells .e-appointment-indicator {
2434
+ background: var(--color-sf-primary);
2435
+ border-radius: 50%;
2436
+ height: 6px;
2437
+ left: 0;
2438
+ margin: 1px auto;
2439
+ width: 6px;
2440
+ }
2441
+ .e-schedule.e-rtl .e-month-agenda-view .e-left-indent,
2442
+ .e-schedule.e-rtl .e-month-agenda-view .e-week-number {
2443
+ border-left: 1px solid var(--color-sf-border-light);
2444
+ border-right-width: 0;
2445
+ }
2446
+ .e-schedule.e-rtl .e-month-agenda-view .e-appointment {
2447
+ border-left: 0;
2448
+ border-right: 3px solid var(--color-sf-primary);
2449
+ }
2450
+ .e-schedule.e-rtl .e-month-agenda-view .e-resource-column {
2451
+ border-bottom: 1px solid var(--color-sf-border-light);
2452
+ border-left: 1px solid var(--color-sf-border-light);
2453
+ border-right: 0;
2454
+ vertical-align: top;
2455
+ width: 75px;
2456
+ }
2457
+ .e-schedule.e-rtl .e-month-agenda-view .e-resource-column .e-resource-name {
2458
+ white-space: normal;
2459
+ }
2460
+ .e-schedule.e-rtl .e-month-agenda-view .e-day-padding {
2461
+ padding-right: 8px;
2462
+ }
2463
+ .e-schedule.e-device .e-month-agenda-view .e-date-header-wrap {
2464
+ font-size: 16px;
2465
+ }
2466
+ .e-schedule.e-device .e-month-agenda-view .e-content-wrap {
2467
+ font-size: 14px;
2468
+ }
2469
+ .e-schedule .e-agenda-view {
2470
+ background: transparent;
2471
+ }
2472
+ .e-schedule .e-agenda-view .e-content-wrap table td:first-child,
2473
+ .e-schedule .e-agenda-view .e-date-column {
2474
+ vertical-align: top;
2475
+ width: 75px;
2476
+ }
2477
+ .e-schedule .e-agenda-view .e-resource-column {
2478
+ border-bottom: 1px solid var(--color-sf-border-light);
2479
+ vertical-align: top;
2480
+ width: 75px;
2481
+ color: var(--color-sf-content-text-color-alt1);
2482
+ border-right: 1px solid var(--color-sf-border-light);
2483
+ }
2484
+ .e-schedule .e-agenda-view .e-month-header {
2485
+ background: var(--color-sf-primary);
2486
+ height: 100px;
2487
+ padding-top: 12px;
2488
+ vertical-align: top;
2489
+ }
2490
+ .e-schedule .e-agenda-view .e-month-header .e-date-header {
2491
+ color: var(--color-sf-primary-text-color);
2492
+ font-size: 18px;
2493
+ }
2494
+ .e-schedule .e-agenda-view .e-day-date-header {
2495
+ color: var(--color-sf-content-text-color-alt1);
2496
+ cursor: default;
2497
+ padding: 8px 34px 14px 18px;
2498
+ }
2499
+ .e-schedule .e-agenda-view .e-day-date-header .e-m-date {
2500
+ font-size: 16px;
2501
+ }
2502
+ .e-schedule .e-agenda-view .e-day-date-header .e-m-day {
2503
+ font-size: 12px;
2504
+ }
2505
+ .e-schedule .e-agenda-view .e-day-date-header.e-current-day {
2506
+ color: var(--color-sf-primary);
2507
+ }
2508
+ .e-schedule .e-agenda-view .e-day-border {
2509
+ border-bottom: 1px solid var(--color-sf-border-light);
2510
+ }
2511
+ .e-schedule .e-agenda-view .e-date-border {
2512
+ border-bottom: 1px solid var(--color-sf-border-light);
2513
+ border-right: 1px solid var(--color-sf-border-light);
2514
+ }
2515
+ .e-schedule .e-agenda-view .e-day-padding {
2516
+ padding-left: 8px;
2517
+ }
2518
+ .e-schedule .e-agenda-view .e-date-header {
2519
+ font-size: 20px;
2520
+ }
2521
+ .e-schedule .e-agenda-view .e-day-header {
2522
+ font-size: 12px;
2523
+ }
2524
+ .e-schedule .e-agenda-view .e-subject-wrap {
2525
+ display: -webkit-box;
2526
+ display: -ms-flexbox;
2527
+ display: flex;
2528
+ margin-bottom: 4px;
2529
+ }
2530
+ .e-schedule .e-agenda-view .e-active-appointment-agenda .e-subject {
2531
+ color: var(--color-sf-content-text-color-selected);
2532
+ }
2533
+ .e-schedule .e-agenda-view .e-active-appointment-agenda .e-date-time {
2534
+ color: var(--color-sf-content-text-color-selected);
2535
+ }
2536
+ .e-schedule .e-agenda-view .e-active-appointment-agenda .e-resource-name {
2537
+ color: var(--color-sf-content-text-color-selected);
2538
+ }
2539
+ .e-schedule .e-agenda-view .e-active-appointment-agenda .e-recurrence-icon,
2540
+ .e-schedule .e-agenda-view .e-active-appointment-agenda .e-recurrence-edit-icon {
2541
+ color: var(--color-sf-content-text-color-selected);
2542
+ }
2543
+ .e-schedule .e-agenda-view .e-active-appointment-agenda .e-location {
2544
+ color: var(--color-sf-content-text-color-selected);
2545
+ }
2546
+ .e-schedule .e-agenda-view .e-subject {
2547
+ color: var(--color-sf-content-text-color);
2548
+ font-size: 14px;
2549
+ line-height: 23px;
2550
+ overflow: hidden;
2551
+ text-overflow: ellipsis;
2552
+ }
2553
+ .e-schedule .e-agenda-view .e-resource-name {
2554
+ color: var(--color-sf-content-text-color);
2555
+ font-size: 12px;
2556
+ line-height: 26px;
2557
+ overflow: hidden;
2558
+ padding: 8px;
2559
+ text-overflow: ellipsis;
2560
+ }
2561
+ .e-schedule .e-agenda-view .e-recurrence-icon,
2562
+ .e-schedule .e-agenda-view .e-recurrence-edit-icon {
2563
+ color: var(--color-sf-content-text-color);
2564
+ line-height: 21px;
2565
+ padding: 0 10px;
2566
+ }
2567
+ .e-schedule .e-agenda-view .e-date-time {
2568
+ color: var(--color-sf-content-text-color);
2569
+ font-size: 12px;
2570
+ line-height: 21px;
2571
+ overflow: hidden;
2572
+ text-overflow: ellipsis;
2573
+ }
2574
+ .e-schedule .e-agenda-view .e-location {
2575
+ color: var(--color-sf-content-text-color);
2576
+ font-size: 12px;
2577
+ line-height: 23px;
2578
+ overflow: hidden;
2579
+ padding-left: 8px;
2580
+ text-overflow: ellipsis;
2581
+ }
2582
+ .e-schedule .e-agenda-view .e-agenda-item {
2583
+ padding: 10px 0;
2584
+ }
2585
+ .e-schedule .e-agenda-view .e-agenda-parent {
2586
+ margin: 0;
2587
+ padding: 0;
2588
+ }
2589
+ .e-schedule .e-agenda-view .e-appointment {
2590
+ border-left: 3px solid var(--color-sf-primary);
2591
+ border-right: 0;
2592
+ cursor: default;
2593
+ padding: 0 12px;
2594
+ }
2595
+ .e-schedule .e-agenda-view .e-appointment:hover {
2596
+ background: var(--color-sf-content-bg-color-hover);
2597
+ }
2598
+ .e-schedule .e-agenda-view .e-appointment.e-appointment-border, .e-schedule .e-agenda-view .e-appointment:focus {
2599
+ background: var(--color-sf-content-bg-color-selected);
2600
+ }
2601
+ .e-schedule .e-agenda-view .e-appointment.e-template {
2602
+ display: -webkit-inline-box;
2603
+ display: -ms-inline-flexbox;
2604
+ display: inline-flex;
2605
+ -webkit-box-orient: horizontal;
2606
+ -webkit-box-direction: reverse;
2607
+ -ms-flex-direction: row-reverse;
2608
+ flex-direction: row-reverse;
2609
+ }
2610
+ .e-schedule .e-agenda-view .e-no-event {
2611
+ color: var(--color-sf-content-text-color);
2612
+ cursor: default;
2613
+ font-size: 14px;
2614
+ line-height: 52px;
2615
+ padding: 0 11px;
2616
+ }
2617
+ .e-schedule .e-agenda-view .e-empty-event {
2618
+ color: var(--color-sf-content-text-color);
2619
+ cursor: default;
2620
+ font-size: 14px;
2621
+ line-height: 52px;
2622
+ padding: 0 11px;
2623
+ }
2624
+ .e-schedule.e-device .e-agenda-view .e-m-date,
2625
+ .e-schedule.e-device .e-month-agenda-view .e-m-date {
2626
+ font-size: 18px;
2627
+ }
2628
+ .e-schedule.e-device .e-agenda-view .e-resource-name,
2629
+ .e-schedule.e-device .e-agenda-view .e-m-day,
2630
+ .e-schedule.e-device .e-month-agenda-view .e-resource-name,
2631
+ .e-schedule.e-device .e-month-agenda-view .e-m-day {
2632
+ color: var(--color-sf-content-text-color);
2633
+ font-size: 14px;
2634
+ }
2635
+ .e-schedule.e-rtl .e-agenda-view .e-appointment {
2636
+ border-left: 0;
2637
+ border-right: 3px solid var(--color-sf-primary);
2638
+ }
2639
+ .e-schedule.e-rtl .e-agenda-view .e-resource-column {
2640
+ border-left: 1px solid var(--color-sf-border-light);
2641
+ border-right: 0;
2642
+ border-bottom: 1px solid var(--color-sf-border-light);
2643
+ vertical-align: top;
2644
+ width: 75px;
2645
+ }
2646
+ .e-schedule.e-rtl .e-agenda-view .e-resource-column .e-resource-name {
2647
+ white-space: normal;
2648
+ }
2649
+ .e-schedule.e-rtl .e-agenda-view .e-day-padding {
2650
+ padding-right: 8px;
2651
+ }
2652
+ .e-schedule.e-rtl .e-agenda-view .e-date-border {
2653
+ border-bottom: 1px solid var(--color-sf-border-light);
2654
+ border-left: 1px solid var(--color-sf-border-light);
2655
+ border-right: 0;
2656
+ }
2657
+
2658
+ .e-schedule.e-read-only .e-toolbar-item.e-add.e-overflow-show {
2659
+ display: none;
2660
+ }
2661
+
2662
+ .e-schedule.e-multi-drag .e-vertical-view .e-all-day-appointment-wrapper .e-appointment.e-appointment-border, .e-schedule.e-multi-drag .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:focus {
2663
+ border: 1px solid rgba(var(--color-sf-border-light), 0.5);
2664
+ }
2665
+ .e-schedule.e-multi-drag .e-vertical-view.e-timescale-disable .e-appointment.e-appointment-border, .e-schedule.e-multi-drag .e-vertical-view.e-timescale-disable .e-appointment:focus {
2666
+ border: 1px solid rgba(var(--color-sf-border-light), 0.5);
2667
+ }
2668
+ .e-schedule.e-multi-drag .e-vertical-view .e-day-wrapper .e-appointment.e-appointment-border, .e-schedule.e-multi-drag .e-vertical-view .e-day-wrapper .e-appointment:focus {
2669
+ border: 1px solid rgba(var(--color-sf-border-light), 0.5);
2670
+ }
2671
+ .e-schedule.e-multi-drag .e-month-view .e-appointment.e-appointment-border, .e-schedule.e-multi-drag .e-month-view .e-appointment:focus {
2672
+ border: 1px solid rgba(var(--color-sf-border-light), 0.5);
2673
+ }
2674
+ .e-schedule.e-multi-drag .e-timeline-year-view .e-event-table .e-appointment.e-appointment-border, .e-schedule.e-multi-drag .e-timeline-year-view .e-event-table .e-appointment:focus {
2675
+ border: 1px solid rgba(var(--color-sf-border-light), 0.5);
2676
+ }
2677
+ .e-schedule.e-multi-drag .e-timeline-view .e-appointment.e-appointment-border, .e-schedule.e-multi-drag .e-timeline-view .e-appointment:focus,
2678
+ .e-schedule.e-multi-drag .e-timeline-month-view .e-appointment.e-appointment-border,
2679
+ .e-schedule.e-multi-drag .e-timeline-month-view .e-appointment:focus {
2680
+ border: 1px solid rgba(var(--color-sf-border-light), 0.5);
2681
+ }
2682
+
2683
+ .e-more-popup-wrapper.e-multi-drag .e-appointment.e-appointment-border, .e-more-popup-wrapper.e-multi-drag .e-appointment:focus {
2684
+ border: 1px solid rgba(var(--color-sf-border-light), 0.5);
2685
+ }
2686
+
2687
+ /*! schedule event tooltip */
2688
+ .e-schedule-event-tooltip .e-subject {
2689
+ font-size: 12px;
2690
+ }
2691
+
2692
+ .e-dialog.e-quick-dialog.e-following-events-dialog {
2693
+ width: 420px;
2694
+ }
2695
+ .e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content {
2696
+ padding: 8px 18px;
2697
+ }
2698
+ @media screen and (max-width: 767px) {
2699
+ .e-dialog.e-quick-dialog.e-following-events-dialog {
2700
+ width: 289px;
2701
+ }
2702
+ .e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content {
2703
+ padding: 5%;
2704
+ }
2705
+ .e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content button {
2706
+ margin-bottom: 5%;
2707
+ }
2708
+ }
2709
+
2710
+ .e-dialog.e-quick-dialog {
2711
+ -webkit-user-select: none;
2712
+ -moz-user-select: none;
2713
+ -ms-user-select: none;
2714
+ user-select: none;
2715
+ width: 320px;
2716
+ }
2717
+ .e-dialog.e-quick-dialog .e-disable {
2718
+ display: none;
2719
+ }
2720
+ .e-dialog.e-quick-dialog .e-dlg-header-content {
2721
+ border-bottom: none;
2722
+ }
2723
+ .e-dialog.e-quick-dialog .e-footer-content {
2724
+ border-top: none;
2725
+ }
2726
+ .e-dialog.e-quick-dialog .e-quick-dialog-cancel {
2727
+ -webkit-box-shadow: none;
2728
+ box-shadow: none;
2729
+ }
2730
+ .e-dialog.e-quick-dialog.e-rtl {
2731
+ text-align: right;
2732
+ }
2733
+
2734
+ /*! schedule event window */
2735
+ .e-schedule-dialog .e-disable {
2736
+ display: none;
2737
+ }
2738
+ .e-schedule-dialog .e-icon-disable {
2739
+ opacity: 0.5;
2740
+ }
2741
+ .e-schedule-dialog .e-dlg-header-content {
2742
+ padding-bottom: 8px;
2743
+ }
2744
+ .e-schedule-dialog .e-dlg-content {
2745
+ padding-bottom: 12px;
2746
+ position: relative;
2747
+ }
2748
+ .e-schedule-dialog .e-event-delete {
2749
+ float: left;
2750
+ }
2751
+ .e-schedule-dialog .e-subject-container,
2752
+ .e-schedule-dialog .e-start-container,
2753
+ .e-schedule-dialog .e-description-label {
2754
+ padding-right: 8px;
2755
+ }
2756
+ .e-schedule-dialog .e-start-time-zone-container {
2757
+ padding-left: 4px;
2758
+ padding-right: 8px;
2759
+ }
2760
+ .e-schedule-dialog .e-location-container,
2761
+ .e-schedule-dialog .e-end-container {
2762
+ padding-left: 8px;
2763
+ }
2764
+ .e-schedule-dialog .e-end-time-zone-container {
2765
+ padding-left: 8px;
2766
+ padding-right: 4px;
2767
+ }
2768
+ .e-schedule-dialog .e-all-day-container {
2769
+ padding-right: 16px;
2770
+ }
2771
+ .e-schedule-dialog .e-time-zone-row {
2772
+ display: -webkit-box;
2773
+ display: -ms-flexbox;
2774
+ display: flex;
2775
+ height: 0;
2776
+ margin-bottom: 0;
2777
+ overflow: hidden;
2778
+ padding-bottom: 0;
2779
+ -webkit-transition: 0.3s ease-in-out;
2780
+ transition: 0.3s ease-in-out;
2781
+ width: 100%;
2782
+ }
2783
+ .e-schedule-dialog .e-time-zone-row .e-start-time-zone-container,
2784
+ .e-schedule-dialog .e-time-zone-row .e-end-time-zone-container {
2785
+ display: none;
2786
+ -webkit-transform: translateY(-100%);
2787
+ transform: translateY(-100%);
2788
+ }
2789
+ .e-schedule-dialog .e-time-zone-row.e-enable {
2790
+ height: 56px;
2791
+ margin-bottom: 12px;
2792
+ }
2793
+ .e-schedule-dialog .e-time-zone-row.e-enable .e-start-time-zone-container,
2794
+ .e-schedule-dialog .e-time-zone-row.e-enable .e-end-time-zone-container {
2795
+ display: block;
2796
+ -webkit-transform: translateY(0);
2797
+ transform: translateY(0);
2798
+ }
2799
+ .e-schedule-dialog .e-title-location-row,
2800
+ .e-schedule-dialog .e-start-end-row,
2801
+ .e-schedule-dialog .e-start-input-container,
2802
+ .e-schedule-dialog .e-end-input-container {
2803
+ display: -webkit-box;
2804
+ display: -ms-flexbox;
2805
+ display: flex;
2806
+ padding-bottom: 12px;
2807
+ width: 100%;
2808
+ }
2809
+ .e-schedule-dialog .e-resources {
2810
+ padding-bottom: 12px;
2811
+ width: 100%;
2812
+ }
2813
+ .e-schedule-dialog .e-all-day-time-zone-row {
2814
+ display: -webkit-box;
2815
+ display: -ms-flexbox;
2816
+ display: flex;
2817
+ padding-bottom: 12px;
2818
+ padding-top: 4px;
2819
+ width: 100%;
2820
+ }
2821
+ .e-schedule-dialog .e-subject-container,
2822
+ .e-schedule-dialog .e-location-container,
2823
+ .e-schedule-dialog .e-start-container,
2824
+ .e-schedule-dialog .e-end-container,
2825
+ .e-schedule-dialog .e-start-time-zone-container,
2826
+ .e-schedule-dialog .e-end-time-zone-container {
2827
+ width: 50%;
2828
+ }
2829
+ .e-schedule-dialog .e-description,
2830
+ .e-schedule-dialog .e-float-input .e-description {
2831
+ height: 50px;
2832
+ resize: vertical;
2833
+ }
2834
+ .e-schedule-dialog .e-repeat-container,
2835
+ .e-schedule-dialog .e-input-group .e-input-group-icon.e-icon-disable {
2836
+ display: none;
2837
+ }
2838
+ .e-schedule-dialog .e-footer-content {
2839
+ margin-top: 4px;
2840
+ }
2841
+ .e-schedule-dialog.e-rtl {
2842
+ text-align: right;
2843
+ }
2844
+ .e-schedule-dialog.e-rtl .e-all-day-container {
2845
+ margin-left: 16px;
2846
+ margin-right: 0;
2847
+ }
2848
+ .e-schedule-dialog.e-rtl .e-subject-container,
2849
+ .e-schedule-dialog.e-rtl .e-start-container,
2850
+ .e-schedule-dialog.e-rtl .e-description-label {
2851
+ padding-left: 8px;
2852
+ padding-right: 0;
2853
+ }
2854
+ .e-schedule-dialog.e-rtl .e-start-time-zone-container {
2855
+ padding-left: 8px;
2856
+ padding-right: 4px;
2857
+ }
2858
+ .e-schedule-dialog.e-rtl .e-location-container,
2859
+ .e-schedule-dialog.e-rtl .e-end-container {
2860
+ padding-left: 0;
2861
+ padding-right: 8px;
2862
+ }
2863
+ .e-schedule-dialog.e-rtl .e-end-time-zone-container {
2864
+ padding-left: 4px;
2865
+ padding-right: 8px;
2866
+ }
2867
+ .e-schedule-dialog.e-rtl .e-event-delete {
2868
+ float: right;
2869
+ }
2870
+
2871
+ /*! schedule event window for smaller viewports*/
2872
+ @media screen and (max-width: 320px) {
2873
+ .e-schedule-dialog.e-popup.e-popup-open {
2874
+ max-height: 350px;
2875
+ min-width: 100%;
2876
+ }
2877
+ .e-schedule-dialog .e-all-day-container {
2878
+ padding-bottom: 10px;
2879
+ }
2880
+ .e-schedule-dialog .e-all-day-time-zone-row {
2881
+ display: block;
2882
+ }
2883
+ }
2884
+ .e-ddl.e-popup .e-resource-template {
2885
+ display: -webkit-box;
2886
+ display: -ms-flexbox;
2887
+ display: flex;
2888
+ padding: 0 10px;
2889
+ text-indent: 10px;
2890
+ }
2891
+ .e-ddl.e-popup .e-resource-template .e-resource-color {
2892
+ height: 14px;
2893
+ margin-top: 10px;
2894
+ width: 14px;
2895
+ }
2896
+
2897
+ .e-schedule-dialog.e-device .e-dlg-header,
2898
+ .e-schedule-dialog.e-device .e-dlg-header * {
2899
+ width: 100%;
2900
+ }
2901
+ .e-schedule-dialog.e-device .e-dlg-header-content {
2902
+ background: var(--color-sf-content-bg-color-alt1);
2903
+ -webkit-box-shadow: none;
2904
+ box-shadow: none;
2905
+ box-shadow: none;
2906
+ margin-bottom: 0;
2907
+ }
2908
+ .e-schedule-dialog.e-device .e-title-location-row,
2909
+ .e-schedule-dialog.e-device .e-start-end-row,
2910
+ .e-schedule-dialog.e-device .e-time-zone-row,
2911
+ .e-schedule-dialog.e-device .e-start-input-container,
2912
+ .e-schedule-dialog.e-device .e-end-input-container {
2913
+ display: inline;
2914
+ }
2915
+ .e-schedule-dialog.e-device .e-time-zone-row.e-enable {
2916
+ display: inline;
2917
+ }
2918
+ .e-schedule-dialog.e-device .e-subject-container,
2919
+ .e-schedule-dialog.e-device .e-location-container,
2920
+ .e-schedule-dialog.e-device .e-start-container,
2921
+ .e-schedule-dialog.e-device .e-end-container,
2922
+ .e-schedule-dialog.e-device .e-start-time-zone-container,
2923
+ .e-schedule-dialog.e-device .e-end-time-zone-container {
2924
+ padding-left: 0;
2925
+ width: 100%;
2926
+ }
2927
+ .e-schedule-dialog.e-device .e-subject-container,
2928
+ .e-schedule-dialog.e-device .e-start-container,
2929
+ .e-schedule-dialog.e-device .e-start-time-zone-container,
2930
+ .e-schedule-dialog.e-device .e-description-label {
2931
+ padding-right: 0;
2932
+ }
2933
+ .e-schedule-dialog.e-device .e-location-container,
2934
+ .e-schedule-dialog.e-device .e-end-container,
2935
+ .e-schedule-dialog.e-device .e-end-time-zone-container,
2936
+ .e-schedule-dialog.e-device .e-start-container,
2937
+ .e-schedule-dialog.e-device .e-start-time-zone-container,
2938
+ .e-schedule-dialog.e-device .e-subject-container,
2939
+ .e-schedule-dialog.e-device .e-description-row,
2940
+ .e-schedule-dialog.e-device .e-repeat-container {
2941
+ padding-top: 20px;
2942
+ }
2943
+ .e-schedule-dialog.e-device .e-all-day-time-zone-row {
2944
+ padding-top: 20px;
2945
+ }
2946
+ .e-schedule-dialog.e-device .e-resources {
2947
+ padding-bottom: 0;
2948
+ padding-top: 20px;
2949
+ }
2950
+ .e-schedule-dialog.e-device .e-description,
2951
+ .e-schedule-dialog.e-device .e-float-input .e-description {
2952
+ height: 60px;
2953
+ resize: vertical;
2954
+ }
2955
+ .e-schedule-dialog.e-device .e-all-day-time-zone-row {
2956
+ margin-top: 0;
2957
+ padding-bottom: 0;
2958
+ }
2959
+ .e-schedule-dialog.e-device .e-repeat-parent-row {
2960
+ padding-top: 8px;
2961
+ }
2962
+ .e-schedule-dialog.e-device .e-all-day-container {
2963
+ margin-right: 20px;
2964
+ }
2965
+ .e-schedule-dialog.e-device .e-title-header {
2966
+ display: -webkit-box;
2967
+ display: -ms-flexbox;
2968
+ display: flex;
2969
+ width: 100%;
2970
+ }
2971
+ .e-schedule-dialog.e-device .e-save-icon,
2972
+ .e-schedule-dialog.e-device .e-back-icon,
2973
+ .e-schedule-dialog.e-device .e-forward-icon {
2974
+ cursor: pointer;
2975
+ line-height: normal;
2976
+ }
2977
+ .e-schedule-dialog.e-device .e-title-text {
2978
+ text-align: center;
2979
+ }
2980
+ .e-schedule-dialog.e-device .e-save-icon,
2981
+ .e-schedule-dialog.e-device .e-back-icon,
2982
+ .e-schedule-dialog.e-device .e-delete-icon {
2983
+ width: 2.5em;
2984
+ }
2985
+ .e-schedule-dialog.e-device .e-save-icon,
2986
+ .e-schedule-dialog.e-device .e-delete-icon {
2987
+ text-align: right;
2988
+ }
2989
+ .e-schedule-dialog.e-device .e-time-zone-row,
2990
+ .e-schedule-dialog.e-device .e-input-group .e-input-group-icon.e-icon-disable {
2991
+ display: none;
2992
+ }
2993
+ .e-schedule-dialog.e-device .e-repeat-container {
2994
+ display: block;
2995
+ padding-right: 35px;
2996
+ padding-left: 0;
2997
+ }
2998
+ .e-schedule-dialog.e-device .e-icon-down-arrow {
2999
+ font-size: 18px;
3000
+ }
3001
+ .e-schedule-dialog.e-device.e-rtl .e-save-icon {
3002
+ text-align: left;
3003
+ }
3004
+ .e-schedule-dialog.e-device.e-rtl .e-all-day-container {
3005
+ margin-left: 20px;
3006
+ margin-right: 0;
3007
+ }
3008
+ .e-schedule-dialog.e-device.e-rtl .e-subject-container,
3009
+ .e-schedule-dialog.e-device.e-rtl .e-start-container,
3010
+ .e-schedule-dialog.e-device.e-rtl .e-start-time-zone-container,
3011
+ .e-schedule-dialog.e-device.e-rtl .e-description-label {
3012
+ padding-left: 0;
3013
+ }
3014
+ .e-schedule-dialog.e-device.e-rtl .e-location-container,
3015
+ .e-schedule-dialog.e-device.e-rtl .e-end-container,
3016
+ .e-schedule-dialog.e-device.e-rtl .e-end-time-zone-container,
3017
+ .e-schedule-dialog.e-device.e-rtl .e-all-day-container {
3018
+ padding-right: 0;
3019
+ }
3020
+ .e-schedule-dialog.e-device.e-rtl .e-repeat-container {
3021
+ padding-left: 35px;
3022
+ padding-right: 0;
3023
+ }
3024
+ .e-schedule-dialog.e-device .e-recurrence-container {
3025
+ position: relative;
3026
+ }
3027
+ .e-schedule-dialog.e-device .e-recurrence-container.e-hide {
3028
+ display: none;
3029
+ }
3030
+ .e-schedule-dialog.e-device .e-recurrence-container .e-recurrence-edit-button {
3031
+ border: 0;
3032
+ -webkit-box-shadow: none;
3033
+ box-shadow: none;
3034
+ margin: -3px 5px;
3035
+ position: absolute;
3036
+ }
3037
+ .e-schedule-dialog.e-device .e-recurrence-container .e-recurrence-edit-button .e-recurrence-edit.e-icons {
3038
+ font-size: 12px;
3039
+ position: relative;
3040
+ top: 1px;
3041
+ }
3042
+
3043
+ /*! schedule quick popup */
3044
+ .e-quick-popup-wrapper {
3045
+ background: var(--color-sf-content-bg-color);
3046
+ border-radius: 6px;
3047
+ -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
3048
+ box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
3049
+ color: var(--color-sf-content-text-color);
3050
+ max-width: 365px;
3051
+ min-width: 320px;
3052
+ opacity: 1;
3053
+ -webkit-user-select: none;
3054
+ -moz-user-select: none;
3055
+ -ms-user-select: none;
3056
+ user-select: none;
3057
+ width: 100%;
3058
+ border: 1px solid var(--color-sf-border-light);
3059
+ }
3060
+ .e-quick-popup-wrapper .e-hidden {
3061
+ display: none;
3062
+ }
3063
+ .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper {
3064
+ position: absolute;
3065
+ right: 6px;
3066
+ top: 4px;
3067
+ padding: 2px 8px 0 0;
3068
+ }
3069
+ .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-edit,
3070
+ .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-delete,
3071
+ .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close {
3072
+ color: var(--color-sf-icon-color);
3073
+ }
3074
+ .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-edit:focus, .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-edit:hover,
3075
+ .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-delete:focus,
3076
+ .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-delete:hover,
3077
+ .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close:focus,
3078
+ .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close:hover {
3079
+ background: var(--color-sf-content-bg-color-selected);
3080
+ color: var(--color-sf-icon-color);
3081
+ }
3082
+ .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-edit .e-close-icon,
3083
+ .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-delete .e-close-icon,
3084
+ .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close .e-close-icon {
3085
+ font-size: 18px;
3086
+ }
3087
+ .e-quick-popup-wrapper .e-cell-popup .e-popup-content {
3088
+ padding: 40px 18px 12px;
3089
+ }
3090
+ .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table {
3091
+ width: 100%;
3092
+ }
3093
+ .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-schedule-form > span {
3094
+ margin: 14px 0 4px;
3095
+ }
3096
+ .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
3097
+ font-size: 22px;
3098
+ height: 40px;
3099
+ }
3100
+ .e-quick-popup-wrapper .e-event-popup .e-popup-header {
3101
+ background: var(--color-sf-content-bg-color);
3102
+ }
3103
+ .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper {
3104
+ padding: 6px 8px 0 8px;
3105
+ }
3106
+ .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit,
3107
+ .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete {
3108
+ display: none;
3109
+ }
3110
+ .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-close {
3111
+ position: relative;
3112
+ right: 2px;
3113
+ }
3114
+ .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit,
3115
+ .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete,
3116
+ .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-close {
3117
+ color: var(--color-sf-icon-color);
3118
+ }
3119
+ .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit:focus, .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit:hover,
3120
+ .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete:focus,
3121
+ .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete:hover,
3122
+ .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-close:focus,
3123
+ .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-close:hover {
3124
+ background: rgba(255, 255, 255, 0.15);
3125
+ color: var(--color-sf-primary);
3126
+ }
3127
+ .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit-icon,
3128
+ .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete-icon,
3129
+ .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-close-icon {
3130
+ font-size: 18px;
3131
+ }
3132
+ .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit:disabled:hover,
3133
+ .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete:disabled:hover {
3134
+ background: none;
3135
+ }
3136
+ .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit:disabled > .e-edit-icon,
3137
+ .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit:disabled > .e-delete-icon,
3138
+ .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete:disabled > .e-edit-icon,
3139
+ .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete:disabled > .e-delete-icon {
3140
+ opacity: 0.5;
3141
+ }
3142
+ .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-subject-wrap {
3143
+ padding: 12px 18px;
3144
+ }
3145
+ .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-subject-wrap .e-subject {
3146
+ background: var(--color-sf-content-bg-color);
3147
+ border-left: 6px solid var(--color-sf-content-bg-color);
3148
+ border-radius: 4px;
3149
+ color: var(--color-sf-content-text-color);
3150
+ cursor: default;
3151
+ font-size: 20px;
3152
+ font-weight: 500;
3153
+ line-height: 1.5;
3154
+ max-height: 87px;
3155
+ padding: 8px;
3156
+ }
3157
+ .e-quick-popup-wrapper .e-event-popup .e-popup-content {
3158
+ padding: 0 18px 12px;
3159
+ }
3160
+ .e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper,
3161
+ .e-quick-popup-wrapper .e-event-popup .e-header-icon-wrapper {
3162
+ display: -webkit-box;
3163
+ display: -ms-flexbox;
3164
+ display: flex;
3165
+ -webkit-box-pack: end;
3166
+ -ms-flex-pack: end;
3167
+ justify-content: flex-end;
3168
+ }
3169
+ .e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper .e-edit,
3170
+ .e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper .e-delete,
3171
+ .e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper .e-close,
3172
+ .e-quick-popup-wrapper .e-event-popup .e-header-icon-wrapper .e-edit,
3173
+ .e-quick-popup-wrapper .e-event-popup .e-header-icon-wrapper .e-delete,
3174
+ .e-quick-popup-wrapper .e-event-popup .e-header-icon-wrapper .e-close {
3175
+ background: transparent;
3176
+ border: 0;
3177
+ }
3178
+ .e-quick-popup-wrapper .e-cell-popup .e-date-time,
3179
+ .e-quick-popup-wrapper .e-cell-popup .e-location,
3180
+ .e-quick-popup-wrapper .e-cell-popup .e-time-zone,
3181
+ .e-quick-popup-wrapper .e-cell-popup .e-description,
3182
+ .e-quick-popup-wrapper .e-cell-popup .e-resource,
3183
+ .e-quick-popup-wrapper .e-event-popup .e-date-time,
3184
+ .e-quick-popup-wrapper .e-event-popup .e-location,
3185
+ .e-quick-popup-wrapper .e-event-popup .e-time-zone,
3186
+ .e-quick-popup-wrapper .e-event-popup .e-description,
3187
+ .e-quick-popup-wrapper .e-event-popup .e-resource {
3188
+ color: var(--color-sf-content-text-color);
3189
+ display: -webkit-box;
3190
+ display: -ms-flexbox;
3191
+ display: flex;
3192
+ padding-top: 12px;
3193
+ }
3194
+ .e-quick-popup-wrapper .e-cell-popup .e-date-time-icon,
3195
+ .e-quick-popup-wrapper .e-cell-popup .e-location-icon,
3196
+ .e-quick-popup-wrapper .e-cell-popup .e-time-zone-icon,
3197
+ .e-quick-popup-wrapper .e-cell-popup .e-description-icon,
3198
+ .e-quick-popup-wrapper .e-cell-popup .e-resource-icon,
3199
+ .e-quick-popup-wrapper .e-event-popup .e-date-time-icon,
3200
+ .e-quick-popup-wrapper .e-event-popup .e-location-icon,
3201
+ .e-quick-popup-wrapper .e-event-popup .e-time-zone-icon,
3202
+ .e-quick-popup-wrapper .e-event-popup .e-description-icon,
3203
+ .e-quick-popup-wrapper .e-event-popup .e-resource-icon {
3204
+ color: var(--color-sf-content-text-color);
3205
+ font-size: 18px;
3206
+ padding: 2px 12px 0 0;
3207
+ }
3208
+ .e-quick-popup-wrapper .e-cell-popup .e-date-time-details,
3209
+ .e-quick-popup-wrapper .e-cell-popup .e-location-details,
3210
+ .e-quick-popup-wrapper .e-cell-popup .e-time-zone-details,
3211
+ .e-quick-popup-wrapper .e-cell-popup .e-description-details,
3212
+ .e-quick-popup-wrapper .e-cell-popup .e-resource-details,
3213
+ .e-quick-popup-wrapper .e-event-popup .e-date-time-details,
3214
+ .e-quick-popup-wrapper .e-event-popup .e-location-details,
3215
+ .e-quick-popup-wrapper .e-event-popup .e-time-zone-details,
3216
+ .e-quick-popup-wrapper .e-event-popup .e-description-details,
3217
+ .e-quick-popup-wrapper .e-event-popup .e-resource-details {
3218
+ color: var(--color-sf-content-text-color);
3219
+ cursor: default;
3220
+ font-size: 14px;
3221
+ }
3222
+ .e-quick-popup-wrapper .e-popup-table td:last-child {
3223
+ padding-top: 0;
3224
+ }
3225
+ .e-quick-popup-wrapper .e-popup-footer {
3226
+ display: block;
3227
+ padding: 8px 18px 8px 18px;
3228
+ text-align: right;
3229
+ }
3230
+ .e-quick-popup-wrapper .e-popup-footer .e-event-edit {
3231
+ margin-right: 8px;
3232
+ }
3233
+ .e-quick-popup-wrapper .e-popup-footer .e-event-edit,
3234
+ .e-quick-popup-wrapper .e-popup-footer .e-event-delete {
3235
+ right: auto;
3236
+ }
3237
+ .e-quick-popup-wrapper .e-popup-footer .e-event-edit:disabled,
3238
+ .e-quick-popup-wrapper .e-popup-footer .e-event-delete:disabled {
3239
+ color: var(--color-sf-content-text-color);
3240
+ }
3241
+ .e-quick-popup-wrapper .e-popup-footer .e-event-details {
3242
+ border: none;
3243
+ margin-right: 8px;
3244
+ right: auto;
3245
+ text-transform: capitalize;
3246
+ }
3247
+ .e-quick-popup-wrapper .e-event-popup .e-popup-footer {
3248
+ display: block;
3249
+ }
3250
+ .e-quick-popup-wrapper.e-rtl {
3251
+ text-align: right;
3252
+ }
3253
+ .e-quick-popup-wrapper.e-rtl .e-cell-popup .e-header-icon-wrapper {
3254
+ left: 6px;
3255
+ right: auto;
3256
+ }
3257
+ .e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
3258
+ .e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
3259
+ .e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
3260
+ .e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
3261
+ .e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
3262
+ margin-right: 10px;
3263
+ }
3264
+ .e-quick-popup-wrapper.e-rtl .e-event-details,
3265
+ .e-quick-popup-wrapper.e-rtl .e-event-edit {
3266
+ margin-left: 8px;
3267
+ }
3268
+ .e-quick-popup-wrapper.e-rtl .e-popup-footer {
3269
+ padding: 8px 8px 8px 18px;
3270
+ text-align: left;
3271
+ }
3272
+ .e-quick-popup-wrapper.e-rtl .e-date-time-icon {
3273
+ padding: 0 0 0 10px;
3274
+ }
3275
+ .e-quick-popup-wrapper.e-device {
3276
+ bottom: 0;
3277
+ height: 100%;
3278
+ left: 0;
3279
+ margin: 0;
3280
+ max-width: 100%;
3281
+ overflow: hidden;
3282
+ padding: 0;
3283
+ position: fixed;
3284
+ right: 0;
3285
+ top: 0;
3286
+ width: 100%;
3287
+ z-index: 1004;
3288
+ }
3289
+ .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper {
3290
+ background: var(--color-sf-content-bg-color-alt1);
3291
+ }
3292
+ .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit:focus, .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit:hover,
3293
+ .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete:focus,
3294
+ .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete:hover,
3295
+ .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-close:focus,
3296
+ .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-close:hover {
3297
+ background: none;
3298
+ }
3299
+ .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-edit.e-btn.e-small.e-round,
3300
+ .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-delete.e-btn.e-small.e-round,
3301
+ .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-close.e-btn.e-small.e-round {
3302
+ height: 2.5em;
3303
+ width: 2.5em;
3304
+ }
3305
+ .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-edit,
3306
+ .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-delete {
3307
+ display: block;
3308
+ }
3309
+ .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-close {
3310
+ margin-left: 0;
3311
+ margin-right: auto;
3312
+ -webkit-box-ordinal-group: 0;
3313
+ -ms-flex-order: -1;
3314
+ order: -1;
3315
+ }
3316
+ .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-subject-wrap {
3317
+ padding: 12px 24px;
3318
+ }
3319
+ .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-content {
3320
+ padding: 12px 24px;
3321
+ }
3322
+ .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header {
3323
+ display: -webkit-box;
3324
+ display: -ms-flexbox;
3325
+ display: flex;
3326
+ padding: 15px;
3327
+ }
3328
+ .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close,
3329
+ .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit,
3330
+ .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete {
3331
+ background: var(--color-sf-content-bg-color-alt1);
3332
+ border: 0;
3333
+ color: var(--color-sf-icon-color);
3334
+ height: 35px;
3335
+ width: 35px;
3336
+ }
3337
+ .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close:focus, .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close:hover,
3338
+ .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit:focus,
3339
+ .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit:hover,
3340
+ .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete:focus,
3341
+ .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete:hover {
3342
+ background: none;
3343
+ }
3344
+ .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-subject {
3345
+ font-size: 15px;
3346
+ font-weight: 500;
3347
+ height: 35px;
3348
+ line-height: 2.25;
3349
+ padding: 2px 5px;
3350
+ width: calc(100% - 105px);
3351
+ }
3352
+ .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close-icon,
3353
+ .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit-icon,
3354
+ .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete-icon {
3355
+ font-size: 18px;
3356
+ }
3357
+ .e-quick-popup-wrapper.e-device.e-rtl .e-event-popup .e-popup-header .e-close {
3358
+ margin-left: auto;
3359
+ margin-right: 0;
3360
+ }
3361
+
3362
+ /*! schedule quick popup for smaller viewports */
3363
+ @media screen and (max-width: 320px) {
3364
+ .e-quick-popup-wrapper {
3365
+ min-width: 100%;
3366
+ }
3367
+ .e-quick-popup-wrapper .e-popup-footer {
3368
+ padding-left: 5px;
3369
+ }
3370
+ .e-quick-popup-wrapper.e-rtl .e-popup-footer {
3371
+ padding-right: 5px;
3372
+ }
3373
+ }
3374
+ .e-appointment.e-schedule-event-clone {
3375
+ background: var(--color-sf-primary);
3376
+ border-radius: 2px;
3377
+ -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
3378
+ box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
3379
+ color: var(--color-sf-primary-text-color);
3380
+ display: -webkit-box;
3381
+ display: -ms-flexbox;
3382
+ display: flex;
3383
+ height: 38px;
3384
+ width: 100px;
3385
+ z-index: 9;
3386
+ }
3387
+ .e-appointment.e-schedule-event-clone.e-drag-clone {
3388
+ cursor: move;
3389
+ }
3390
+ .e-appointment.e-schedule-event-clone .e-recurrence-icon,
3391
+ .e-appointment.e-schedule-event-clone .e-recurrence-edit-icon,
3392
+ .e-appointment.e-schedule-event-clone .e-indicator.e-left-icon,
3393
+ .e-appointment.e-schedule-event-clone .e-indicator.e-right-icon,
3394
+ .e-appointment.e-schedule-event-clone .e-event-resize.e-left-handler,
3395
+ .e-appointment.e-schedule-event-clone .e-event-resize.e-right-handler {
3396
+ display: none;
3397
+ }
3398
+ .e-appointment.e-schedule-event-clone .e-appointment-details {
3399
+ -webkit-box-flex: 1;
3400
+ -ms-flex: auto;
3401
+ flex: auto;
3402
+ overflow: hidden;
3403
+ padding: 0 4px;
3404
+ text-align: left;
3405
+ }
3406
+ .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
3407
+ -webkit-box-flex: 1;
3408
+ -ms-flex: auto;
3409
+ flex: auto;
3410
+ overflow: hidden;
3411
+ }
3412
+ .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
3413
+ font-size: 13px;
3414
+ font-weight: 500;
3415
+ line-height: 1.2;
3416
+ margin-left: auto;
3417
+ min-height: 18px;
3418
+ overflow: hidden;
3419
+ padding-top: 4px;
3420
+ text-overflow: ellipsis;
3421
+ }
3422
+ .e-appointment.e-schedule-event-clone .e-appointment-details .e-time {
3423
+ font-size: 11px;
3424
+ overflow: hidden;
3425
+ padding-top: 1px;
3426
+ text-overflow: ellipsis;
3427
+ }
3428
+ .e-appointment.e-schedule-event-clone .e-appointment-details .e-location {
3429
+ display: none;
3430
+ }
3431
+ .e-appointment.e-schedule-event-clone.e-month-event .e-appointment-details .e-subject {
3432
+ padding: 3px 2px;
3433
+ }
3434
+ .e-appointment.e-schedule-event-clone.e-month-event .e-appointment-details .e-time {
3435
+ display: none;
3436
+ }
3437
+
3438
+ .e-vertical-view .e-all-day-appointment-wrapper .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
3439
+ padding: 3px 0 1px 4px;
3440
+ }
3441
+ .e-vertical-view .e-all-day-appointment-wrapper .e-appointment.e-schedule-event-clone .e-appointment-details .e-time {
3442
+ display: none;
3443
+ }
3444
+
3445
+ @media print {
3446
+ .e-schedule .e-table-container {
3447
+ display: block;
3448
+ }
3449
+ .e-schedule .e-vertical-view .e-content-table thead {
3450
+ -webkit-column-break-inside: auto;
3451
+ -moz-column-break-inside: auto;
3452
+ break-inside: auto;
3453
+ }
3454
+ }
3455
+ .e-more-popup-wrapper {
3456
+ background: var(--color-sf-content-bg-color);
3457
+ border: 1px solid var(--color-sf-border-light);
3458
+ border-radius: 6px;
3459
+ -webkit-box-shadow: none;
3460
+ box-shadow: none;
3461
+ opacity: 1;
3462
+ padding: 8px 0;
3463
+ width: 225px;
3464
+ }
3465
+ .e-more-popup-wrapper .e-more-appointment-wrapper {
3466
+ margin: 0 4px;
3467
+ }
3468
+ .e-more-popup-wrapper .e-more-event-popup {
3469
+ height: 100%;
3470
+ position: relative;
3471
+ width: 100%;
3472
+ }
3473
+ .e-more-popup-wrapper .e-more-event-header {
3474
+ height: 35px;
3475
+ margin: 0 8px 4px 14px;
3476
+ }
3477
+ .e-more-popup-wrapper .e-more-event-content {
3478
+ color: var(--color-sf-content-text-color);
3479
+ height: calc(100% - 35px);
3480
+ max-height: 150px;
3481
+ overflow-y: auto;
3482
+ padding: 10px 10px 0;
3483
+ }
3484
+ .e-more-popup-wrapper .e-more-event-content .e-appointment-border {
3485
+ border: 0;
3486
+ -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
3487
+ box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
3488
+ }
3489
+ .e-more-popup-wrapper .e-more-event-date-header {
3490
+ height: 100%;
3491
+ width: calc(100% - 25px);
3492
+ }
3493
+ .e-more-popup-wrapper .e-more-event-date-header .e-current-date {
3494
+ color: var(--color-sf-primary);
3495
+ }
3496
+ .e-more-popup-wrapper .e-header-day {
3497
+ color: var(--color-sf-content-text-color);
3498
+ font-size: 14px;
3499
+ line-height: 1;
3500
+ padding-bottom: 2px;
3501
+ }
3502
+ .e-more-popup-wrapper .e-header-date {
3503
+ color: var(--color-sf-content-text-color);
3504
+ font-size: 16px;
3505
+ line-height: 1;
3506
+ max-width: 15%;
3507
+ }
3508
+ .e-more-popup-wrapper .e-header-date:hover {
3509
+ cursor: pointer;
3510
+ text-decoration: underline;
3511
+ }
3512
+ .e-more-popup-wrapper .e-header-date:focus {
3513
+ text-decoration: underline;
3514
+ }
3515
+ .e-more-popup-wrapper .e-more-event-close {
3516
+ background: transparent;
3517
+ border: 0;
3518
+ -webkit-box-shadow: none;
3519
+ box-shadow: none;
3520
+ color: var(--color-sf-icon-color);
3521
+ cursor: pointer;
3522
+ height: 25px;
3523
+ padding: 1px;
3524
+ position: absolute;
3525
+ right: 6px;
3526
+ width: 25px;
3527
+ }
3528
+ .e-more-popup-wrapper .e-more-event-close .e-close-icon {
3529
+ font-size: 14px;
3530
+ }
3531
+ .e-more-popup-wrapper .e-more-event-close .e-btn-icon {
3532
+ margin-top: 5px;
3533
+ }
3534
+ .e-more-popup-wrapper .e-more-event-close:focus, .e-more-popup-wrapper .e-more-event-close:hover {
3535
+ background: var(--color-sf-content-bg-color-selected);
3536
+ border-radius: 50%;
3537
+ color: var(--color-sf-icon-color);
3538
+ }
3539
+ .e-more-popup-wrapper .e-more-event-close:focus .e-close-icon, .e-more-popup-wrapper .e-more-event-close:hover .e-close-icon {
3540
+ color: var(--color-sf-content-text-color-hover);
3541
+ }
3542
+ .e-more-popup-wrapper .e-appointment {
3543
+ background: var(--color-sf-primary);
3544
+ border-radius: 2px;
3545
+ color: var(--color-sf-primary-text-color);
3546
+ display: -webkit-box;
3547
+ display: -ms-flexbox;
3548
+ display: flex;
3549
+ height: 26px;
3550
+ line-height: 20px;
3551
+ margin-bottom: 2px;
3552
+ padding: 2px 0;
3553
+ width: 100%;
3554
+ }
3555
+ .e-more-popup-wrapper .e-appointment .e-subject {
3556
+ color: var(--color-sf-primary-text-color);
3557
+ -webkit-box-flex: 1;
3558
+ -ms-flex: auto;
3559
+ flex: auto;
3560
+ font-size: 13px;
3561
+ font-weight: 500;
3562
+ overflow: hidden;
3563
+ padding: 0 2px;
3564
+ text-overflow: ellipsis;
3565
+ white-space: nowrap;
3566
+ }
3567
+ .e-more-popup-wrapper .e-appointment .e-subject.e-disable {
3568
+ display: none;
3569
+ }
3570
+ .e-more-popup-wrapper .e-appointment .e-inline-subject {
3571
+ background: transparent;
3572
+ border: 0;
3573
+ color: var(--color-sf-primary-text-color);
3574
+ font-size: 13px;
3575
+ font-weight: 500;
3576
+ line-height: 1.2;
3577
+ padding-top: 4px;
3578
+ width: 100%;
3579
+ }
3580
+ .e-more-popup-wrapper .e-appointment .e-recurrence-icon,
3581
+ .e-more-popup-wrapper .e-appointment .e-recurrence-edit-icon {
3582
+ line-height: 26px;
3583
+ padding: 0 2px;
3584
+ }
3585
+ .e-more-popup-wrapper .e-appointment.e-appointment-border, .e-more-popup-wrapper .e-appointment:focus {
3586
+ border: 0;
3587
+ -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
3588
+ box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
3589
+ }
3590
+ .e-more-popup-wrapper.e-device {
3591
+ bottom: 0;
3592
+ height: 100%;
3593
+ left: 0;
3594
+ margin: 0;
3595
+ max-width: 100%;
3596
+ overflow: hidden;
3597
+ right: 0;
3598
+ top: 0;
3599
+ width: 100%;
3600
+ z-index: 1002;
3601
+ }
3602
+ .e-more-popup-wrapper.e-device .e-more-event-content {
3603
+ max-height: unset;
3604
+ }
3605
+ .e-more-popup-wrapper.e-rtl .e-header-date {
3606
+ padding-right: 10px;
3607
+ }
3608
+ .e-more-popup-wrapper.e-rtl .e-header-day {
3609
+ padding-right: 10px;
3610
+ }
3611
+ .e-more-popup-wrapper.e-rtl .e-more-event-close {
3612
+ left: 6px;
3613
+ right: auto;
3614
+ }
3615
+
3616
+ .e-schedule {
3617
+ background: var(--color-sf-content-bg-color-alt1);
3618
+ border: 1px solid var(--color-sf-border-light);
3619
+ }
3620
+ .e-schedule .e-date-header-wrap {
3621
+ border-color: var(--color-sf-border-light);
3622
+ border-style: solid;
3623
+ border-width: 0;
3624
+ position: relative;
3625
+ }
3626
+ .e-schedule .e-header-calendar {
3627
+ background-color: var(--color-sf-flyout-bg-color);
3628
+ -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
3629
+ box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
3630
+ }
3631
+ .e-schedule .e-vertical-view .e-date-header-wrap table tbody td:first-child,
3632
+ .e-schedule .e-vertical-view .e-content-wrap table td:first-child {
3633
+ border-left-width: 0;
3634
+ }
3635
+ .e-schedule .e-vertical-view .e-date-header-wrap .e-all-day-cells {
3636
+ background: var(--color-sf-content-bg-color-alt1);
3637
+ }
3638
+ .e-schedule .e-vertical-view .e-date-header-wrap .e-all-day-cells:hover {
3639
+ background: var(--color-sf-content-bg-color-hover);
3640
+ }
3641
+ .e-schedule .e-vertical-view .e-date-header-wrap .e-all-day-cells:hover .e-more-indicator {
3642
+ color: var(--color-sf-content-text-color-hover);
3643
+ }
3644
+ .e-schedule .e-vertical-view .e-left-indent-wrap table tbody td {
3645
+ background: var(--color-sf-content-bg-color-alt1);
3646
+ border-color: var(--color-sf-border-light);
3647
+ border-style: solid;
3648
+ border-width: 0 1px 1px 0;
3649
+ color: var(--color-sf-content-text-color-alt1);
3650
+ }
3651
+ .e-schedule .e-vertical-view .e-left-indent-wrap table tbody td.e-header-cells {
3652
+ border-bottom-width: 0;
3653
+ }
3654
+ .e-schedule .e-vertical-view .e-left-indent-wrap table tbody td.e-header-cells.e-week-number {
3655
+ color: var(--color-sf-content-text-color);
3656
+ font-size: 14px;
3657
+ padding-top: 10px;
3658
+ text-align: center;
3659
+ vertical-align: top;
3660
+ }
3661
+ .e-schedule .e-vertical-view .e-left-indent-wrap table tbody td.e-resource-cells {
3662
+ border-bottom-color: transparent;
3663
+ }
3664
+ .e-schedule .e-vertical-view .e-date-header-wrap table tbody td {
3665
+ background: var(--color-sf-content-bg-color-alt1);
3666
+ border-color: var(--color-sf-border-light);
3667
+ border-style: solid;
3668
+ border-width: 0 0 1px 1px;
3669
+ color: var(--color-sf-content-text-color-alt1);
3670
+ text-align: left;
3671
+ }
3672
+ .e-schedule .e-vertical-view .e-date-header-wrap table tbody td.e-header-cells {
3673
+ border-bottom-width: 0;
3674
+ }
3675
+ .e-schedule .e-vertical-view .e-time-cells-wrap table td {
3676
+ background: var(--color-sf-content-bg-color-alt1);
3677
+ border-color: var(--color-sf-border-light);
3678
+ border-style: solid;
3679
+ border-width: 0 1px 1px 0;
3680
+ color: var(--color-sf-content-text-color);
3681
+ }
3682
+ .e-schedule .e-vertical-view .e-time-cells-wrap table td {
3683
+ border-bottom-color: transparent;
3684
+ }
3685
+ .e-schedule .e-vertical-view .e-time-cells-wrap .e-time-cells {
3686
+ border-bottom-color: var(--color-sf-border-light);
3687
+ }
3688
+ .e-schedule .e-vertical-view .e-header-cells {
3689
+ background: var(--color-sf-content-bg-color-alt1);
3690
+ }
3691
+ .e-schedule .e-vertical-view .e-header-cells.e-current-day {
3692
+ color: var(--color-sf-primary);
3693
+ font-weight: 600;
3694
+ }
3695
+ .e-schedule .e-vertical-view .e-work-cells {
3696
+ background: var(--color-sf-holiday-bg-color);
3697
+ border-color: var(--color-sf-border-light);
3698
+ border-style: solid;
3699
+ border-width: 0 0 1px 1px;
3700
+ padding: 0;
3701
+ }
3702
+ .e-schedule .e-vertical-view .e-work-cells:hover {
3703
+ background: var(--color-sf-content-bg-color-hover);
3704
+ color: var(--color-sf-content-text-color-hover);
3705
+ }
3706
+ .e-schedule .e-vertical-view .e-alternate-cells {
3707
+ border-bottom-style: dotted;
3708
+ }
3709
+ .e-schedule .e-vertical-view .e-work-hours {
3710
+ background: var(--color-sf-content-bg-color-alt1);
3711
+ }
3712
+ .e-schedule .e-vertical-view .e-all-day-cells {
3713
+ background: var(--color-sf-content-bg-color-alt1);
3714
+ }
3715
+ .e-schedule .e-vertical-view .e-all-day-cells.e-current-day {
3716
+ color: var(--color-sf-primary);
3717
+ }
3718
+ .e-schedule .e-vertical-view .e-all-day-cells.e-selected-cell {
3719
+ background: var(--color-sf-content-bg-color-selected);
3720
+ color: var(--color-sf-content-text-color-hover);
3721
+ }
3722
+ .e-schedule .e-vertical-view .e-all-day-cells.e-selected-cell .e-more-indicator {
3723
+ color: var(--color-sf-content-text-color-hover);
3724
+ }
3725
+ .e-schedule .e-vertical-view .e-all-day-cells.e-selected-cell:hover {
3726
+ background: var(--color-sf-content-bg-color-selected);
3727
+ color: var(--color-sf-content-text-color-hover);
3728
+ }
3729
+ .e-schedule .e-vertical-view .e-all-day-cells.e-selected-cell:focus {
3730
+ background: var(--color-sf-content-bg-color-focus);
3731
+ }
3732
+ .e-schedule .e-vertical-view .e-all-day-cells.e-selected-cell:focus-visible {
3733
+ background: var(--color-sf-content-bg-color);
3734
+ -webkit-box-shadow: inset 0 0 0 1px var(--color-sf-shadow-color), inset 0 0 0 2px var(--color-sf-shadow-color1);
3735
+ box-shadow: inset 0 0 0 1px var(--color-sf-shadow-color), inset 0 0 0 2px var(--color-sf-shadow-color1);
3736
+ }
3737
+ .e-schedule .e-vertical-view .e-selected-cell {
3738
+ background: var(--color-sf-content-bg-color-selected);
3739
+ color: var(--color-sf-content-text-color-hover);
3740
+ }
3741
+ .e-schedule .e-vertical-view .e-selected-cell:hover {
3742
+ background: var(--color-sf-content-bg-color-selected);
3743
+ color: var(--color-sf-content-text-color-hover);
3744
+ }
3745
+ .e-schedule .e-vertical-view .e-selected-cell:focus {
3746
+ background: var(--color-sf-content-bg-color-focus);
3747
+ }
3748
+ .e-schedule .e-vertical-view .e-selected-cell:focus-visible {
3749
+ background: var(--color-sf-content-bg-color);
3750
+ -webkit-box-shadow: inset 0 0 0 1px var(--color-sf-shadow-color), inset 0 0 0 2px var(--color-sf-shadow-color1);
3751
+ box-shadow: inset 0 0 0 1px var(--color-sf-shadow-color), inset 0 0 0 2px var(--color-sf-shadow-color1);
3752
+ }
3753
+ .e-schedule .e-vertical-view .e-clone-time-indicator,
3754
+ .e-schedule .e-vertical-view .e-current-time {
3755
+ color: var(--color-sf-primary);
3756
+ }
3757
+ .e-schedule .e-vertical-view .e-current-timeline {
3758
+ border-top: 1px solid var(--color-sf-primary);
3759
+ }
3760
+ .e-schedule .e-vertical-view .e-previous-timeline {
3761
+ border-top: 1px dotted var(--color-sf-primary);
3762
+ }
3763
+ .e-schedule .e-vertical-view.e-by-date .e-date-header-wrap table tbody td.e-header-cells {
3764
+ border-bottom-width: 1px;
3765
+ }
3766
+ .e-schedule .e-month-view .e-date-header-wrap table td:first-child,
3767
+ .e-schedule .e-month-view .e-content-wrap table td:first-child {
3768
+ border-left-width: 0;
3769
+ }
3770
+ .e-schedule .e-month-view .e-date-header-wrap table td,
3771
+ .e-schedule .e-month-agenda-view .e-date-header-wrap table td {
3772
+ background: var(--color-sf-content-bg-color-alt1);
3773
+ border-color: var(--color-sf-border-light);
3774
+ border-style: solid;
3775
+ border-width: 0 0 1px 1px;
3776
+ color: var(--color-sf-content-text-color-alt1);
3777
+ font-size: 12px;
3778
+ text-align: center;
3779
+ text-transform: uppercase;
3780
+ }
3781
+ .e-schedule .e-month-view .e-date-header-wrap table td.e-current-day,
3782
+ .e-schedule .e-month-agenda-view .e-date-header-wrap table td.e-current-day {
3783
+ color: var(--color-sf-primary);
3784
+ font-weight: 600;
3785
+ }
3786
+ .e-schedule .e-month-view .e-work-cells,
3787
+ .e-schedule .e-month-agenda-view .e-work-cells {
3788
+ background: var(--color-sf-holiday-bg-color);
3789
+ border-color: var(--color-sf-border-light);
3790
+ border-style: solid;
3791
+ border-width: 0 0 1px 1px;
3792
+ color: var(--color-sf-content-text-color);
3793
+ padding: 0;
3794
+ }
3795
+ .e-schedule .e-month-view .e-work-cells:hover,
3796
+ .e-schedule .e-month-agenda-view .e-work-cells:hover {
3797
+ background: var(--color-sf-content-bg-color-hover);
3798
+ color: var(--color-sf-content-text-color-hover);
3799
+ }
3800
+ .e-schedule .e-month-view .e-work-cells:hover .e-more-indicator,
3801
+ .e-schedule .e-month-agenda-view .e-work-cells:hover .e-more-indicator {
3802
+ color: var(--color-sf-content-text-color-hover);
3803
+ }
3804
+ .e-schedule .e-month-view .e-work-days,
3805
+ .e-schedule .e-month-agenda-view .e-work-days {
3806
+ background: var(--color-sf-content-bg-color-alt1);
3807
+ }
3808
+ .e-schedule .e-month-view .e-other-month,
3809
+ .e-schedule .e-month-agenda-view .e-other-month {
3810
+ color: var(--color-sf-content-text-color);
3811
+ }
3812
+ .e-schedule .e-month-view .e-current-date .e-date-header,
3813
+ .e-schedule .e-month-agenda-view .e-current-date .e-date-header {
3814
+ background: var(--color-sf-primary);
3815
+ border-radius: 50%;
3816
+ color: var(--color-sf-primary-text-color);
3817
+ min-width: 20px;
3818
+ padding: 0 4px;
3819
+ width: -webkit-fit-content;
3820
+ width: -moz-fit-content;
3821
+ width: fit-content;
3822
+ }
3823
+ .e-schedule .e-month-view .e-selected-cell,
3824
+ .e-schedule .e-month-agenda-view .e-selected-cell {
3825
+ background: var(--color-sf-content-bg-color-selected);
3826
+ color: var(--color-sf-content-text-color-selected);
3827
+ }
3828
+ .e-schedule .e-month-view .e-selected-cell .e-date-header,
3829
+ .e-schedule .e-month-agenda-view .e-selected-cell .e-date-header {
3830
+ color: none;
3831
+ }
3832
+ .e-schedule .e-month-view .e-selected-cell .e-more-indicator,
3833
+ .e-schedule .e-month-agenda-view .e-selected-cell .e-more-indicator {
3834
+ color: var(--color-sf-content-text-color-selected);
3835
+ }
3836
+ .e-schedule .e-month-view .e-selected-cell:hover,
3837
+ .e-schedule .e-month-agenda-view .e-selected-cell:hover {
3838
+ background: var(--color-sf-content-bg-color-selected);
3839
+ }
3840
+ .e-schedule .e-month-view .e-selected-cell:focus,
3841
+ .e-schedule .e-month-agenda-view .e-selected-cell:focus {
3842
+ background: var(--color-sf-content-bg-color-focus);
3843
+ }
3844
+ .e-schedule .e-month-view .e-selected-cell:focus-visible,
3845
+ .e-schedule .e-month-agenda-view .e-selected-cell:focus-visible {
3846
+ background: var(--color-sf-content-bg-color);
3847
+ -webkit-box-shadow: inset 0 0 0 1px var(--color-sf-shadow-color), inset 0 0 0 2px var(--color-sf-shadow-color1);
3848
+ box-shadow: inset 0 0 0 1px var(--color-sf-shadow-color), inset 0 0 0 2px var(--color-sf-shadow-color1);
3849
+ }
3850
+ .e-schedule .e-month-agenda-view .e-content-wrap .e-table-container {
3851
+ overflow: auto;
3852
+ }
3853
+ .e-schedule .e-month-agenda-view .e-date-header-wrap table td {
3854
+ border-width: 0 0 1px 0;
3855
+ text-align: center;
3856
+ }
3857
+ .e-schedule .e-month-agenda-view .e-work-cells {
3858
+ border-width: 0;
3859
+ }
3860
+ .e-schedule .e-month-agenda-view .e-current-date .e-date-header {
3861
+ min-width: 24px;
3862
+ }
3863
+ .e-schedule .e-timeline-view .e-date-header-wrap table td:first-child,
3864
+ .e-schedule .e-timeline-view .e-content-wrap table td:first-child,
3865
+ .e-schedule .e-timeline-month-view .e-date-header-wrap table td:first-child,
3866
+ .e-schedule .e-timeline-month-view .e-content-wrap table td:first-child {
3867
+ border-left-width: 0;
3868
+ }
3869
+ .e-schedule .e-timeline-view .e-content-wrap table tr:last-child td,
3870
+ .e-schedule .e-timeline-month-view .e-content-wrap table tr:last-child td {
3871
+ border-bottom-width: 0;
3872
+ }
3873
+ .e-schedule .e-timeline-view .e-date-header-wrap table td,
3874
+ .e-schedule .e-timeline-month-view .e-date-header-wrap table td {
3875
+ background: var(--color-sf-content-bg-color-alt1);
3876
+ border-color: var(--color-sf-border-light);
3877
+ border-style: solid;
3878
+ border-width: 0 0 1px 1px;
3879
+ color: var(--color-sf-content-text-color-alt1);
3880
+ }
3881
+ .e-schedule .e-timeline-view .e-date-header-wrap table td.e-current-day,
3882
+ .e-schedule .e-timeline-month-view .e-date-header-wrap table td.e-current-day {
3883
+ color: var(--color-sf-primary);
3884
+ font-weight: 600;
3885
+ }
3886
+ .e-schedule .e-timeline-view .e-work-cells,
3887
+ .e-schedule .e-timeline-month-view .e-work-cells {
3888
+ background: var(--color-sf-holiday-bg-color);
3889
+ border-color: var(--color-sf-border-light);
3890
+ border-style: solid;
3891
+ border-width: 0 0 1px 1px;
3892
+ color: var(--color-sf-content-text-color);
3893
+ padding: 0;
3894
+ }
3895
+ .e-schedule .e-timeline-view .e-work-cells:hover:not(.e-resource-group-cells),
3896
+ .e-schedule .e-timeline-month-view .e-work-cells:hover:not(.e-resource-group-cells) {
3897
+ background: var(--color-sf-content-bg-color-hover);
3898
+ color: var(--color-sf-content-text-color-hover);
3899
+ }
3900
+ .e-schedule .e-timeline-view.e-virtual-mask .e-work-cells:hover,
3901
+ .e-schedule .e-timeline-month-view.e-virtual-mask .e-work-cells:hover {
3902
+ background: var(--color-sf-content-bg-color-alt2);
3903
+ }
3904
+ .e-schedule .e-timeline-view .e-work-days,
3905
+ .e-schedule .e-timeline-month-view .e-work-days {
3906
+ background: var(--color-sf-content-bg-color-alt1);
3907
+ }
3908
+ .e-schedule .e-timeline-view .e-resource-group-cells,
3909
+ .e-schedule .e-timeline-month-view .e-resource-group-cells {
3910
+ background: var(--color-sf-holiday-bg-color);
3911
+ }
3912
+ .e-schedule .e-timeline-view .e-selected-cell,
3913
+ .e-schedule .e-timeline-month-view .e-selected-cell {
3914
+ background: var(--color-sf-content-bg-color-selected);
3915
+ color: var(--color-sf-content-text-color-selected);
3916
+ }
3917
+ .e-schedule .e-timeline-view .e-selected-cell:hover:not(.e-resource-group-cells),
3918
+ .e-schedule .e-timeline-month-view .e-selected-cell:hover:not(.e-resource-group-cells) {
3919
+ background: var(--color-sf-content-bg-color-selected);
3920
+ }
3921
+ .e-schedule .e-timeline-view .e-work-hours {
3922
+ background: var(--color-sf-content-bg-color-alt1);
3923
+ }
3924
+ .e-schedule .e-timeline-view .e-resource-group-cells {
3925
+ background: var(--color-sf-holiday-bg-color);
3926
+ }
3927
+ .e-schedule .e-timeline-view .e-selected-cell {
3928
+ background: var(--color-sf-content-bg-color-selected);
3929
+ color: var(--color-sf-content-text-color-hover);
3930
+ }
3931
+ .e-schedule .e-timeline-view .e-selected-cell:hover {
3932
+ background: var(--color-sf-content-bg-color-selected);
3933
+ }
3934
+ .e-schedule .e-timeline-view .e-selected-cell:focus {
3935
+ background: var(--color-sf-content-bg-color-focus);
3936
+ }
3937
+ .e-schedule .e-timeline-view .e-selected-cell:focus-visible {
3938
+ background: var(--color-sf-content-bg-color);
3939
+ -webkit-box-shadow: inset 0 0 0 1px var(--color-sf-shadow-color), inset 0 0 0 2px var(--color-sf-shadow-color1);
3940
+ box-shadow: inset 0 0 0 1px var(--color-sf-shadow-color), inset 0 0 0 2px var(--color-sf-shadow-color1);
3941
+ }
3942
+ .e-schedule .e-timeline-view .e-alternate-cells {
3943
+ border-left-style: dotted;
3944
+ }
3945
+ .e-schedule .e-timeline-view .e-header-row .e-time-cells {
3946
+ border-left-width: 0;
3947
+ }
3948
+ .e-schedule .e-timeline-view .e-clone-time-indicator,
3949
+ .e-schedule .e-timeline-view .e-current-time {
3950
+ color: var(--color-sf-primary);
3951
+ font-size: 10px;
3952
+ }
3953
+ .e-schedule .e-timeline-view .e-current-timeline {
3954
+ border-left: 1px solid var(--color-sf-primary);
3955
+ }
3956
+ .e-schedule .e-timeline-year-view .e-work-cells {
3957
+ background: var(--color-sf-holiday-bg-color);
3958
+ border-color: var(--color-sf-border-light);
3959
+ border-style: solid;
3960
+ border-width: 0 1px 1px 0;
3961
+ color: var(--color-sf-content-text-color);
3962
+ padding: 0;
3963
+ }
3964
+ .e-schedule .e-timeline-year-view .e-work-cells:hover:not(.e-other-month) {
3965
+ background: var(--color-sf-content-bg-color-hover);
3966
+ color: var(--color-sf-content-text-color-hover);
3967
+ }
3968
+ .e-schedule .e-timeline-year-view .e-work-cells.e-work-days {
3969
+ background: var(--color-sf-content-bg-color-alt1);
3970
+ }
3971
+ .e-schedule .e-timeline-year-view .e-work-cells.e-other-month {
3972
+ color: var(--color-sf-content-text-color);
3973
+ }
3974
+ .e-schedule .e-timeline-year-view .e-work-cells.e-current-day .e-date-header {
3975
+ background: var(--color-sf-primary);
3976
+ border-radius: 50%;
3977
+ color: var(--color-sf-primary-text-color);
3978
+ margin: 2px;
3979
+ width: 20px;
3980
+ }
3981
+ .e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell {
3982
+ background: var(--color-sf-content-bg-color-selected);
3983
+ color: var(--color-sf-content-text-color-selected);
3984
+ }
3985
+ .e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-date-header {
3986
+ color: var(--color-sf-content-text-color-selected);
3987
+ }
3988
+ .e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-more-indicator {
3989
+ color: var(--color-sf-content-text-color-selected);
3990
+ }
3991
+ .e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell:hover {
3992
+ background: var(--color-sf-content-bg-color-selected);
3993
+ }
3994
+ .e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell:focus {
3995
+ background: var(--color-sf-content-bg-color-focus);
3996
+ }
3997
+ .e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell:focus-visible {
3998
+ background: var(--color-sf-content-bg-color);
3999
+ -webkit-box-shadow: inset 0 0 0 1px var(--color-sf-shadow-color), inset 0 0 0 2px var(--color-sf-shadow-color1);
4000
+ box-shadow: inset 0 0 0 1px var(--color-sf-shadow-color), inset 0 0 0 2px var(--color-sf-shadow-color1);
4001
+ }
4002
+ .e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates {
4003
+ background: var(--color-sf-content-bg-color-alt2);
4004
+ }
4005
+ .e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header {
4006
+ cursor: default;
4007
+ opacity: 0.35;
4008
+ }
4009
+ .e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header:hover {
4010
+ text-decoration: none;
4011
+ }
4012
+ .e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates:hover {
4013
+ background: var(--color-sf-content-bg-color-alt2);
4014
+ }
4015
+ .e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
4016
+ background: var(--color-sf-content-bg-color-alt2);
4017
+ -webkit-box-shadow: inset 0 0 0 8px var(--color-sf-holiday-bg-color);
4018
+ box-shadow: inset 0 0 0 8px var(--color-sf-holiday-bg-color);
4019
+ }
4020
+ .e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
4021
+ background: var(--color-sf-content-bg-color-alt2);
4022
+ }
4023
+ .e-schedule.e-rtl .e-vertical-view .e-date-header-wrap table tbody td:first-child,
4024
+ .e-schedule.e-rtl .e-vertical-view .e-content-wrap table td:first-child {
4025
+ border-right-width: 0;
4026
+ }
4027
+ .e-schedule.e-rtl .e-vertical-view .e-date-header-wrap table tbody td {
4028
+ text-align: right;
4029
+ }
4030
+ .e-schedule.e-rtl .e-vertical-view .e-date-header-wrap table tbody td,
4031
+ .e-schedule.e-rtl .e-vertical-view .e-work-cells {
4032
+ border-width: 0 1px 1px 0;
4033
+ }
4034
+ .e-schedule.e-rtl .e-vertical-view .e-left-indent-wrap .e-header-cells,
4035
+ .e-schedule.e-rtl .e-vertical-view .e-date-header-wrap .e-header-cells {
4036
+ border-bottom-width: 0;
4037
+ }
4038
+ .e-schedule.e-rtl .e-vertical-view .e-left-indent-wrap table tbody td,
4039
+ .e-schedule.e-rtl .e-vertical-view .e-time-cells-wrap table tbody td {
4040
+ border-width: 0 0 1px 1px;
4041
+ }
4042
+ .e-schedule.e-rtl .e-month-view .e-date-header-wrap table td:first-child,
4043
+ .e-schedule.e-rtl .e-month-view .e-content-wrap table td:first-child {
4044
+ border-right-width: 0;
4045
+ }
4046
+ .e-schedule.e-rtl .e-month-view .e-date-header-wrap table td {
4047
+ text-align: right;
4048
+ border-width: 0 1px 1px 0;
4049
+ }
4050
+ .e-schedule.e-rtl .e-month-view .e-work-cells,
4051
+ .e-schedule.e-rtl .e-month-agenda-view .e-work-cells {
4052
+ border-width: 0 1px 1px 0;
4053
+ }
4054
+ .e-schedule.e-rtl .e-month-agenda-view .e-work-cells {
4055
+ border-width: 0;
4056
+ }
4057
+ .e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table td:first-child,
4058
+ .e-schedule.e-rtl .e-timeline-view .e-content-wrap table td:first-child,
4059
+ .e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table td:first-child,
4060
+ .e-schedule.e-rtl .e-timeline-month-view .e-content-wrap table td:first-child {
4061
+ border-right-width: 0;
4062
+ }
4063
+ .e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table td:last-child,
4064
+ .e-schedule.e-rtl .e-timeline-view .e-content-wrap table td:last-child,
4065
+ .e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table td:last-child,
4066
+ .e-schedule.e-rtl .e-timeline-month-view .e-content-wrap table td:last-child {
4067
+ border-left-width: 0;
4068
+ }
4069
+ .e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table td,
4070
+ .e-schedule.e-rtl .e-timeline-view .e-content-wrap table td,
4071
+ .e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table td,
4072
+ .e-schedule.e-rtl .e-timeline-month-view .e-content-wrap table td {
4073
+ border-width: 0 1px 1px 0;
4074
+ }
4075
+ .e-schedule.e-rtl .e-timeline-view .e-alternate-cells {
4076
+ border-right-style: dotted;
4077
+ }
4078
+ .e-schedule.e-rtl .e-timeline-view .e-header-row .e-time-cells {
4079
+ border-right-width: 0;
4080
+ }
4081
+
4082
+ .e-tooltip-wrap.e-schedule-error {
4083
+ background: var(--color-sf-danger-light);
4084
+ border-color: var(--color-sf-danger-light);
4085
+ z-index: 1000;
4086
+ }
4087
+ .e-tooltip-wrap.e-schedule-error .e-arrow-tip.e-tip-top {
4088
+ left: 44%;
4089
+ }
4090
+ .e-tooltip-wrap.e-schedule-error .e-arrow-tip-inner.e-tip-top,
4091
+ .e-tooltip-wrap.e-schedule-error .e-arrow-tip-outer.e-tip-top {
4092
+ border-bottom: 8px solid var(--color-sf-danger-light);
4093
+ color: var(--color-sf-danger-light);
4094
+ }
4095
+ .e-tooltip-wrap.e-schedule-error .e-arrow-tip-outer.e-tip-bottom,
4096
+ .e-tooltip-wrap.e-schedule-error .e-arrow-tip-inner.e-tip-bottom {
4097
+ border-top: 8px solid var(--color-sf-danger-light);
4098
+ color: var(--color-sf-danger-light);
4099
+ }
4100
+ .e-tooltip-wrap.e-schedule-error .e-tip-content {
4101
+ padding: 3px 6px;
4102
+ }
4103
+ .e-tooltip-wrap.e-schedule-error .e-tip-content,
4104
+ .e-tooltip-wrap.e-schedule-error .e-tip-content label {
4105
+ color: var(--color-sf-danger-bg-color);
4106
+ }
4107
+
4108
+ .e-recurrenceeditor .e-editor {
4109
+ display: -webkit-box;
4110
+ display: -ms-flexbox;
4111
+ display: flex;
4112
+ -webkit-box-orient: horizontal;
4113
+ -webkit-box-direction: normal;
4114
+ -ms-flex-flow: row wrap;
4115
+ flex-flow: row wrap;
4116
+ margin: 0 auto;
4117
+ max-width: 1240px;
4118
+ }
4119
+ .e-recurrenceeditor .e-recurrence-table {
4120
+ table-layout: fixed;
4121
+ width: 100%;
4122
+ }
4123
+ .e-recurrenceeditor .e-recurrence-table.e-repeat-content-wrapper td:last-child {
4124
+ width: 27%;
4125
+ }
4126
+ .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
4127
+ width: 24%;
4128
+ }
4129
+ .e-recurrenceeditor .e-recurrence-table .e-repeat-content {
4130
+ display: inline-block;
4131
+ font-weight: normal;
4132
+ padding: 18px 0 0 8px;
4133
+ }
4134
+ .e-recurrenceeditor .e-recurrence-table .e-input-wrapper {
4135
+ float: none;
4136
+ width: 100%;
4137
+ }
4138
+ .e-recurrenceeditor .e-recurrence-table .e-week-position {
4139
+ min-width: 94px;
4140
+ position: relative;
4141
+ right: 20px;
4142
+ }
4143
+ .e-recurrenceeditor .e-recurrence-table .e-day-position {
4144
+ min-width: 120px;
4145
+ }
4146
+ .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
4147
+ padding-left: 10px;
4148
+ }
4149
+ .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
4150
+ padding: 0 8px 16px 0;
4151
+ }
4152
+ .e-recurrenceeditor .e-form-left {
4153
+ padding: 0 8px 16px 0;
4154
+ }
4155
+ .e-recurrenceeditor .e-form-right,
4156
+ .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
4157
+ padding: 0 0 10px;
4158
+ }
4159
+ .e-recurrenceeditor .e-input-wrapper {
4160
+ float: left;
4161
+ width: 50%;
4162
+ }
4163
+ .e-recurrenceeditor .e-input-wrapper div {
4164
+ margin-bottom: 2.5%;
4165
+ }
4166
+ .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
4167
+ .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
4168
+ padding-right: 0;
4169
+ margin-top: 24px;
4170
+ }
4171
+ .e-recurrenceeditor.e-rtl .e-end-on > div,
4172
+ .e-recurrenceeditor.e-rtl .e-month-expander > div > div {
4173
+ float: right;
4174
+ }
4175
+ .e-recurrenceeditor.e-rtl .e-form-left,
4176
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
4177
+ padding: 0 0 10px 8px;
4178
+ }
4179
+ .e-recurrenceeditor.e-rtl .e-form-right,
4180
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
4181
+ padding: 0 8px 10px 0;
4182
+ }
4183
+ .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
4184
+ position: relative;
4185
+ right: 10px;
4186
+ }
4187
+ .e-recurrenceeditor.e-rtl .e-week-position {
4188
+ left: 20px;
4189
+ right: 0;
4190
+ }
4191
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
4192
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
4193
+ padding-right: 0;
4194
+ }
4195
+ .e-recurrenceeditor.e-rtl .e-end-on-label {
4196
+ margin-bottom: 5px;
4197
+ }
4198
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
4199
+ padding: 0 0 0 8px;
4200
+ }
4201
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
4202
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
4203
+ padding: 0 8px 0 0;
4204
+ }
4205
+ .e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
4206
+ width: 30px;
4207
+ }
4208
+ .e-recurrenceeditor .e-days .e-week-expander-label {
4209
+ font-size: 12px;
4210
+ font-weight: 600;
4211
+ margin-bottom: 8px;
4212
+ }
4213
+ .e-recurrenceeditor .e-days button {
4214
+ border-radius: 50%;
4215
+ -webkit-box-orient: horizontal;
4216
+ -webkit-box-direction: normal;
4217
+ -ms-flex-flow: row wrap;
4218
+ flex-flow: row wrap;
4219
+ height: 35px;
4220
+ margin: 0 8px 10px;
4221
+ width: 35px;
4222
+ }
4223
+ .e-recurrenceeditor .e-hide-recurrence-element {
4224
+ display: none;
4225
+ }
4226
+ .e-recurrenceeditor .e-half-space {
4227
+ width: 20%;
4228
+ }
4229
+ .e-recurrenceeditor .e-year-expander {
4230
+ margin-bottom: 11px;
4231
+ }
4232
+ .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper {
4233
+ padding-bottom: 11px;
4234
+ }
4235
+ .e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper {
4236
+ padding-top: 3px;
4237
+ }
4238
+ .e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
4239
+ display: none;
4240
+ }
4241
+ .e-recurrenceeditor .e-input-wrapper-side {
4242
+ float: left;
4243
+ padding: 16px 20px 0;
4244
+ width: 50%;
4245
+ }
4246
+ .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
4247
+ padding-right: 16px;
4248
+ }
4249
+ .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-input-wrapper {
4250
+ margin: 0;
4251
+ }
4252
+ .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
4253
+ font-size: 12px;
4254
+ font-weight: 600;
4255
+ margin-bottom: 6px;
4256
+ padding-right: 16px;
4257
+ }
4258
+ .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
4259
+ padding-bottom: 6px;
4260
+ }
4261
+ .e-recurrenceeditor .e-input-wrapper-side .e-non-week .e-form-left {
4262
+ padding-bottom: 12px;
4263
+ }
4264
+ .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
4265
+ margin-bottom: 11px;
4266
+ }
4267
+
4268
+ .e-device .e-recurrenceeditor .e-recurrence-table.e-repeat-content-wrapper td:last-child {
4269
+ width: 25%;
4270
+ }
4271
+ .e-device .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
4272
+ width: 20%;
4273
+ }
4274
+ .e-device .e-recurrenceeditor .e-week-expander-label {
4275
+ margin-bottom: 6px;
4276
+ }
4277
+ .e-device .e-recurrenceeditor .e-month-expander-label {
4278
+ font-size: 12px;
4279
+ margin-bottom: 5px;
4280
+ }
4281
+ .e-device .e-recurrenceeditor .e-footer-content {
4282
+ padding: 12px;
4283
+ }
4284
+ .e-device .e-recurrenceeditor .e-form-left,
4285
+ .e-device .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
4286
+ padding: 0 3px 10px 0;
4287
+ }
4288
+ .e-device .e-recurrenceeditor .e-form-right,
4289
+ .e-device .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
4290
+ padding: 0 0 10px 3px;
4291
+ }
4292
+ .e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
4293
+ .e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
4294
+ padding: 0 0 0 10px;
4295
+ }
4296
+ .e-device .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
4297
+ padding-right: 10px;
4298
+ }
4299
+ .e-device .e-recurrenceeditor.e-end-on {
4300
+ padding-right: 0;
4301
+ }
4302
+ .e-device .e-recurrenceeditor.e-end-on .e-end-on-label {
4303
+ float: none;
4304
+ font-size: 12px;
4305
+ font-weight: 600;
4306
+ margin-bottom: 7px;
4307
+ }
4308
+ .e-device .e-recurrenceeditor.e-end-on .e-end-on-left {
4309
+ padding-right: 0;
4310
+ }
4311
+ .e-device .e-recurrenceeditor .e-recurrence-table .e-monthday-element,
4312
+ .e-device .e-recurrenceeditor .e-recurrence-table .e-day-position {
4313
+ padding-left: 20px;
4314
+ }
4315
+ .e-device .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
4316
+ margin-left: 20px;
4317
+ }
4318
+ .e-device .e-recurrenceeditor .e-week-position {
4319
+ right: 0;
4320
+ padding-right: 10px;
4321
+ }
4322
+ .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
4323
+ padding-right: 0;
4324
+ }
4325
+ .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
4326
+ .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
4327
+ padding: 0 10px 0 0;
4328
+ }
4329
+ .e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
4330
+ padding: 0 20px 0 0;
4331
+ }
4332
+ .e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
4333
+ padding: 0 50px 0 0;
4334
+ }
4335
+ .e-device .e-recurrenceeditor.e-rtl .e-week-position {
4336
+ left: 0;
4337
+ }
4338
+ .e-device.e-recurrence-dialog .e-dlg-header-content {
4339
+ background: none;
4340
+ -webkit-box-shadow: none;
4341
+ box-shadow: none;
4342
+ padding-bottom: 10px;
4343
+ }
4344
+ .e-device.e-recurrence-dialog .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
4345
+ margin-bottom: 7px;
4346
+ }
4347
+ .e-device.e-recurrence-dialog .e-footer-content {
4348
+ padding: 16px 8px;
4349
+ }
4350
+
4351
+ @media (max-width: 1024px) {
4352
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on {
4353
+ width: 100%;
4354
+ }
4355
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
4356
+ width: 65%;
4357
+ }
4358
+ }
4359
+ @media (max-width: 580px) {
4360
+ .e-recurrenceeditor {
4361
+ margin-left: auto;
4362
+ margin-right: auto;
4363
+ width: 100%;
4364
+ }
4365
+ .e-recurrenceeditor .e-editor {
4366
+ -webkit-box-orient: vertical;
4367
+ -webkit-box-direction: normal;
4368
+ -ms-flex-direction: column;
4369
+ flex-direction: column;
4370
+ }
4371
+ .e-recurrenceeditor .e-editor > .e-input-wrapper.e-form-left {
4372
+ margin-top: 0;
4373
+ }
4374
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
4375
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
4376
+ margin-bottom: 6px;
4377
+ }
4378
+ .e-recurrenceeditor .e-editor > div {
4379
+ margin-top: 20px;
4380
+ }
4381
+ .e-recurrenceeditor .e-editor > .e-input-wrapper {
4382
+ width: 100%;
4383
+ }
4384
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on {
4385
+ width: 100%;
4386
+ }
4387
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-input-wrapper {
4388
+ width: 50%;
4389
+ }
4390
+ .e-recurrenceeditor .e-editor .e-form-left,
4391
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
4392
+ padding: 0 0 10px;
4393
+ }
4394
+ .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
4395
+ .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
4396
+ padding: 0 0 0 10px;
4397
+ }
4398
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-left {
4399
+ padding-right: 10px;
4400
+ }
4401
+ .e-recurrenceeditor .e-editor .e-form-right,
4402
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
4403
+ padding-left: 0;
4404
+ }
4405
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
4406
+ width: 100%;
4407
+ }
4408
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
4409
+ width: 65%;
4410
+ }
4411
+ .e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
4412
+ padding-left: 50px;
4413
+ }
4414
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
4415
+ padding-right: 0;
4416
+ }
4417
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
4418
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
4419
+ padding: 0 10px 0 0;
4420
+ }
4421
+ }
4422
+ /*! Recurrence-Editor component theme */