@syncfusion/ej2-schedule 19.4.55 → 20.1.47

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (75) hide show
  1. package/CHANGELOG.md +23 -9
  2. package/dist/ej2-schedule.umd.min.js +2 -2
  3. package/dist/ej2-schedule.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-schedule.es2015.js +156 -46
  5. package/dist/es6/ej2-schedule.es2015.js.map +1 -1
  6. package/dist/es6/ej2-schedule.es5.js +156 -46
  7. package/dist/es6/ej2-schedule.es5.js.map +1 -1
  8. package/dist/global/ej2-schedule.min.js +2 -2
  9. package/dist/global/ej2-schedule.min.js.map +1 -1
  10. package/dist/global/index.d.ts +1 -1
  11. package/package.json +15 -15
  12. package/src/recurrence-editor/date-generator.js +4 -0
  13. package/src/schedule/base/schedule.js +4 -0
  14. package/src/schedule/event-renderer/agenda-base.js +1 -1
  15. package/src/schedule/event-renderer/month.d.ts +3 -0
  16. package/src/schedule/event-renderer/month.js +38 -24
  17. package/src/schedule/event-renderer/timeline-view.js +2 -1
  18. package/src/schedule/event-renderer/year.js +3 -1
  19. package/src/schedule/popups/event-window.js +4 -2
  20. package/src/schedule/renderer/month.d.ts +1 -0
  21. package/src/schedule/renderer/month.js +29 -12
  22. package/src/schedule/renderer/renderer.js +2 -1
  23. package/src/schedule/renderer/timeline-year.d.ts +2 -1
  24. package/src/schedule/renderer/timeline-year.js +49 -4
  25. package/src/schedule/renderer/year.js +20 -0
  26. package/styles/bootstrap-dark.css +10 -7
  27. package/styles/bootstrap.css +10 -7
  28. package/styles/bootstrap4.css +11 -8
  29. package/styles/bootstrap5-dark.css +20 -19
  30. package/styles/bootstrap5.css +20 -19
  31. package/styles/fabric-dark.css +10 -7
  32. package/styles/fabric.css +10 -7
  33. package/styles/fluent-dark.css +5102 -0
  34. package/styles/fluent-dark.scss +2 -0
  35. package/styles/fluent.css +5103 -0
  36. package/styles/fluent.scss +2 -0
  37. package/styles/highcontrast-light.css +10 -7
  38. package/styles/highcontrast.css +11 -8
  39. package/styles/material-dark.css +10 -7
  40. package/styles/material.css +10 -7
  41. package/styles/recurrence-editor/_fluent-dark-definition.scss +1 -0
  42. package/styles/recurrence-editor/fluent-dark.css +495 -0
  43. package/styles/recurrence-editor/fluent-dark.scss +3 -0
  44. package/styles/recurrence-editor/fluent.css +495 -0
  45. package/styles/recurrence-editor/fluent.scss +3 -0
  46. package/styles/schedule/_bootstrap4-definition.scss +1 -1
  47. package/styles/schedule/_bootstrap5-definition.scss +4 -4
  48. package/styles/schedule/_fluent-dark-definition.scss +1 -0
  49. package/styles/schedule/_fluent-definition.scss +10 -8
  50. package/styles/schedule/_highcontrast-definition.scss +1 -1
  51. package/styles/schedule/_layout.scss +55 -14
  52. package/styles/schedule/_tailwind-definition.scss +1 -0
  53. package/styles/schedule/_theme.scss +6 -9
  54. package/styles/schedule/bootstrap-dark.css +10 -7
  55. package/styles/schedule/bootstrap.css +10 -7
  56. package/styles/schedule/bootstrap4.css +11 -8
  57. package/styles/schedule/bootstrap5-dark.css +20 -19
  58. package/styles/schedule/bootstrap5.css +20 -19
  59. package/styles/schedule/fabric-dark.css +10 -7
  60. package/styles/schedule/fabric.css +10 -7
  61. package/styles/schedule/fluent-dark.css +4606 -0
  62. package/styles/schedule/fluent-dark.scss +4 -0
  63. package/styles/schedule/fluent.css +4607 -0
  64. package/styles/schedule/fluent.scss +5 -0
  65. package/styles/schedule/highcontrast-light.css +10 -7
  66. package/styles/schedule/highcontrast.css +11 -8
  67. package/styles/schedule/icons/_fluent-dark.scss +1 -0
  68. package/styles/schedule/icons/_fluent.scss +51 -50
  69. package/styles/schedule/icons/_tailwind.scss +51 -50
  70. package/styles/schedule/material-dark.css +10 -7
  71. package/styles/schedule/material.css +10 -7
  72. package/styles/schedule/tailwind-dark.css +65 -60
  73. package/styles/schedule/tailwind.css +65 -60
  74. package/styles/tailwind-dark.css +65 -60
  75. package/styles/tailwind.css +65 -60
