@syncfusion/ej2-schedule 26.1.39 → 26.1.41-16103

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 (298) hide show
  1. package/.eslintrc.json +243 -260
  2. package/README.md +82 -82
  3. package/dist/ej2-schedule.umd.min.js +1 -10
  4. package/dist/ej2-schedule.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-schedule.es2015.js +605 -249
  6. package/dist/es6/ej2-schedule.es2015.js.map +1 -1
  7. package/dist/es6/ej2-schedule.es5.js +1072 -709
  8. package/dist/es6/ej2-schedule.es5.js.map +1 -1
  9. package/helpers/e2e/index.js +3 -3
  10. package/helpers/e2e/recurrence-editor.js +13 -13
  11. package/helpers/e2e/schedule.js +13 -13
  12. package/license +9 -9
  13. package/package.json +79 -79
  14. package/src/recurrence-editor/date-generator.js +3 -0
  15. package/src/recurrence-editor/recurrence-editor-model.d.ts +65 -65
  16. package/src/recurrence-editor/recurrence-editor.js +19 -19
  17. package/src/schedule/actions/crud.js +22 -6
  18. package/src/schedule/actions/drag.d.ts +4 -0
  19. package/src/schedule/actions/drag.js +73 -34
  20. package/src/schedule/actions/keyboard.d.ts +1 -0
  21. package/src/schedule/actions/keyboard.js +45 -3
  22. package/src/schedule/actions/resize.js +34 -32
  23. package/src/schedule/actions/touch.js +4 -0
  24. package/src/schedule/actions/virtual-scroll.d.ts +6 -0
  25. package/src/schedule/actions/virtual-scroll.js +119 -34
  26. package/src/schedule/base/interface.d.ts +6 -2
  27. package/src/schedule/base/resource.js +5 -0
  28. package/src/schedule/base/schedule-model.d.ts +805 -805
  29. package/src/schedule/base/schedule.d.ts +26 -0
  30. package/src/schedule/base/schedule.js +63 -21
  31. package/src/schedule/base/util.d.ts +10 -5
  32. package/src/schedule/base/util.js +15 -10
  33. package/src/schedule/event-renderer/agenda-base.js +15 -14
  34. package/src/schedule/event-renderer/event-base.js +18 -3
  35. package/src/schedule/event-renderer/inline-edit.js +13 -5
  36. package/src/schedule/event-renderer/month.js +20 -17
  37. package/src/schedule/event-renderer/timeline-view.js +21 -18
  38. package/src/schedule/event-renderer/vertical-view.d.ts +2 -1
  39. package/src/schedule/event-renderer/vertical-view.js +66 -34
  40. package/src/schedule/event-renderer/year.js +20 -20
  41. package/src/schedule/exports/print.js +1 -0
  42. package/src/schedule/models/event-settings-model.d.ts +155 -155
  43. package/src/schedule/models/event-settings.js +19 -19
  44. package/src/schedule/models/field-options-model.d.ts +22 -22
  45. package/src/schedule/models/field-options.js +19 -19
  46. package/src/schedule/models/fields-model.d.ts +92 -92
  47. package/src/schedule/models/fields.js +19 -19
  48. package/src/schedule/models/group-model.d.ts +48 -48
  49. package/src/schedule/models/group.js +19 -19
  50. package/src/schedule/models/header-rows-model.d.ts +22 -22
  51. package/src/schedule/models/header-rows.js +19 -19
  52. package/src/schedule/models/quick-info-templates-model.d.ts +37 -37
  53. package/src/schedule/models/quick-info-templates.js +19 -19
  54. package/src/schedule/models/resources-model.d.ts +85 -85
  55. package/src/schedule/models/resources.js +19 -19
  56. package/src/schedule/models/time-scale-model.d.ts +40 -40
  57. package/src/schedule/models/time-scale.js +19 -19
  58. package/src/schedule/models/toolbar-model.d.ts +187 -187
  59. package/src/schedule/models/toolbar.js +19 -19
  60. package/src/schedule/models/views-model.d.ts +329 -329
  61. package/src/schedule/models/views.js +19 -19
  62. package/src/schedule/models/work-hours-model.d.ts +16 -16
  63. package/src/schedule/models/work-hours.js +19 -19
  64. package/src/schedule/popups/event-tooltip.js +2 -1
  65. package/src/schedule/popups/event-window.d.ts +1 -0
  66. package/src/schedule/popups/event-window.js +25 -15
  67. package/src/schedule/renderer/agenda.js +13 -13
  68. package/src/schedule/renderer/day.js +13 -13
  69. package/src/schedule/renderer/header-renderer.d.ts +1 -0
  70. package/src/schedule/renderer/header-renderer.js +20 -12
  71. package/src/schedule/renderer/month-agenda.js +13 -13
  72. package/src/schedule/renderer/month.js +19 -13
  73. package/src/schedule/renderer/timeline-header-row.js +1 -1
  74. package/src/schedule/renderer/timeline-month.js +13 -13
  75. package/src/schedule/renderer/timeline-view.js +22 -17
  76. package/src/schedule/renderer/timeline-year.js +19 -15
  77. package/src/schedule/renderer/vertical-view.js +33 -23
  78. package/src/schedule/renderer/view-base.d.ts +1 -0
  79. package/src/schedule/renderer/view-base.js +14 -1
  80. package/src/schedule/renderer/week.js +13 -13
  81. package/src/schedule/renderer/work-week.js +13 -13
  82. package/src/schedule/renderer/year.js +17 -17
  83. package/styles/bootstrap-dark-lite.css +4174 -0
  84. package/styles/bootstrap-dark-lite.scss +18 -0
  85. package/styles/bootstrap-dark.css +823 -595
  86. package/styles/bootstrap-dark.scss +3 -2
  87. package/styles/bootstrap-lite.css +4169 -0
  88. package/styles/bootstrap-lite.scss +18 -0
  89. package/styles/bootstrap.css +823 -595
  90. package/styles/bootstrap.scss +3 -2
  91. package/styles/bootstrap4-lite.css +4216 -0
  92. package/styles/bootstrap4-lite.scss +18 -0
  93. package/styles/bootstrap4.css +809 -636
  94. package/styles/bootstrap4.scss +3 -2
  95. package/styles/bootstrap5-dark-lite.css +4215 -0
  96. package/styles/bootstrap5-dark-lite.scss +18 -0
  97. package/styles/bootstrap5-dark.css +824 -596
  98. package/styles/bootstrap5-dark.scss +3 -2
  99. package/styles/bootstrap5-lite.css +4215 -0
  100. package/styles/bootstrap5-lite.scss +18 -0
  101. package/styles/bootstrap5.3-lite.css +4261 -0
  102. package/styles/bootstrap5.3-lite.scss +18 -0
  103. package/styles/bootstrap5.3.css +5023 -0
  104. package/styles/bootstrap5.3.scss +20 -0
  105. package/styles/bootstrap5.css +824 -596
  106. package/styles/bootstrap5.scss +3 -2
  107. package/styles/fabric-dark-lite.css +4144 -0
  108. package/styles/fabric-dark-lite.scss +18 -0
  109. package/styles/fabric-dark.css +830 -594
  110. package/styles/fabric-dark.scss +3 -2
  111. package/styles/fabric-lite.css +4141 -0
  112. package/styles/fabric-lite.scss +18 -0
  113. package/styles/fabric.css +830 -587
  114. package/styles/fabric.scss +3 -2
  115. package/styles/fluent-dark-lite.css +4207 -0
  116. package/styles/fluent-dark-lite.scss +18 -0
  117. package/styles/fluent-dark.css +828 -592
  118. package/styles/fluent-dark.scss +3 -2
  119. package/styles/fluent-lite.css +4207 -0
  120. package/styles/fluent-lite.scss +18 -0
  121. package/styles/fluent.css +828 -592
  122. package/styles/fluent.scss +3 -2
  123. package/styles/fluent2-lite.css +4427 -0
  124. package/styles/fluent2-lite.scss +18 -0
  125. package/styles/fluent2.css +863 -1627
  126. package/styles/fluent2.scss +3 -2
  127. package/styles/highcontrast-light-lite.css +4233 -0
  128. package/styles/highcontrast-light-lite.scss +18 -0
  129. package/styles/highcontrast-light.css +833 -583
  130. package/styles/highcontrast-light.scss +3 -2
  131. package/styles/highcontrast-lite.css +4242 -0
  132. package/styles/highcontrast-lite.scss +18 -0
  133. package/styles/highcontrast.css +834 -584
  134. package/styles/highcontrast.scss +3 -2
  135. package/styles/material-dark-lite.css +4221 -0
  136. package/styles/material-dark-lite.scss +18 -0
  137. package/styles/material-dark.css +839 -581
  138. package/styles/material-dark.scss +3 -2
  139. package/styles/material-lite.css +4247 -0
  140. package/styles/material-lite.scss +18 -0
  141. package/styles/material.css +836 -599
  142. package/styles/material.scss +3 -2
  143. package/styles/material3-dark-lite.css +4238 -0
  144. package/styles/material3-dark-lite.scss +18 -0
  145. package/styles/material3-dark.css +832 -656
  146. package/styles/material3-dark.scss +4 -3
  147. package/styles/material3-lite.css +4240 -0
  148. package/styles/material3-lite.scss +18 -0
  149. package/styles/material3.css +831 -709
  150. package/styles/material3.scss +4 -3
  151. package/styles/recurrence-editor/_all.scss +2 -2
  152. package/styles/recurrence-editor/_bds-definition.scss +14 -14
  153. package/styles/recurrence-editor/_bigger.scss +134 -0
  154. package/styles/recurrence-editor/_bootstrap-dark-definition.scss +14 -14
  155. package/styles/recurrence-editor/_bootstrap-definition.scss +14 -14
  156. package/styles/recurrence-editor/_bootstrap4-definition.scss +14 -14
  157. package/styles/recurrence-editor/_bootstrap5-definition.scss +14 -14
  158. package/styles/recurrence-editor/_bootstrap5.3-definition.scss +14 -14
  159. package/styles/recurrence-editor/_fabric-dark-definition.scss +14 -14
  160. package/styles/recurrence-editor/_fabric-definition.scss +14 -14
  161. package/styles/recurrence-editor/_fluent-definition.scss +14 -14
  162. package/styles/recurrence-editor/_fluent2-definition.scss +14 -14
  163. package/styles/recurrence-editor/_fusionnew-definition.scss +14 -14
  164. package/styles/recurrence-editor/_highcontrast-definition.scss +14 -14
  165. package/styles/recurrence-editor/_highcontrast-light-definition.scss +14 -14
  166. package/styles/recurrence-editor/_layout.scss +415 -525
  167. package/styles/recurrence-editor/_material-dark-definition.scss +14 -14
  168. package/styles/recurrence-editor/_material-definition.scss +14 -14
  169. package/styles/recurrence-editor/_material3-definition.scss +14 -14
  170. package/styles/recurrence-editor/_tailwind-definition.scss +14 -14
  171. package/styles/recurrence-editor/_theme.scss +1 -1
  172. package/styles/recurrence-editor/bootstrap-dark.css +87 -131
  173. package/styles/recurrence-editor/bootstrap-dark.scss +1 -0
  174. package/styles/recurrence-editor/bootstrap.css +87 -131
  175. package/styles/recurrence-editor/bootstrap.scss +1 -0
  176. package/styles/recurrence-editor/bootstrap4.css +87 -149
  177. package/styles/recurrence-editor/bootstrap4.scss +1 -0
  178. package/styles/recurrence-editor/bootstrap5-dark.css +87 -135
  179. package/styles/recurrence-editor/bootstrap5-dark.scss +1 -0
  180. package/styles/recurrence-editor/bootstrap5.3.css +501 -0
  181. package/styles/recurrence-editor/bootstrap5.3.scss +9 -0
  182. package/styles/recurrence-editor/bootstrap5.css +87 -135
  183. package/styles/recurrence-editor/bootstrap5.scss +1 -0
  184. package/styles/recurrence-editor/fabric-dark.css +87 -130
  185. package/styles/recurrence-editor/fabric-dark.scss +1 -0
  186. package/styles/recurrence-editor/fabric.css +87 -123
  187. package/styles/recurrence-editor/fabric.scss +1 -0
  188. package/styles/recurrence-editor/fluent-dark.css +87 -122
  189. package/styles/recurrence-editor/fluent-dark.scss +1 -0
  190. package/styles/recurrence-editor/fluent.css +87 -122
  191. package/styles/recurrence-editor/fluent.scss +1 -0
  192. package/styles/recurrence-editor/fluent2.css +94 -1148
  193. package/styles/recurrence-editor/fluent2.scss +1 -0
  194. package/styles/recurrence-editor/highcontrast-light.css +87 -118
  195. package/styles/recurrence-editor/highcontrast-light.scss +1 -0
  196. package/styles/recurrence-editor/highcontrast.css +87 -118
  197. package/styles/recurrence-editor/highcontrast.scss +1 -0
  198. package/styles/recurrence-editor/material-dark.css +87 -115
  199. package/styles/recurrence-editor/material-dark.scss +1 -0
  200. package/styles/recurrence-editor/material.css +87 -136
  201. package/styles/recurrence-editor/material.scss +1 -0
  202. package/styles/recurrence-editor/material3-dark.css +88 -194
  203. package/styles/recurrence-editor/material3-dark.scss +2 -1
  204. package/styles/recurrence-editor/material3.css +89 -249
  205. package/styles/recurrence-editor/material3.scss +2 -1
  206. package/styles/recurrence-editor/tailwind-dark.css +87 -116
  207. package/styles/recurrence-editor/tailwind-dark.scss +1 -0
  208. package/styles/recurrence-editor/tailwind.css +87 -116
  209. package/styles/recurrence-editor/tailwind.scss +1 -0
  210. package/styles/schedule/_all.scss +2 -2
  211. package/styles/schedule/_bds-definition.scss +272 -272
  212. package/styles/schedule/_bigger.scss +810 -0
  213. package/styles/schedule/_bootstrap-dark-definition.scss +270 -270
  214. package/styles/schedule/_bootstrap-definition.scss +270 -270
  215. package/styles/schedule/_bootstrap4-definition.scss +273 -273
  216. package/styles/schedule/_bootstrap5-definition.scss +274 -274
  217. package/styles/schedule/_bootstrap5.3-definition.scss +276 -273
  218. package/styles/schedule/_fabric-dark-definition.scss +271 -271
  219. package/styles/schedule/_fabric-definition.scss +270 -270
  220. package/styles/schedule/_fluent-definition.scss +276 -276
  221. package/styles/schedule/_fluent2-definition.scss +273 -273
  222. package/styles/schedule/_fusionnew-definition.scss +273 -273
  223. package/styles/schedule/_highcontrast-definition.scss +271 -271
  224. package/styles/schedule/_highcontrast-light-definition.scss +271 -271
  225. package/styles/schedule/_layout.scss +3787 -4218
  226. package/styles/schedule/_material-dark-definition.scss +270 -270
  227. package/styles/schedule/_material-definition.scss +270 -270
  228. package/styles/schedule/_material3-definition.scss +275 -275
  229. package/styles/schedule/_tailwind-definition.scss +271 -271
  230. package/styles/schedule/_theme.scss +589 -567
  231. package/styles/schedule/bootstrap-dark.css +706 -484
  232. package/styles/schedule/bootstrap-dark.scss +1 -0
  233. package/styles/schedule/bootstrap.css +706 -484
  234. package/styles/schedule/bootstrap.scss +1 -0
  235. package/styles/schedule/bootstrap4.css +699 -532
  236. package/styles/schedule/bootstrap4.scss +1 -0
  237. package/styles/schedule/bootstrap5-dark.css +714 -492
  238. package/styles/schedule/bootstrap5-dark.scss +1 -0
  239. package/styles/schedule/bootstrap5.3.css +4621 -0
  240. package/styles/schedule/bootstrap5.3.scss +17 -0
  241. package/styles/schedule/bootstrap5.css +714 -492
  242. package/styles/schedule/bootstrap5.scss +1 -0
  243. package/styles/schedule/fabric-dark.css +713 -483
  244. package/styles/schedule/fabric-dark.scss +1 -0
  245. package/styles/schedule/fabric.css +713 -476
  246. package/styles/schedule/fabric.scss +1 -0
  247. package/styles/schedule/fluent-dark.css +723 -493
  248. package/styles/schedule/fluent-dark.scss +1 -0
  249. package/styles/schedule/fluent.css +723 -493
  250. package/styles/schedule/fluent.scss +1 -0
  251. package/styles/schedule/fluent2.css +752 -1525
  252. package/styles/schedule/fluent2.scss +1 -0
  253. package/styles/schedule/highcontrast-light.css +721 -477
  254. package/styles/schedule/highcontrast-light.scss +1 -0
  255. package/styles/schedule/highcontrast.css +721 -477
  256. package/styles/schedule/highcontrast.scss +1 -0
  257. package/styles/schedule/icons/_bds.scss +220 -220
  258. package/styles/schedule/icons/_bootstrap-dark.scss +223 -223
  259. package/styles/schedule/icons/_bootstrap.scss +223 -223
  260. package/styles/schedule/icons/_bootstrap4.scss +217 -217
  261. package/styles/schedule/icons/_bootstrap5.3.scss +220 -220
  262. package/styles/schedule/icons/_bootstrap5.scss +220 -220
  263. package/styles/schedule/icons/_fabric-dark.scss +223 -223
  264. package/styles/schedule/icons/_fabric.scss +223 -223
  265. package/styles/schedule/icons/_fluent.scss +220 -220
  266. package/styles/schedule/icons/_fluent2.scss +220 -220
  267. package/styles/schedule/icons/_fusionnew.scss +220 -220
  268. package/styles/schedule/icons/_highcontrast-light.scss +223 -223
  269. package/styles/schedule/icons/_highcontrast.scss +223 -223
  270. package/styles/schedule/icons/_material-dark.scss +223 -223
  271. package/styles/schedule/icons/_material.scss +223 -223
  272. package/styles/schedule/icons/_material3.scss +220 -220
  273. package/styles/schedule/icons/_tailwind.scss +220 -220
  274. package/styles/schedule/material-dark.css +732 -480
  275. package/styles/schedule/material-dark.scss +1 -0
  276. package/styles/schedule/material.css +729 -498
  277. package/styles/schedule/material.scss +1 -0
  278. package/styles/schedule/material3-dark.css +713 -543
  279. package/styles/schedule/material3-dark.scss +2 -1
  280. package/styles/schedule/material3.css +714 -598
  281. package/styles/schedule/material3.scss +2 -1
  282. package/styles/schedule/tailwind-dark.css +725 -484
  283. package/styles/schedule/tailwind-dark.scss +1 -0
  284. package/styles/schedule/tailwind.css +725 -484
  285. package/styles/schedule/tailwind.scss +1 -0
  286. package/styles/tailwind-dark-lite.css +4184 -0
  287. package/styles/tailwind-dark-lite.scss +18 -0
  288. package/styles/tailwind-dark.css +832 -585
  289. package/styles/tailwind-dark.scss +3 -2
  290. package/styles/tailwind-lite.css +4184 -0
  291. package/styles/tailwind-lite.scss +18 -0
  292. package/styles/tailwind.css +832 -585
  293. package/styles/tailwind.scss +3 -2
  294. package/dist/ej2-schedule.min.js +0 -10
  295. package/dist/global/ej2-schedule.min.js +0 -11
  296. package/dist/global/ej2-schedule.min.js.map +0 -1
  297. package/dist/global/index.d.ts +0 -14
  298. package/tslint.json +0 -111
