@syncfusion/ej2-schedule 26.2.12 → 27.1.48

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 +173 -34
  4. package/dist/es6/ej2-schedule.es2015.js.map +1 -1
  5. package/dist/es6/ej2-schedule.es5.js +173 -34
  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 +18 -17
  11. package/src/schedule/actions/crud.js +22 -6
  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/inline-edit.js +9 -1
  21. package/src/schedule/event-renderer/month.js +4 -1
  22. package/src/schedule/event-renderer/timeline-view.js +4 -1
  23. package/src/schedule/event-renderer/year.js +2 -2
  24. package/src/schedule/popups/event-tooltip.js +2 -1
  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 +834 -582
  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 +831 -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 +725 -479
  181. package/styles/schedule/material-dark.scss +1 -0
  182. package/styles/schedule/material.css +722 -497
  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
@@ -25,33 +25,6 @@
25
25
  border: 0;
26
26
  }
27
27
 
28
- .e-bigger .e-popup.e-ddl-device-filter {
29
- margin-top: 0;
30
- }
31
-
32
- .e-bigger .e-popup.e-ddl .e-list-item, .e-bigger .e-popup.e-ddl .e-list-group-item, .e-bigger .e-popup.e-ddl .e-fixed-head {
33
- font-size: 15px;
34
- line-height: 40px;
35
- padding-left: 0;
36
- text-indent: 24px;
37
- }
38
-
39
- .e-bigger .e-popup.e-ddl .e-dd-group .e-list-item {
40
- padding-left: 4px;
41
- }
42
-
43
- .e-bigger .e-popup.e-ddl .e-input-group {
44
- padding: 4px 0;
45
- }
46
-
47
- .e-bigger .e-popup.e-ddl .e-input-group input, .e-bigger .e-popup.e-ddl .e-input-group input.e-input {
48
- height: 38px;
49
- }
50
-
51
- .e-bigger .e-popup.e-ddl .e-dropdownbase {
52
- min-height: 40px;
53
- }
54
-
55
28
  .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
56
29
  .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
57
30
  .e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
@@ -83,29 +56,6 @@
83
56
  border-bottom: 1px solid #ccc;
84
57
  }
85
58
 
86
- .e-bigger.e-small .e-ddl.e-popup .e-list-item, .e-bigger.e-small .e-ddl.e-popup .e-list-group-item, .e-bigger.e-small .e-ddl.e-popup .e-fixed-head {
87
- font-size: 14px;
88
- line-height: 34px;
89
- padding-left: 0;
90
- text-indent: 16px;
91
- }
92
-
93
- .e-bigger.e-small .e-ddl.e-popup .e-dd-group .e-list-item {
94
- padding-left: 4px;
95
- }
96
-
97
- .e-bigger.e-small .e-ddl.e-popup .e-input-group {
98
- padding: 4px 0;
99
- }
100
-
101
- .e-bigger.e-small .e-ddl.e-popup .e-input-group input, .e-bigger.e-small .e-ddl.e-popup .e-input-group input.e-input {
102
- height: 30px;
103
- }
104
-
105
- .e-bigger.e-small .e-popup.e-ddl .e-dropdownbase {
106
- min-height: 34px;
107
- }
108
-
109
59
  .e-recurrenceeditor .e-editor {
110
60
  display: -webkit-box;
111
61
  display: -ms-flexbox;
@@ -266,86 +216,6 @@
266
216
  margin-bottom: 11px;
267
217
  }
268
218
 