@@ -0,0 +1,495 @@
1
+ /*! recurrence editor theme wise definitions*/
2
+ /*! Recurrence-Editor component layout */
3
+ .e-recurrenceeditor .e-editor {
4
+ display: -ms-flexbox;
5
+ display: flex;
6
+ -ms-flex-flow: row wrap;
7
+ flex-flow: row wrap;
8
+ margin-left: auto;
9
+ margin-right: auto;
10
+ max-width: 1240px;
11
+ }
12
+
13
+ .e-recurrenceeditor .e-recurrence-table {
14
+ table-layout: fixed;
15
+ width: 100%;
16
+ }
17
+
18
+ .e-recurrenceeditor .e-recurrence-table.e-repeat-content-wrapper td:last-child {
19
+ width: 27%;
20
+ }
21
+
22
+ .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
23
+ width: 24%;
24
+ }
25
+
26
+ .e-recurrenceeditor .e-recurrence-table .e-repeat-content {
27
+ display: inline-block;
28
+ font-weight: normal;
29
+ padding: 18px 0 0 8px;
30
+ }
31
+
32
+ .e-recurrenceeditor .e-recurrence-table .e-input-wrapper {
33
+ float: none;
34
+ width: 100%;
35
+ }
36
+
37
+ .e-recurrenceeditor .e-recurrence-table .e-week-position {
38
+ min-width: 90px;
39
+ position: relative;
40
+ right: 21px;
41
+ }
42
+
43
+ .e-recurrenceeditor .e-recurrence-table .e-day-position {
44
+ min-width: 120px;
45
+ }
46
+
47
+ .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
48
+ padding-left: 10px;
49
+ }
50
+
51
+ .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
52
+ padding: 0 8px 16px 0;
53
+ }
54
+
55
+ .e-recurrenceeditor .e-form-left {
56
+ padding: 0 8px 16px 0;
57
+ }
58
+
59
+ .e-recurrenceeditor .e-form-right,
60
+ .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
61
+ padding: 0 0 10px 8px;
62
+ }
63
+
64
+ .e-recurrenceeditor .e-input-wrapper {
65
+ float: left;
66
+ width: 50%;
67
+ }
68
+
69
+ .e-recurrenceeditor .e-input-wrapper div {
70
+ margin-bottom: 2.5%;
71
+ }
72
+
73
+ .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
74
+ .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
75
+ padding-right: 0;
76
+ }
77
+
78
+ .e-recurrenceeditor.e-rtl .e-end-on > div,
79
+ .e-recurrenceeditor.e-rtl .e-month-expander > div > div {
80
+ float: right;
81
+ }
82
+
83
+ .e-recurrenceeditor.e-rtl .e-form-left,
84
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
85
+ padding: 0 0 10px 8px;
86
+ }
87
+
88
+ .e-recurrenceeditor.e-rtl .e-form-right,
89
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
90
+ padding: 0 8px 10px 0;
91
+ }
92
+
93
+ .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
94
+ position: relative;
95
+ right: 10px;
96
+ }
97
+
98
+ .e-recurrenceeditor.e-rtl .e-week-position {
99
+ position: relative;
100
+ right: -21px;
101
+ }
102
+
103
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
104
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
105
+ padding-right: 0;
106
+ }
107
+
108
+ .e-recurrenceeditor.e-rtl .e-end-on-label {
109
+ margin-bottom: 5px;
110
+ }
111
+
112
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
113
+ padding-left: 8px;
114
+ padding-right: 0;
115
+ }
116
+
117
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
118
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
119
+ padding-left: 0;
120
+ padding-right: 8px;
121
+ }
122
+
123
+ .e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
124
+ width: 0;
125
+ }
126
+
127
+ .e-recurrenceeditor .e-days .e-week-expander-label {
128
+ font-size: 14px;
129
+ font-weight: 400;
130
+ margin-bottom: 8px;
131
+ }
132
+
133
+ .e-recurrenceeditor .e-days button {
134
+ border-radius: 50%;
135
+ -ms-flex-flow: row wrap;
136
+ flex-flow: row wrap;
137
+ height: 35px;
138
+ margin: 0 8px 10px;
139
+ width: 35px;
140
+ }
141
+
142
+ .e-recurrenceeditor .e-hide-recurrence-element {
143
+ display: none;
144
+ }
145
+
146
+ .e-recurrenceeditor .e-half-space {
147
+ width: 20%;
148
+ }
149
+
150
+ .e-recurrenceeditor .e-year-expander {
151
+ margin-bottom: 11px;
152
+ }
153
+
154
+ .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper {
155
+ margin-bottom: 11px;
156
+ }
157
+
158
+ .e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper {
159
+ margin-top: -3px;
160
+ }
161
+
162
+ .e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
163
+ display: none;
164
+ }
165
+
166
+ .e-recurrenceeditor .e-input-wrapper-side {
167
+ float: left;
168
+ padding: 16px 20px 0;
169
+ width: 50%;
170
+ }
171
+
172
+ .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
173
+ float: none;
174
+ font-size: 14px;
175
+ font-weight: 400;
176
+ margin-bottom: 7px;
177
+ padding-right: 16px;
178
+ }
179
+
180
+ .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
181
+ padding-right: 16px;
182
+ }
183
+
184
+ .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-input-wrapper {
185
+ margin: 0;
186
+ }
187
+
188
+ .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
189
+ font-size: 14px;
190
+ font-weight: 400;
191
+ margin-bottom: 7px;
192
+ padding-right: 16px;
193
+ }
194
+
195
+ .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
196
+ padding-bottom: 6px;
197
+ }
198
+
199
+ .e-recurrenceeditor .e-input-wrapper-side .e-non-week .e-form-left {
200
+ padding-bottom: 12px;
201
+ }
202
+
203
+ .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
204
+ margin-bottom: 11px;
205
+ }
206
+
207
+ .e-bigger .e-recurrenceeditor {
208
+ padding: 0;
209
+ }
210
+
211
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
212
+ padding: 0 12px 11px 0;
213
+ }
214
+
215
+ .e-bigger .e-recurrenceeditor .e-form-left {
216
+ padding: 0 12px 14px 0;
217
+ }
218
+
219
+ .e-bigger .e-recurrenceeditor .e-form-right,
220
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
221
+ padding: 0 0 10px 12px;
222
+ }
223
+
224
+ .e-bigger .e-recurrenceeditor .e-recurrence-table .e-week-position {
225
+ right: 24px;
226
+ }
227
+
228
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
229
+ padding-bottom: 6px;
230
+ }
231
+
232
+ .e-bigger .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
233
+ padding-left: 70px;
234
+ }
235
+
236
+ .e-bigger .e-recurrenceeditor .e-week-position {
237
+ min-width: 157px;
238
+ padding-left: 55px;
239
+ padding-right: 0;
240
+ }
241
+
242
+ .e-bigger .e-recurrenceeditor .e-day-position {
243
+ min-width: 183px;
244
+ padding-left: 54px;
245
+ }
246
+
247
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
248
+ font-size: 16px;
249
+ margin-bottom: 0;
250
+ }
251
+
252
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
253
+ padding-right: 5px;
254
+ }
255
+
256
+ .e-bigger .e-recurrenceeditor .e-end-on-label {
257
+ margin-bottom: 0;
258
+ }
259
+
260
+ .e-bigger .e-recurrenceeditor .e-days .e-week-expander-label {
261
+ font-size: 16px;
262
+ margin-bottom: 8px;
263
+ }
264
+
265
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-non-week .e-form-left {
266
+ padding-bottom: 12px;
267
+ }
268
+
269
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
270
+ font-size: 16px;
271
+ margin-bottom: 1px;
272
+ }
273
+
274
+ .e-bigger .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper,
275
+ .e-bigger .e-recurrenceeditor .e-year-expander,
276
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
277
+ margin-bottom: 11px;
278
+ }
279
+
280
+ .e-bigger .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
281
+ width: 0;
282
+ }
283
+
284
+ .e-bigger .e-recurrenceeditor .e-days button {
285
+ height: 40px;
286
+ width: 40px;
287
+ }
288
+
289
+ .e-bigger .e-recurrenceeditor.e-rtl .e-form-left,
290
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
291
+ padding: 0 0 10px 12px;
292
+ }
293
+
294
+ .e-bigger .e-recurrenceeditor.e-rtl .e-form-right,
295
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
296
+ padding: 0 12px 10px 0;
297
+ }
298
+
299
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
300
+ padding-left: 0;
301
+ padding-right: 64px;
302
+ }
303
+
304
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
305
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
306
+ padding-right: 0;
307
+ }
308
+
309
+ .e-bigger .e-recurrenceeditor.e-rtl .e-end-on-label {
310
+ margin-bottom: 5px;
311
+ }
312
+
313
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
314
+ padding-left: 12px;
315
+ padding-right: 0;
316
+ }
317
+
318
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
319
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
320
+ padding-left: 0;
321
+ padding-right: 12px;
322
+ }
323
+
324
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
325
+ right: 33px;
326
+ }
327
+
328
+ .e-bigger .e-recurrenceeditor.e-rtl .e-week-position {
329
+ padding-left: 46px;
330
+ }
331
+
332
+ .e-device .e-recurrenceeditor .e-recurrence-table.e-repeat-content-wrapper td:last-child {
333
+ width: 25%;
334
+ }
335
+
336
+ .e-device .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
337
+ width: 20%;
338
+ }
339
+
340
+ .e-device .e-recurrenceeditor .e-week-expander-label {
341
+ margin-bottom: 6px;
342
+ }
343
+
344
+ .e-device .e-recurrenceeditor .e-month-expander-label {
345
+ font-size: 12px;
346
+ margin-bottom: 5px;
347
+ }
348
+
349
+ .e-device .e-recurrenceeditor .e-footer-content {
350
+ padding: 12px;
351
+ }
352
+
353
+ .e-device .e-recurrenceeditor .e-form-left,
354
+ .e-device .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
355
+ padding: 0 3px 10px 0;
356
+ }
357
+
358
+ .e-device .e-recurrenceeditor .e-form-right,
359
+ .e-device .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
360
+ padding: 0 0 10px 3px;
361
+ }
362
+
363
+ .e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
364
+ .e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
365
+ padding-left: 10px;
366
+ padding-right: 0;
367
+ }
368
+
369
+ .e-device .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
370
+ padding-right: 10px;
371
+ }
372
+
373
+ .e-device .e-recurrenceeditor.e-end-on {
374
+ padding-right: 0;
375
+ }
376
+
377
+ .e-device .e-recurrenceeditor.e-end-on .e-end-on-label {
378
+ float: none;
379
+ font-size: 12px;
380
+ font-weight: 400;
381
+ margin-bottom: 7px;
382
+ }
383
+
384
+ .e-device .e-recurrenceeditor.e-end-on .e-end-on-left {
385
+ padding-right: 0;
386
+ }
387
+
388
+ .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
389
+ padding-right: 0;
390
+ }
391
+
392
+ .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
393
+ .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
394
+ padding-left: 0;
395
+ padding-right: 10px;
396
+ }
397
+
398
+ .e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
399
+ padding-left: 0;
400
+ }
401
+
402
+ .e-device .e-recurrenceeditor.e-rtl .e-week-position {
403
+ padding-left: 16px;
404
+ padding-right: 0;
405
+ }
406
+
407
+ .e-device .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
408
+ padding-left: 20px;
409
+ }
410
+
411
+ .e-device .e-recurrenceeditor .e-week-position {
412
+ padding-left: 0;
413
+ padding-right: 0;
414
+ }
415
+
416
+ .e-device .e-recurrenceeditor .e-week-position {
417
+ padding-left: 0;
418
+ }
419
+
420
+ .e-device.e-recurrence-dialog .e-dlg-header-content {
421
+ background: none;
422
+ box-shadow: none;
423
+ padding-bottom: 10px;
424
+ }
425
+
426
+ .e-device.e-recurrence-dialog .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
427
+ margin-bottom: 7px;
428
+ }
429
+
430
+ .e-device.e-recurrence-dialog .e-footer-content {
431
+ padding: 16px 8px;
432
+ }
433
+
434
+ @media (max-width: 580px) {
435
+ .e-recurrenceeditor {
436
+ margin-left: auto;
437
+ margin-right: auto;
438
+ width: 100%;
439
+ }
440
+ .e-recurrenceeditor .e-editor {
441
+ -ms-flex-direction: column;
442
+ flex-direction: column;
443
+ }
444
+ .e-recurrenceeditor .e-editor > .e-input-wrapper.e-form-left {
445
+ margin-top: 0;
446
+ }
447
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
448
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
449
+ margin-bottom: 7px;
450
+ }
451
+ .e-recurrenceeditor .e-editor > div {
452
+ margin-top: 20px;
453
+ }
454
+ .e-recurrenceeditor .e-editor > .e-input-wrapper {
455
+ width: 100%;
456
+ }
457
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on {
458
+ width: 100%;
459
+ }
460
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-input-wrapper {
461
+ width: 50%;
462
+ }
463
+ .e-recurrenceeditor .e-editor .e-form-left,
464
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
465
+ padding: 0 0 10px;
466
+ }
467
+ .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
468
+ .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
469
+ padding-left: 10px;
470
+ padding-right: 0;
471
+ }
472
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-left {
473
+ padding-right: 10px;
474
+ }
475
+ .e-recurrenceeditor .e-editor .e-form-right,
476
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
477
+ padding-left: 0;
478
+ }
479
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
480
+ width: 100%;
481
+ }
482
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
483
+ width: 100%;
484
+ }
485
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
486
+ padding-right: 0;
487
+ }
488
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
489
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
490
+ padding-left: 0;
491
+ padding-right: 10px;
492
+ }
493
+ }
494
+
495
+ /*! Recurrence-Editor component theme */
@@ -0,0 +1,3 @@
1
+ @import 'ej2-base/styles/fluent-definition.scss';
2
+ @import 'fluent-definition.scss';
3
+ @import 'all.scss';
@@ -181,7 +181,7 @@ $schedule-timeline-year-work-cells-height: 75px !default;
181
181
  $schedule-timeline-year-work-cells-width: 100px !default;