@@ -0,0 +1,810 @@
1
+ @mixin schedule-inline-appointment-styles {
2
+ background: transparent;
3
+ border: 0;
4
+ color: $schedule-appointment-font-color;
5
+ font-size: 13px;
6
+ font-weight: 500;
7
+ line-height: 1.2;
8
+ padding-top: 4px;
9
+ width: 100%;
10
+ }
11
+
12
+ @include export-module('schedule-bigger') {
13
+ .e-bigger .e-schedule,
14
+ .e-bigger.e-schedule {
15
+ .e-schedule-toolbar {
16
+ height: $schedule-tbar-bgr-size;
17
+ min-height: $schedule-tbar-bgr-size;
18
+
19
+ .e-tbar-btn .e-tbar-btn-text {
20
+ font-size: $schedule-content-bgr-font-size;
21
+ }
22
+
23
+ .e-toolbar-item.e-date-range .e-tbar-btn-text {
24
+ font-size: $schedule-header-bgr-font-size;
25
+ }
26
+
27
+ .e-icon-down-arrow {
28
+ font-size: $schedule-tbar-down-arrow-font-size;
29
+ }
30
+
31
+ .e-schedule .e-toolbar .e-hor-nav {
32
+ min-height: $schedule-tbar-bgr-items-size;
33
+ min-width: $schedule-tbar-nav-bgr-width;
34
+ z-index: 0;
35
+ }
36
+
37
+ .e-toolbar-item {
38
+
39
+ .e-btn.e-tbar-btn .e-icons.e-btn-icon {
40
+ font-size: $schedule-bigger-tbar-btn-font-size;
41
+ }
42
+
43
+ .e-tbar-btn-text {
44
+ line-height: inherit;
45
+ }
46
+ }
47
+
48
+ .e-toolbar-items {
49
+ min-height: $schedule-tbar-bgr-items-size;
50
+
51
+ .e-toolbar-item {
52
+ min-height: $schedule-tbar-bgr-items-size;
53
+
54
+ &:not(.e-separator):not(.e-spacer) {
55
+ min-width: $schedule-tbar-bgr-item-size;
56
+ }
57
+
58
+ &.e-separator {
59
+ height: $schedule-tbar-separator-bgr-height;
60
+ margin: $schedule-tbar-separator-bgr-mrgn;
61
+ min-height: $schedule-tbar-separator-bgr-minheight;
62
+ }
63
+
64
+ .e-icons {
65
+ min-width: $schedule-tbar-btn-icon-bgr-width;
66
+ }
67
+
68
+ button.e-btn,
69
+ .e-tbar-btn.e-btn.e-control {
70
+ height: auto;
71
+ line-height: $schedule-tbar-btn-bgr-line-height;
72
+ margin: $schedule-tbar-btn-bgr-mrgn;
73
+ min-width: $schedule-tbar-btn-bgr-minwidth;
74
+ padding: $schedule-tbar-btn-bgr-padding;
75
+
76
+ &.e-tbtn-txt {
77
+ .e-icons.e-icon-right {
78
+ padding: $schedule-tbar-btn-icn-right-bgr-padding;
79
+ font-size: $schedule-bigger-tbar-btn-font-size;
80
+ }
81
+ }
82
+
83
+ .e-btn-icon {
84
+ padding-top: $schedule-tbar-btn-icn-right-bgr-padding-top;
85
+ }
86
+ }
87
+
88
+ .e-tbar-btn .e-tbar-btn-text {
89
+ font-size: $schedule-bgr-tbar-btn-text-font-size;
90
+ }
91
+ }
92
+ }
93
+ }
94
+
95
+ .e-more-popup-wrapper {
96
+ .e-header-day {
97
+ font-size: $schedule-header-day-bgr-font-size;
98
+ }
99
+ }
100
+
101
+ .e-vertical-view {
102
+ .e-header-cells {
103
+ .e-header-day {
104
+ font-size: $schedule-header-day-bgr-font-size;
105
+ }
106
+
107
+ .e-header-date {
108
+ font-size: $schedule-header-date-bgr-font-size;
109
+ }
110
+ }
111
+
112
+ .e-resource-cells {
113
+ font-size: $schedule-header-day-bgr-font-size;
114
+ }
115
+
116
+ .e-time-cells-wrap table td {
117
+ font-size: $schedule-time-scale-bgr-font-size;
118
+ }
119
+
120
+ .e-clone-time-indicator,
121
+ .e-current-time {
122
+ font-size: $schedule-current-time-bgr-font-size;
123
+ }
124
+ }
125
+
126
+ &.e-device {
127
+ .e-vertical-view {
128
+ .e-time-cells-wrap table td {
129
+ font-size: $schedule-time-scale-device-font-size;
130
+ }
131
+
132
+ .e-clone-time-indicator,
133
+ .e-current-time {
134
+ font-size: $schedule-current-time-bgr-device-font-size;
135
+ }
136
+ }
137
+ }
138
+
139
+ .e-month-view {
140
+ .e-header-cells {
141
+ height: $schedule-month-header-cells-bgr-height;
142
+ }
143
+
144
+ .e-resource-cells,
145
+ .e-date-header-wrap table td {
146
+ font-size: $schedule-date-month-header-wrap-bgr-font-size;
147
+ }
148
+
149
+ .e-content-wrap {
150
+ font-size: $schedule-date-month-header-wrap-bgr-font-size;
151
+ }
152
+
153
+ .e-m-date {
154
+ font-size: $schedule-header-date-bgr-font-size;
155
+ }
156
+
157
+ .e-resource-name,
158
+ .e-m-day {
159
+ font-size: $schedule-header-day-bgr-font-size;
160
+ }
161
+ }
162
+
163
+ .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
164
+ min-width: 306px;
165
+ }
166
+ }
167
+
168
+ /*! schedule event tooltip */
169
+
170
+ .e-bigger .e-schedule-event-tooltip,
171
+ .e-schedule-event-tooltip.e-bigger {
172
+ .e-subject {
173
+ font-size: 14px;
174
+ font-weight: 500;
175
+ }
176
+ }
177
+
178
+ .e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
179
+ width: 502px;
180
+ }
181
+
182
+ .e-bigger .e-dialog.e-quick-dialog {
183
+ min-width: 370px;
184
+ }
185
+
186
+ .e-bigger {
187
+ .e-ddl.e-popup .e-resource-template {
188
+ padding: 0 15px;
189
+
190
+ .e-resource-color {
191
+ height: $schedule-bigger-resource-color-size;
192
+ margin-top: $schedule-bigger-resource-color-margin-top;
193
+ width: $schedule-bigger-resource-color-size;
194
+ }
195
+ }
196
+
197
+ .e-schedule-dialog {
198
+ .e-disable {
199
+ display: none;
200
+ }
201
+
202
+ .e-dlg-header-content {
203
+ padding-bottom: 8px;
204
+ }
205
+
206
+ .e-dlg-content {
207
+ padding-bottom: 12px;
208
+ position: relative;
209
+ }
210
+
211
+ .e-event-cancel,
212
+ .e-event-delete {
213
+ border: $schedule-popup-btn-border;
214
+ box-shadow: none;
215
+ }
216
+
217
+ .e-footer-content .e-btn.e-event-delete {
218
+ float: left;
219
+ margin-left: 0;
220
+ }
221
+
222
+ .e-subject-container,
223
+ .e-start-container,
224
+ .e-start-time-zone-container,
225
+ .e-description-label {
226
+ padding-right: 12px;
227
+ }
228
+
229
+ .e-location-container,
230
+ .e-end-container,
231
+ .e-end-time-zone-container {
232
+ padding-left: 12px;
233
+ }
234
+
235
+ .e-all-day-container {
236
+ padding-right: 16px;
237
+ }
238
+
239
+ .e-time-zone-row {
240
+ display: none;
241
+
242
+ &.e-enable {
243
+ display: flex;
244
+ height: $schedule-timezone-enable-bgr-height;
245
+ }
246
+ }
247
+
248
+ .e-title-location-row,
249
+ .e-start-end-row,
250
+ .e-start-input-container,
251
+ .e-end-input-container,
252
+ .e-time-zone-row {
253
+ display: flex;
254
+ padding-bottom: $schedule-bigger-dialog-row-container-padding-bottom;
255
+ width: 100%;
256
+ }
257
+
258
+ .e-resources {
259
+ padding-bottom: 12px;
260
+ width: 100%;
261
+ }
262
+
263
+ .e-all-day-time-zone-row {
264
+ display: flex;
265
+ padding-bottom: 20px;
266
+ padding-top: 0;
267
+ width: 100%;
268
+ }
269
+
270
+ .e-subject-container,
271
+ .e-location-container,
272
+ .e-start-container,
273
+ .e-end-container,
274
+ .e-start-time-zone-container,
275
+ .e-end-time-zone-container {
276
+ width: 50%;
277
+ }
278
+
279
+ .e-location-container,
280
+ .e-end-container,
281
+ .e-end-time-zone-container,
282
+ .e-start-container,
283
+ .e-start-time-zone-container,
284
+ .e-subject-container,
285
+ .e-description-row,
286
+ .e-repeat-container {
287
+ padding-top: 0;
288
+ }
289
+
290
+ .e-all-day-time-zone-row {
291
+ padding-bottom: 16px;
292
+ padding-top: $schedule-bigger-dialog-all-day-row-padding-top;
293
+ }
294
+
295
+ .e-description,
296
+ .e-float-input .e-description {
297
+ height: 50px;
298
+ resize: vertical;
299
+ }
300
+
301
+ .e-time-zone-row,
302
+ .e-repeat-container,
303
+ .e-input-group .e-input-group-icon.e-icon-disable {
304
+ display: none;
305
+ }
306
+
307
+ &.e-rtl {
308
+ .e-all-day-container {
309
+ margin-left: 20px;
310
+ margin-right: 0;
311
+ }
312
+
313
+ .e-subject-container,
314
+ .e-start-container,
315
+ .e-start-time-zone-container,
316
+ .e-description-label {
317
+ padding-left: 12px;
318
+ padding-right: 0;
319
+ }
320
+
321
+ .e-location-container,
322
+ .e-end-container,
323
+ .e-end-time-zone-container {
324
+ padding-left: 0;
325
+ padding-right: 12px;
326
+ }
327
+
328
+ .e-event-delete {
329
+ float: right;
330
+ }
331
+ }
332
+ }
333
+ }
334
+
335
+ /*! schedule quick popup */
336
+
337
+ .e-bigger .e-quick-popup-wrapper {
338
+ .e-cell-popup .e-popup-content .e-popup-table .e-subject {
339
+ font-size: 24px;
340
+ }
341
+
342
+ .e-cell-popup .e-popup-content {
343
+ padding: $schedule-bgr-cell-popup-content-padding;
344
+ }
345
+
346
+ .e-popup-footer {
347
+ padding: $schedule-bgr-cell-popup-footer-padding;
348
+ }
349
+
350
+ .e-cell-popup .e-date-time-icon,
351
+ .e-event-popup .e-date-time-icon {
352
+ padding-right: $schedule-bgr-date-time-icon-padding-right;
353
+ }
354
+
355
+ .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close .e-close-icon {
356
+ font-size: 16px;
357
+ }
358
+
359
+ &.e-rtl {
360
+ .e-cell-popup .e-date-time-icon {
361
+ padding-right: 0;
362
+ }
363
+
364
+ .e-event-popup .e-date-time-icon {
365
+ padding-right: $schedule-bgr-rtl-event-popup-date-time-icon-padding-right;
366
+ }
367
+ }
368
+
369
+ .e-cell-popup .e-close.e-btn.e-small.e-round {
370
+ height: $schedule-bgr-event-popup-header-icon-size;
371
+ width: $schedule-bgr-event-popup-header-icon-size;
372
+ }
373
+
374
+ .e-event-popup {
375
+ .e-edit.e-btn.e-small.e-round,
376
+ .e-delete.e-btn.e-small.e-round,
377
+ .e-close.e-btn.e-small.e-round {
378
+ height: $schedule-bgr-event-popup-header-icon-size;
379
+ width: $schedule-bgr-event-popup-header-icon-size;
380
+ }
381
+ }
382
+
383
+ .e-event-popup .e-popup-header .e-header-icon-wrapper {
384
+ .e-close-icon,
385
+ .e-edit-icon,
386
+ .e-delete-icon {
387
+ font-size: $schedule-bigger-tbar-btn-font-size;
388
+ }
389
+ }
390
+
391
+ &.e-device {
392
+ .e-event-popup .e-popup-header .e-header-icon-wrapper {
393
+ .e-close-icon,
394
+ .e-edit-icon,
395
+ .e-delete-icon {
396
+ font-size: 14px;
397
+ }
398
+ }
399
+
400
+ .e-multiple-event-popup .e-popup-header {
401
+ .e-edit.e-btn.e-small.e-round,
402
+ .e-delete.e-btn.e-small.e-round,
403
+ .e-close.e-btn.e-small.e-round {
404
+ height: $schedule-bgr-multiple-event-popup-icon-height;
405
+ }
406
+
407
+ .e-subject {
408
+ padding: $schedule-bgr-multiple-event-popup-subject-padding;
409
+ }
410
+ }
411
+ }
412
+ }
413
+
414
+ .e-bigger .e-agenda-view {
415
+ .e-appointment {
416
+ padding: $schedule-agenda-big-appointment-padding;
417
+ }
418
+ .e-subject,
419
+ .e-inline-subject {
420
+ font-size: 16px;
421
+ }
422
+
423
+ .e-date-time {
424
+ font-size: 14px;
425
+ }
426
+
427
+ .e-day-date-header {
428
+ .e-m-date {
429
+ font-size: 20px;
430
+ }
431
+
432
+ .e-m-day {
433
+ font-size: 14px;
434
+ }
435
+ }
436
+ }
437
+
438
+ .e-bigger .e-timeline-view {
439
+ .e-resource-text {
440
+ font-size: 14px;
441
+ padding-left: 12px;
442
+ }
443
+
444
+ .e-navigate {
445
+ font-size: $schedule-date-header-wrap-bgr-font-size;
446
+ padding: 8px 0 8px 8px;
447
+ }
448
+
449
+ .e-date-header-wrap table tbody td > span {
450
+ font-size: $schedule-date-header-wrap-bgr-font-size;
451
+ padding: 8px 0 8px 8px;
452
+ }
453
+ }
454
+
455
+ .e-bigger .e-schedule .e-month-view .e-current-date .e-date-header {
456
+ width: 26px;
457
+ }
458
+ }
459
+
460
+ .e-bigger .e-schedule-dialog.e-device {
461
+ .e-dlg-header,
462
+ .e-dlg-header * {
463
+ width: 100%;
464
+ }
465
+
466
+ .e-dlg-header-content {
467
+ background: $schedule-content-bg-color;
468
+ box-shadow: $schedule-tbar-box-shadow;
469
+ @if ($theme-name == 'fluent2') {
470
+ box-shadow: none;
471
+ }
472
+ margin-bottom: $schedule-tbar-box-shadow-bottom-margin;
473
+ }
474
+
475
+ .e-title-location-row,
476
+ .e-start-end-row,
477
+ .e-time-zone-row,
478
+ .e-start-input-container,
479
+ .e-end-input-container {
480
+ display: inline;
481
+ }
482
+
483
+ .e-time-zone-row {
484
+ &.e-enable {
485
+ display: inline;
486
+ }
487
+ }
488
+
489
+ .e-subject-container,
490
+ .e-location-container,
491
+ .e-start-container,
492
+ .e-end-container,
493
+ .e-start-time-zone-container,
494
+ .e-end-time-zone-container {
495
+ padding-left: 0;
496
+ width: 100%;
497
+ }
498
+
499
+ .e-subject-container,
500
+ .e-start-container,
501
+ .e-start-time-zone-container,
502
+ .e-description-label {
503
+ padding-right: 0;
504
+ }
505
+
506
+ .e-location-container,
507
+ .e-end-container,
508
+ .e-end-time-zone-container,
509
+ .e-start-container,
510
+ .e-start-time-zone-container,
511
+ .e-subject-container,
512
+ .e-description-row,
513
+ .e-repeat-container {
514
+ padding-top: 20px;
515
+ }
516
+
517
+ .e-all-day-time-zone-row {
518
+ padding-top: $schedule-device-dialog-all-day-row-padding-top;
519
+ }
520
+
521
+ .e-resources {
522
+ padding-bottom: 0;
523
+ padding-top: 20px;
524
+ }
525
+
526
+ .e-description,
527
+ .e-float-input .e-description {
528
+ height: 60px;
529
+ resize: vertical;
530
+ }
531
+
532
+ .e-all-day-time-zone-row {
533
+ margin-top: 0;
534
+ padding-bottom: 0;
535
+ }
536
+
537
+ .e-repeat-parent-row {
538
+ padding-top: 8px;
539
+ }
540
+
541
+ .e-all-day-container {
542
+ margin-right: 20px;
543
+ }
544
+
545
+ .e-title-header {
546
+ display: flex;
547
+ width: 100%;
548
+ }
549
+
550
+ .e-save-icon,
551
+ .e-back-icon,
552
+ .e-forward-icon {
553
+ cursor: pointer;
554
+ line-height: normal;
555
+ }
556
+
557
+ .e-title-text {
558
+ text-align: center;
559
+ }
560
+
561
+ .e-save-icon,
562
+ .e-back-icon,
563
+ .e-delete-icon {
564
+ width: 2.5em;
565
+ }
566
+
567
+ .e-save-icon,
568
+ .e-delete-icon {
569
+ text-align: right;
570
+ }
571
+
572
+ .e-time-zone-row,
573
+ .e-input-group .e-input-group-icon.e-icon-disable {
574
+ display: none;
575
+ }
576
+
577
+ .e-repeat-container {
578
+ display: block;
579
+ padding-right: 35px;
580
+ padding-left: 0;
581
+ }
582
+
583
+ .e-icon-down-arrow {
584
+ font-size: $schedule-tbar-down-arrow-font-size;
585
+ }
586
+
587
+ &.e-rtl {
588
+ .e-save-icon {
589
+ text-align: left;
590
+ }
591
+
592
+ .e-all-day-container {
593
+ margin-left: 20px;
594
+ margin-right: 0;
595
+ }
596
+
597
+ .e-subject-container,
598
+ .e-start-container,
599
+ .e-start-time-zone-container,
600
+ .e-description-label {
601
+ padding-left: 0;
602
+ }
603
+
604
+ .e-location-container,
605
+ .e-end-container,
606
+ .e-end-time-zone-container,
607
+ .e-all-day-container {
608
+ padding-right: 0;
609
+ }
610
+
611
+ .e-repeat-container {
612
+ padding-left: 35px;
613
+ padding-right: 0;
614
+ }
615
+ }
616
+
617
+ .e-recurrence-container {
618
+ position: relative;
619
+
620
+ &.e-hide {
621
+ display: none;
622
+ }
623
+
624
+ .e-recurrence-edit-button {
625
+ border: 0;
626
+ box-shadow: none;
627
+ margin: -3px 5px;
628
+ position: absolute;
629
+
630
+ .e-recurrence-edit.e-icons {
631
+ font-size: 12px;
632
+ position: relative;
633
+ top: 1px;
634
+ }
635
+ }
636
+ }
637
+ }
638
+
639
+ .e-bigger .e-more-popup-wrapper {
640
+ background: $schedule-popup-bg-color;
641
+ border: 1px solid $schedule-popup-border-color;
642
+ border-radius: $schedule-more-popup-wrapper-border-radius;
643
+ box-shadow: $schedule-more-indicator-shadow-color-more-popup;
644
+ opacity: 1;
645
+ padding: $schedule-more-popup-padding;
646
+ width: 225px;
647
+
648
+ .e-more-appointment-wrapper {
649
+ margin: 0 4px;
650
+ }
651
+
652
+ .e-more-event-popup {
653
+ height: 100%;
654
+ position: relative;
655
+ width: 100%;
656
+ }
657
+
658
+ .e-more-event-header {
659
+ height: 35px;
660
+ margin: 0 8px 4px 14px;
661
+ }
662
+
663
+ .e-more-event-content {
664
+ color: $schedule-primary-content-font-color;
665
+ height: calc(100% - 35px);
666
+ max-height: 150px;
667
+ overflow-y: auto;
668
+ padding: 10px 10px 0;
669
+
670
+ .e-appointment-border {
671
+ border: 0;
672
+ box-shadow: $schedule-event-box-shadow-1, $schedule-event-box-shadow-2, $schedule-event-box-shadow-3;
673
+ }
674
+ }
675
+
676
+ .e-more-event-date-header {
677
+ height: 100%;
678
+ width: calc(100% - 25px);
679
+
680
+ .e-current-date {
681
+ color: $schedule-active-font-color;
682
+ }
683
+ }
684
+
685
+ .e-header-day {
686
+ color: $schedule-primary-content-font-color;
687
+ font-size: $schedule-date-header-wrap-nrml-font-size;
688
+ line-height: 1;
689
+ padding-bottom: $schedule-more-appointment-margin-bottom;
690
+ }
691
+
692
+ .e-header-date {
693
+ color: $schedule-primary-content-font-color;
694
+ font-size: $schedule-header-date-nrml-font-size;
695
+ line-height: 1;
696
+ max-width: 15%;
697
+
698
+ &:hover {
699
+ cursor: pointer;
700
+ text-decoration: underline;
701
+ }
702
+
703
+ &:focus {
704
+ text-decoration: underline;
705
+ }
706
+ }
707
+
708
+ .e-more-event-close {
709
+ background: transparent;
710
+ border: 0;
711
+ box-shadow: none;
712
+ color: $schedule-popup-icon-color;
713
+ cursor: pointer;
714
+ height: 25px;
715
+ padding: $schedule-bgr-more-event-close-icon-padding;
716
+ position: absolute;
717
+ right: 6px;
718
+ width: 25px;
719
+
720
+ .e-close-icon {
721
+ font-size: $schedule-more-event-close-icon-font-size;
722
+ }
723
+
724
+ .e-btn-icon {
725
+ margin-top: $schedule-more-popup-close-margin-top;
726
+ }
727
+
728
+ &:focus,
729
+ &:hover {
730
+ background: $schedule-popup-header-icon-focus-bg-color;
731
+ border-radius: 50%;
732
+ color: $schedule-popup-header-icon-focus-color;
733
+ }
734
+ }
735
+
736
+ .e-appointment {
737
+ background: $schedule-appointment-bg-color;
738
+ border-radius: $schedule-appointment-border-radius;
739
+ color: $schedule-appointment-font-color;
740
+ display: flex;
741
+ height: $schedule-month-appointment-height;
742
+ line-height: $schedule-appointment-text-line-height;
743
+ margin-bottom: $schedule-more-appointment-margin-bottom;
744
+ padding: 2px 0;
745
+ width: 100%;
746
+
747
+ .e-subject {
748
+ color: $schedule-appointment-font-color;
749
+ flex: auto;
750
+ font-size: 13px;
751
+ font-weight: 500;
752
+ overflow: hidden;
753
+ padding: 0 2px;
754
+ text-overflow: ellipsis;
755
+ white-space: nowrap;
756
+ }
757
+
758
+ .e-subject.e-disable {
759
+ display: none;
760
+ }
761
+
762
+ .e-inline-subject {
763
+ @include schedule-inline-appointment-styles;
764
+ }
765
+
766
+ .e-recurrence-icon,
767
+ .e-recurrence-edit-icon {
768
+ line-height: $schedule-month-appointment-height;
769
+ padding: 0 2px;
770
+ }
771
+
772
+ &.e-appointment-border,
773
+ &:focus {
774
+ border: 0;
775
+ box-shadow: $schedule-event-box-shadow-1, $schedule-event-box-shadow-2, $schedule-event-box-shadow-3;
776
+ }
777
+ }
778
+
779
+ &.e-device {
780
+ bottom: 0;
781
+ height: 100%;
782
+ left: 0;
783
+ margin: 0;
784
+ max-width: 100%;
785
+ overflow: hidden;
786
+ right: 0;
787
+ top: 0;
788
+ width: 100%;
789
+ z-index: 1002;
790
+
791
+ .e-more-event-content {
792
+ max-height: unset;
793
+ }
794
+ }
795
+
796
+ &.e-rtl {
797
+ .e-header-date {
798
+ padding-right: 10px;
799
+ }
800
+
801
+ .e-header-day {
802
+ padding-right: 10px;
803
+ }
804
+
805
+ .e-more-event-close {
806
+ left: 6px;
807
+ right: auto;
808
+ }
809
+ }
810
+ }