269
- .e-bigger .e-recurrenceeditor {
270
- padding: 0;
271
- }
272
- .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
273
- padding: 0 12px 11px 0;
274
- }
275
- .e-bigger .e-recurrenceeditor .e-form-left {
276
- padding: 0 12px 14px 0;
277
- }
278
- .e-bigger .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
279
- padding-left: 70px;
280
- }
281
- .e-bigger .e-recurrenceeditor .e-week-position {
282
- min-width: 130px;
283
- right: 0;
284
- }
285
- .e-bigger .e-recurrenceeditor .e-day-position {
286
- min-width: 190px;
287
- padding-left: 54px;
288
- }
289
- .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
290
- font-size: 12px;
291
- margin-bottom: 9px;
292
- font-weight: bold;
293
- }
294
- .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
295
- padding-right: 8px;
296
- }
297
- .e-bigger .e-recurrenceeditor .e-end-on-label {
298
- margin-bottom: 0;
299
- }
300
- .e-bigger .e-recurrenceeditor .e-days .e-week-expander-label {
301
- font-size: 12px;
302
- margin-bottom: 8px;
303
- }
304
- .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
305
- font-size: 12px;
306
- margin-bottom: 1px;
307
- }
308
- .e-bigger .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper,
309
- .e-bigger .e-recurrenceeditor .e-year-expander {
310
- margin-bottom: 11px;
311
- }
312
- .e-bigger .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
313
- width: 30px;
314
- }
315
- .e-bigger .e-recurrenceeditor .e-days button {
316
- height: 40px;
317
- width: 40px;
318
- }
319
- .e-bigger .e-recurrenceeditor.e-rtl .e-form-left,
320
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
321
- padding: 0 0 10px 12px;
322
- }
323
- .e-bigger .e-recurrenceeditor.e-rtl .e-form-right,
324
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
325
- padding: 0 12px 10px 0;
326
- }
327
- .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element,
328
- .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
329
- padding: 0 64px 0 0;
330
- }
331
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
332
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
333
- padding-right: 0;
334
- }
335
- .e-bigger .e-recurrenceeditor.e-rtl .e-end-on-label {
336
- margin-bottom: 5px;
337
- }
338
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
339
- padding: 0 0 0 12px;
340
- }
341
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
342
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
343
- padding: 0 12px 0 0;
344
- }
345
- .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
346
- left: 0;
347
- }
348
-
349
219
  .e-device .e-recurrenceeditor .e-recurrence-table.e-repeat-content-wrapper td:last-child {
350
220
  width: 25%;
351
221
  }
@@ -500,4 +370,90 @@
500
370
  padding: 0 10px 0 0;
501
371
  }
502
372
  }
503
- /*! Recurrence-Editor component theme */
373
+ /*! Recurrence-Editor component theme */
374
+ .e-bigger .e-recurrenceeditor {
375
+ padding: 0;
376
+ }
377
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
378
+ padding: 0 12px 11px 0;
379
+ }
380
+ .e-bigger .e-recurrenceeditor .e-form-left {
381
+ padding: 0 12px 14px 0;
382
+ }
383
+ .e-bigger .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
384
+ padding-left: 70px;
385
+ }
386
+ .e-bigger .e-recurrenceeditor .e-week-position {
387
+ min-width: 130px;
388
+ right: 0;
389
+ }
390
+ .e-bigger .e-recurrenceeditor .e-day-position {
391
+ min-width: 190px;
392
+ padding-left: 54px;
393
+ }
394
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
395
+ font-size: 12px;
396
+ margin-bottom: 9px;
397
+ font-weight: bold;
398
+ }
399
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
400
+ padding-right: 8px;
401
+ }
402
+ .e-bigger .e-recurrenceeditor .e-end-on-label {
403
+ margin-bottom: 0;
404
+ }
405
+ .e-bigger .e-recurrenceeditor .e-days .e-week-expander-label {
406
+ font-size: 12px;
407
+ margin-bottom: 8px;
408
+ }
409
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
410
+ font-size: 12px;
411
+ margin-bottom: 1px;
412
+ }
413
+ .e-bigger .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper,
414
+ .e-bigger .e-recurrenceeditor .e-year-expander {
415
+ margin-bottom: 11px;
416
+ }
417
+ .e-bigger .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
418
+ width: 30px;
419
+ }
420
+ .e-bigger .e-recurrenceeditor .e-days button {
421
+ height: 40px;
422
+ width: 40px;
423
+ }
424
+ .e-bigger .e-recurrenceeditor.e-rtl .e-form-left,
425
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
426
+ padding: 0 0 10px 12px;
427
+ }
428
+ .e-bigger .e-recurrenceeditor.e-rtl .e-form-right,
429
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
430
+ padding: 0 12px 10px 0;
431
+ }
432
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element,
433
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
434
+ padding: 0 64px 0 0;
435
+ }
436
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
437
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
438
+ padding-right: 0;
439
+ }
440
+ .e-bigger .e-recurrenceeditor.e-rtl .e-end-on-label {
441
+ margin-bottom: 5px;
442
+ }
443
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
444
+ padding: 0 0 0 12px;
445
+ }
446
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
447
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
448
+ padding: 0 12px 0 0;
449
+ }
450
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
451
+ left: 0;
452
+ }
453
+ .e-bigger .e-device .e-recurrence-table .e-monthday-element,
454
+ .e-bigger .e-device .e-recurrence-table .e-day-position {
455
+ padding-left: 20px;
456
+ }
457
+ .e-bigger .e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
458
+ padding: 0 20px 0 0;
459
+ }
@@ -6,3 +6,4 @@
6
6
  @import 'ej2-dropdowns/styles/drop-down-list/bootstrap-definition.scss';
7
7
  @import 'bootstrap-definition.scss';