182
182
  $schedule-timeline-year-resource-text-padding: 4px 12px !default;
183
183
  $schedule-timeline-year-resource-cells-padding-left: 12px !default;
184
- $schedule-timeline-year-left-indent-padding: 8px !default;
184
+ $schedule-timeline-year-left-indent-padding: 0 !default;
185
185
  $schedule-timeline-date-header-wrap-padding: 8px 0 8px 8px !default;
186
186
  $schedule-dialog-row-continer-padding-bottom: 14px !default;
187
187
  $schedule-dialog-all-day-row-padding-top: 0 !default;
@@ -83,7 +83,7 @@ $schedule-event-popup-fields-padding: 12px !default;
83
83
  $schedule-popup-title-color: rgba($color: $schedule-appointment-bg-color, $alpha: .3) !default;
84
84
  $schedule-popup-btn-border: none !default;
85
85
  $schedule-alert-dialog-border: none !default;
86
- $schedule-more-popup-close-margin-top: 8px !default;
86
+ $schedule-more-popup-close-margin-top: 3px !default;
87
87
  $schedule-more-popup-padding: 8px 0 !default;
88
88
  $schedule-event-popup-header-icon-padding: 6px 8px 0 0 !default;
89
89
  $schedule-event-popup-subject-padding: 12px 18px !default;