8
8
  @import 'all.scss';
9
+ @import 'bigger.scss';
@@ -25,41 +25,6 @@
25
25
  border: 0;
26
26
  }
27
27
 
28
- .e-bigger .e-popup.e-ddl-device-filter {
29
- margin-top: 0;
30
- }
31
-
32
- .e-bigger .e-popup.e-ddl .e-list-item {
33
- font-size: 16px;
34
- line-height: 32px;
35
- padding-left: 0;
36
- text-indent: 24px;
37
- }
38
-
39
- .e-bigger .e-popup.e-ddl .e-list-group-item, .e-bigger .e-popup.e-ddl .e-fixed-head {
40
- font-size: 14px;
41
- line-height: 32px;
42
- padding-left: 0;
43
- text-indent: 24px;
44
- }
45
-
46
- .e-bigger .e-popup.e-ddl .e-dd-group .e-list-item {
47
- padding-left: 4px;
48
- }
49
-
50
- .e-bigger .e-popup.e-ddl .e-input-group {
51
- padding: 4px 0;
52
- }
53
-
54
- .e-bigger .e-popup.e-ddl .e-input-group input, .e-bigger .e-popup.e-ddl .e-input-group input.e-input {
55
- font-size: 16px;
56
- height: 36px;
57
- }
58
-
59
- .e-bigger .e-popup.e-ddl .e-dropdownbase {
60
- min-height: 40px;
61
- }
62
-
63
28
  .e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
64
29
  .e-float-input.e-control-wrapper.e-ddl input[readonly] {
65
30
  background: transparent;
@@ -114,44 +79,11 @@
114
79
  font-size: 12px;
115
80
  }
116
81
 
117
- .e-bigger .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon,
118
- .e-bigger.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
119
- font-size: 14px;
120
- }
121
-
122
82
  .e-small .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon,
123
83
  .e-small.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
124
84
  font-size: 10px;
125
85
  }
126
86
 
127
- .e-small.e-bigger .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon,
128
- .e-small.e-bigger.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
129
- font-size: 12px;
130
- }
131
-
132
- .e-bigger.e-small .e-ddl.e-popup .e-list-item, .e-bigger.e-small .e-ddl.e-popup .e-list-group-item, .e-bigger.e-small .e-ddl.e-popup .e-fixed-head {
133
- font-size: 14px;
134
- line-height: 34px;
135
- padding-left: 0;
136
- text-indent: 16px;
137
- }
138
-
139
- .e-bigger.e-small .e-ddl.e-popup .e-dd-group .e-list-item {
140
- padding-left: 4px;
141
- }
142
-
143
- .e-bigger.e-small .e-ddl.e-popup .e-input-group {
144
- padding: 4px 0;
145
- }
146
-
147
- .e-bigger.e-small .e-ddl.e-popup .e-input-group input, .e-bigger.e-small .e-ddl.e-popup .e-input-group input.e-input {
148
- height: 30px;
149
- }
150
-
151
- .e-bigger.e-small .e-popup.e-ddl .e-dropdownbase {
152
- min-height: 34px;
153
- }
154
-
155
87
  .e-recurrenceeditor .e-editor {
156
88
  display: -webkit-box;
157
89
  display: -ms-flexbox;
@@ -312,86 +244,6 @@
312
244
  margin-bottom: 11px;
313
245
  }
314
246
 