@@ -151,9 +151,9 @@ $schedule-month-agenda-work-cells-border: 0 !default;
151
151
  $schedule-rtl-month-agenda-work-cells-border: 0 !default;
152
152
  $schedule-agenda-color: $content-bg-color !default;
153
153
  $schedule-month-agenda-app-indicator-color: $primary !default;
154
- $schedule-agenda-date-header-padding: 8px 34px 14px 18px !default;
154
+ $schedule-agenda-date-header-padding: 8px 20px 14px 14px !default;
155
155
  $schedule-agenda-item-padding: 10px 0 !default;
156
- $schedule-agenda-appointment-padding: 0 12px !default;
156
+ $schedule-agenda-appointment-padding: 0 14px !default;
157
157
  $schedule-month-agenda-appointment-padding: 0 16px !default;
158
158
  $schedule-month-agenda-item-padding: 10px 0 !default;
159
159
 
@@ -177,7 +177,7 @@ $schedule-date-header-line-height: 22px !default;
177
177
  $schedule-date-header-margin: 3px 3px 2px !default;
178
178
  $schedule-timezone-enable-nrml-height: 60px !default;
179
179
  $schedule-timezone-enable-bgr-height: 66px !default;
180
- $schedule-header-cells-padding: 8px 8px 0 !default;
180
+ $schedule-header-cells-padding: 4px !default;
181
181
  $schedule-time-scale-width: 85px !default;