315
- .e-bigger .e-recurrenceeditor {
316
- padding: 0;
317
- }
318
- .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
319
- padding: 0 12px 11px 0;
320
- }
321
- .e-bigger .e-recurrenceeditor .e-form-left {
322
- padding: 0 12px 14px 0;
323
- }
324
- .e-bigger .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
325
- padding-left: 70px;
326
- }
327
- .e-bigger .e-recurrenceeditor .e-week-position {
328
- min-width: 130px;
329
- right: 0;
330
- }
331
- .e-bigger .e-recurrenceeditor .e-day-position {
332
- min-width: 190px;
333
- padding-left: 54px;
334
- }
335
- .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
336
- font-size: 16px;
337
- margin-bottom: 0;
338
- font-weight: 400;
339
- }
340
- .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
341
- padding-right: 16px;
342
- }
343
- .e-bigger .e-recurrenceeditor .e-end-on-label {
344
- margin-bottom: 0;
345
- }
346
- .e-bigger .e-recurrenceeditor .e-days .e-week-expander-label {
347
- font-size: 16px;
348
- margin-bottom: 8px;
349
- }
350
- .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
351
- font-size: 16px;
352
- margin-bottom: 1px;
353
- }
354
- .e-bigger .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper,
355
- .e-bigger .e-recurrenceeditor .e-year-expander {
356
- margin-bottom: 11px;
357
- }
358
- .e-bigger .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
359
- width: 30px;
360
- }
361
- .e-bigger .e-recurrenceeditor .e-days button {
362
- height: 40px;
363
- width: 40px;
364
- }
365
- .e-bigger .e-recurrenceeditor.e-rtl .e-form-left,
366
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
367
- padding: 0 0 10px 12px;
368
- }
369
- .e-bigger .e-recurrenceeditor.e-rtl .e-form-right,
370
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
371
- padding: 0 12px 10px 0;
372
- }
373
- .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element,
374
- .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
375
- padding: 0 64px 0 0;
376
- }
377
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
378
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
379
- padding-right: 0;
380
- }
381
- .e-bigger .e-recurrenceeditor.e-rtl .e-end-on-label {
382
- margin-bottom: 5px;
383
- }
384
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
385
- padding: 0 0 0 12px;
386
- }
387
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
388
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
389
- padding: 0 12px 0 0;
390
- }
391
- .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
392
- left: 0;
393
- }
394
-
395
247
  .e-device .e-recurrenceeditor .e-recurrence-table.e-repeat-content-wrapper td:last-child {
396
248
  width: 25%;
397
249
  }
@@ -546,4 +398,90 @@
546
398
  padding: 0 10px 0 0;
547
399
  }
548
400
  }
549
- /*! Recurrence-Editor component theme */
401
+ /*! Recurrence-Editor component theme */
402
+ .e-bigger .e-recurrenceeditor {
403
+ padding: 0;
404
+ }
405
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
406
+ padding: 0 12px 11px 0;
407
+ }
408
+ .e-bigger .e-recurrenceeditor .e-form-left {
409
+ padding: 0 12px 14px 0;
410
+ }
411
+ .e-bigger .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
412
+ padding-left: 70px;
413
+ }
414
+ .e-bigger .e-recurrenceeditor .e-week-position {
415
+ min-width: 130px;
416
+ right: 0;
417
+ }
418
+ .e-bigger .e-recurrenceeditor .e-day-position {
419
+ min-width: 190px;
420
+ padding-left: 54px;
421
+ }
422
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
423
+ font-size: 16px;
424
+ margin-bottom: 0;
425
+ font-weight: 400;
426
+ }
427
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
428
+ padding-right: 16px;
429
+ }
430
+ .e-bigger .e-recurrenceeditor .e-end-on-label {
431
+ margin-bottom: 0;
432
+ }
433
+ .e-bigger .e-recurrenceeditor .e-days .e-week-expander-label {
434
+ font-size: 16px;
435
+ margin-bottom: 8px;
436
+ }
437
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
438
+ font-size: 16px;
439
+ margin-bottom: 1px;
440
+ }
441
+ .e-bigger .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper,
442
+ .e-bigger .e-recurrenceeditor .e-year-expander {
443
+ margin-bottom: 11px;
444
+ }
445
+ .e-bigger .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
446
+ width: 30px;
447
+ }
448
+ .e-bigger .e-recurrenceeditor .e-days button {
449
+ height: 40px;
450
+ width: 40px;
451
+ }
452
+ .e-bigger .e-recurrenceeditor.e-rtl .e-form-left,
453
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
454
+ padding: 0 0 10px 12px;
455
+ }
456
+ .e-bigger .e-recurrenceeditor.e-rtl .e-form-right,
457
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
458
+ padding: 0 12px 10px 0;
459
+ }
460
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element,
461
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
462
+ padding: 0 64px 0 0;
463
+ }
464
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
465
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
466
+ padding-right: 0;
467
+ }
468
+ .e-bigger .e-recurrenceeditor.e-rtl .e-end-on-label {
469
+ margin-bottom: 5px;
470
+ }
471
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
472
+ padding: 0 0 0 12px;
473
+ }
474
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
475
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
476
+ padding: 0 12px 0 0;
477
+ }
478
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
479
+ left: 0;
480
+ }
481
+ .e-bigger .e-device .e-recurrence-table .e-monthday-element,
482
+ .e-bigger .e-device .e-recurrence-table .e-day-position {
483
+ padding-left: 20px;
484
+ }
485
+ .e-bigger .e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
486
+ padding: 0 20px 0 0;
487
+ }
@@ -6,3 +6,4 @@
6
6
  @import 'ej2-dropdowns/styles/drop-down-list/bootstrap4-definition.scss';
7
7
  @import 'bootstrap4-definition.scss';
8
8
  @import 'all.scss';
9
+ @import 'bigger.scss';