182
182
  $schedule-device-time-scale-width: 35px !default;
183
183
  $border-type: solid !default;
@@ -0,0 +1 @@
1
+ @import './fluent-definition.scss';
@@ -27,7 +27,7 @@ $border-size: 1px;
27
27
  $border-type: solid !default;
28
28
 
29
29
  $schedule-alternate-cell-border: dotted !default;
30
- $schedule-header-cells-padding: 8px 8px 0 !default;
30
+ $schedule-header-cells-padding: 4px !default;
31
31
  $schedule-header-cells-height: 60px !default;
32
32
  $schedule-header-cells-width: 36px !default;
33
33
  $schedule-month-header-cells-nrml-height: 34px !default;
@@ -94,9 +94,10 @@ $schedule-month-agenda-work-cells-border: 0 !default;
94
94
  $schedule-rtl-month-agenda-work-cells-border: 0 !default;
95
95
  $schedule-month-agenda-border: 2px solid $schedule-content-border-color !default;
96
96
  $schedule-agenda-color: $content-bg-color !default;
97
- $schedule-agenda-date-header-padding: 8px 34px 14px 18px !default;
97
+ $schedule-agenda-date-header-padding: 8px 8px 14px 18px !default;
98
98
  $schedule-agenda-item-padding: 10px 0 !default;
99
- $schedule-agenda-appointment-padding: 0 12px !default;
99
+ $schedule-agenda-appointment-padding: 0 14px !default;
100
+ $schedule-agenda-big-appointment-padding: 0 16px !default;
100
101
  $schedule-month-agenda-appointment-padding: 0 8px !default;
101
102
  $schedule-month-agenda-item-padding: 10px 0 !default;
102
103
  $schedule-popup-content-padding: 40px 18px 12px !default;
@@ -108,7 +109,7 @@ $schedule-tbar-border-bottom-size: 0 !default;
108
109
  $schedule-tbar-box-shadow: 0 1px 2px rgba($black, .15) !default;
109
110
  $schedule-tbar-box-shadow-bottom-margin: 3px !default;
110
111
  $schedule-tbar-min-height: 38px !default;
111
- $schedule-tbar-down-arrow-font-size: $text-lg !default;
112
+ $schedule-tbar-down-arrow-font-size: $text-base !default;
112
113
  $schedule-tbar-down-arrow-padding-top: 0 !default;
113
114
  $schedule-tbar-default-icon-color: $icon-color !default;
114
115
  $schedule-tbar-separator-size: $border-size !default;
@@ -163,15 +164,16 @@ $schedule-event-box-shadow-1: $shadow-xl !default;
163
164
  $schedule-event-box-shadow-2: $shadow-md !default;
164
165
  $schedule-event-box-shadow-3: $shadow-md !default;
165
166
  $schedule-more-indicator-shadow-color: $shadow !default;
166
- $schedule-more-indicator-shadow-color-res-tree-popup: 0 3px 4px .2px $schedule-more-indicator-shadow-color !default;
167
- $schedule-more-indicator-shadow-color-more-popup: 0 10px 10px 0 $schedule-more-indicator-shadow-color !default;
167
+ $schedule-more-indicator-shadow-color-res-tree-popup: 0 3px 4px .2px rgba($black, .15) !default;
168
+ $schedule-more-indicator-shadow-color-more-popup: 0 10px 10px 0 rgba($black, .15) !default;
168
169
  $schedule-more-indicator-nrml-font-size: $text-xxs !default;
169
170
  $schedule-popup-header-icon-font-size: 11px !default;
170
- $schedule-more-popup-close-margin-top: 8px !default;
171
+ $schedule-more-popup-close-margin-top: 6px !default;
171
172
  $schedule-more-popup-padding: 8px 0 !default;
172
173
  $schedule-more-appointment-margin-bottom: 2px !default;
173
174
  $schedule-event-popup-header-icon-padding: 6px 8px 0 0 !default;
174
- $schedule-event-popup-subject-padding: 12px 18px !default;
175
+ $schedule-event-popup-subject-padding: 14px 24px !default;
176
+ $schedule-big-event-popup-subject-padding: 16px 28px !default;
175
177
 
176
178
  $schedule-timeline-header-cells-height: 36px !default;
177
179
  $schedule-timeline-work-cells-height: 60px !default;
@@ -161,7 +161,7 @@ $schedule-more-indicator-shadow-color: $shadow-color !default;
161
161
  $schedule-more-indicator-shadow-color-res-tree-popup: 0 3px 4px .2px $schedule-more-indicator-shadow-color !default;
162
162
  $schedule-more-indicator-shadow-color-more-popup: 0 10px 10px 0 $schedule-more-indicator-shadow-color !default;
163
163
  $schedule-more-indicator-nrml-font-size: 11px !default;
164
- $schedule-more-popup-close-margin-top: 3px !default;
164
+ $schedule-more-popup-close-margin-top: 0 !default;
165
165
  $schedule-more-popup-padding: 8px 0 !default;
166
166
  $schedule-more-appointment-margin-bottom: 2px !default;
167
167
  $schedule-event-popup-header-icon-padding: 5px 5px 2px !default;