@syncfusion/ej2-angular-schedule 20.3.58-ngcc → 20.3.58
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.
- package/esm2020/public_api.mjs +3 -0
- package/esm2020/src/index.mjs +11 -0
- package/esm2020/src/recurrence-editor/recurrenceeditor-all.module.mjs +23 -0
- package/esm2020/src/recurrence-editor/recurrenceeditor.component.mjs +59 -0
- package/esm2020/src/recurrence-editor/recurrenceeditor.module.mjs +25 -0
- package/esm2020/src/schedule/headerrows.directive.mjs +66 -0
- package/esm2020/src/schedule/resources.directive.mjs +58 -0
- package/esm2020/src/schedule/schedule-all.module.mjs +74 -0
- package/esm2020/src/schedule/schedule.component.mjs +283 -0
- package/esm2020/src/schedule/schedule.module.mjs +52 -0
- package/esm2020/src/schedule/views.directive.mjs +126 -0
- package/esm2020/syncfusion-ej2-angular-schedule.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-schedule.mjs +733 -0
- package/fesm2015/syncfusion-ej2-angular-schedule.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-schedule.mjs +733 -0
- package/fesm2020/syncfusion-ej2-angular-schedule.mjs.map +1 -0
- package/package.json +27 -13
- package/schematics/utils/lib-details.d.ts +2 -2
- package/src/recurrence-editor/recurrenceeditor-all.module.d.ts +6 -0
- package/src/recurrence-editor/recurrenceeditor.component.d.ts +3 -0
- package/src/recurrence-editor/recurrenceeditor.module.d.ts +6 -0
- package/src/schedule/headerrows.directive.d.ts +5 -0
- package/src/schedule/resources.directive.d.ts +5 -0
- package/src/schedule/schedule-all.module.d.ts +6 -0
- package/src/schedule/schedule.component.d.ts +3 -0
- package/src/schedule/schedule.module.d.ts +9 -0
- package/src/schedule/views.directive.d.ts +5 -0
- package/styles/bootstrap-dark.css +5 -5
- package/styles/bootstrap.css +5 -5
- package/styles/bootstrap4.css +5 -5
- package/styles/bootstrap5-dark.css +5 -5
- package/styles/bootstrap5.css +5 -5
- package/styles/fabric-dark.css +5 -5
- package/styles/fabric.css +5 -5
- package/styles/fluent-dark.css +5 -5
- package/styles/fluent.css +5 -5
- package/styles/highcontrast-light.css +5 -5
- package/styles/highcontrast.css +5 -5
- package/styles/material-dark.css +5 -5
- package/styles/material.css +5 -5
- package/styles/recurrence-editor/_all.scss +2 -0
- package/styles/recurrence-editor/_bootstrap-dark-definition.scss +13 -0
- package/styles/recurrence-editor/_bootstrap-definition.scss +13 -0
- package/styles/recurrence-editor/_bootstrap4-definition.scss +13 -0
- package/styles/recurrence-editor/_bootstrap5-dark-definition.scss +1 -0
- package/styles/recurrence-editor/_bootstrap5-definition.scss +13 -0
- package/styles/recurrence-editor/_fabric-dark-definition.scss +13 -0
- package/styles/recurrence-editor/_fabric-definition.scss +13 -0
- package/styles/recurrence-editor/_fluent-dark-definition.scss +1 -0
- package/styles/recurrence-editor/_fluent-definition.scss +13 -0
- package/styles/recurrence-editor/_fusionnew-definition.scss +13 -0
- package/styles/recurrence-editor/_highcontrast-definition.scss +13 -0
- package/styles/recurrence-editor/_highcontrast-light-definition.scss +13 -0
- package/styles/recurrence-editor/_layout.scss +534 -0
- package/styles/recurrence-editor/_material-dark-definition.scss +13 -0
- package/styles/recurrence-editor/_material-definition.scss +13 -0
- package/styles/recurrence-editor/_material3-definition.scss +13 -0
- package/styles/recurrence-editor/_tailwind-dark-definition.scss +1 -0
- package/styles/recurrence-editor/_tailwind-definition.scss +13 -0
- package/styles/recurrence-editor/_theme.scss +1 -0
- package/styles/recurrence-editor/bootstrap-dark.css +5 -5
- package/styles/recurrence-editor/bootstrap-dark.scss +3 -1
- package/styles/recurrence-editor/bootstrap.css +5 -5
- package/styles/recurrence-editor/bootstrap.scss +3 -1
- package/styles/recurrence-editor/bootstrap4.css +5 -5
- package/styles/recurrence-editor/bootstrap4.scss +3 -1
- package/styles/recurrence-editor/bootstrap5-dark.css +5 -5
- package/styles/recurrence-editor/bootstrap5-dark.scss +3 -1
- package/styles/recurrence-editor/bootstrap5.css +5 -5
- package/styles/recurrence-editor/bootstrap5.scss +3 -1
- package/styles/recurrence-editor/fabric-dark.css +5 -5
- package/styles/recurrence-editor/fabric-dark.scss +3 -1
- package/styles/recurrence-editor/fabric.css +5 -5
- package/styles/recurrence-editor/fabric.scss +3 -1
- package/styles/recurrence-editor/fluent-dark.css +5 -5
- package/styles/recurrence-editor/fluent-dark.scss +3 -1
- package/styles/recurrence-editor/fluent.css +5 -5
- package/styles/recurrence-editor/fluent.scss +3 -1
- package/styles/recurrence-editor/highcontrast-light.css +5 -5
- package/styles/recurrence-editor/highcontrast-light.scss +3 -1
- package/styles/recurrence-editor/highcontrast.css +5 -5
- package/styles/recurrence-editor/highcontrast.scss +3 -1
- package/styles/recurrence-editor/material-dark.css +5 -5
- package/styles/recurrence-editor/material-dark.scss +3 -1
- package/styles/recurrence-editor/material.css +5 -5
- package/styles/recurrence-editor/material.scss +3 -1
- package/styles/recurrence-editor/tailwind-dark.css +5 -5
- package/styles/recurrence-editor/tailwind-dark.scss +3 -1
- package/styles/recurrence-editor/tailwind.css +5 -5
- package/styles/recurrence-editor/tailwind.scss +3 -1
- package/styles/schedule/_all.scss +2 -0
- package/styles/schedule/_bootstrap-dark-definition.scss +213 -0
- package/styles/schedule/_bootstrap-definition.scss +213 -0
- package/styles/schedule/_bootstrap4-definition.scss +215 -0
- package/styles/schedule/_bootstrap5-dark-definition.scss +1 -0
- package/styles/schedule/_bootstrap5-definition.scss +224 -0
- package/styles/schedule/_fabric-dark-definition.scss +213 -0
- package/styles/schedule/_fabric-definition.scss +213 -0
- package/styles/schedule/_fluent-dark-definition.scss +1 -0
- package/styles/schedule/_fluent-definition.scss +220 -0
- package/styles/schedule/_fusionnew-definition.scss +224 -0
- package/styles/schedule/_highcontrast-definition.scss +214 -0
- package/styles/schedule/_highcontrast-light-definition.scss +214 -0
- package/styles/schedule/_layout.scss +4489 -0
- package/styles/schedule/_material-dark-definition.scss +213 -0
- package/styles/schedule/_material-definition.scss +213 -0
- package/styles/schedule/_material3-definition.scss +224 -0
- package/styles/schedule/_tailwind-dark-definition.scss +1 -0
- package/styles/schedule/_tailwind-definition.scss +217 -0
- package/styles/schedule/_theme.scss +510 -0
- package/styles/schedule/bootstrap-dark.scss +5 -1
- package/styles/schedule/bootstrap.scss +5 -1
- package/styles/schedule/bootstrap4.scss +5 -1
- package/styles/schedule/bootstrap5-dark.scss +4 -1
- package/styles/schedule/bootstrap5.scss +5 -1
- package/styles/schedule/fabric-dark.scss +5 -1
- package/styles/schedule/fabric.scss +5 -1
- package/styles/schedule/fluent-dark.scss +4 -1
- package/styles/schedule/fluent.scss +5 -1
- package/styles/schedule/highcontrast-light.scss +5 -1
- package/styles/schedule/highcontrast.scss +5 -1
- package/styles/schedule/icons/_bootstrap-dark.scss +231 -0
- package/styles/schedule/icons/_bootstrap.scss +231 -0
- package/styles/schedule/icons/_bootstrap4.scss +231 -0
- package/styles/schedule/icons/_bootstrap5-dark.scss +1 -0
- package/styles/schedule/icons/_bootstrap5.scss +231 -0
- package/styles/schedule/icons/_fabric-dark.scss +231 -0
- package/styles/schedule/icons/_fabric.scss +231 -0
- package/styles/schedule/icons/_fluent-dark.scss +1 -0
- package/styles/schedule/icons/_fluent.scss +231 -0
- package/styles/schedule/icons/_fusionnew.scss +231 -0
- package/styles/schedule/icons/_highcontrast-light.scss +231 -0
- package/styles/schedule/icons/_highcontrast.scss +231 -0
- package/styles/schedule/icons/_material-dark.scss +231 -0
- package/styles/schedule/icons/_material.scss +231 -0
- package/styles/schedule/icons/_material3.scss +231 -0
- package/styles/schedule/icons/_tailwind-dark.scss +1 -0
- package/styles/schedule/icons/_tailwind.scss +231 -0
- package/styles/schedule/material-dark.scss +5 -1
- package/styles/schedule/material.scss +5 -1
- package/styles/schedule/tailwind-dark.scss +4 -1
- package/styles/schedule/tailwind.scss +5 -1
- package/styles/tailwind-dark.css +5 -5
- package/styles/tailwind.css +5 -5
- package/syncfusion-ej2-angular-schedule.d.ts +5 -0
- package/@syncfusion/ej2-angular-schedule.es5.js +0 -840
- package/@syncfusion/ej2-angular-schedule.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-schedule.js +0 -788
- package/@syncfusion/ej2-angular-schedule.js.map +0 -1
- package/CHANGELOG.md +0 -1579
- package/dist/ej2-angular-schedule.umd.js +0 -980
- package/dist/ej2-angular-schedule.umd.js.map +0 -1
- package/dist/ej2-angular-schedule.umd.min.js +0 -11
- package/dist/ej2-angular-schedule.umd.min.js.map +0 -1
- package/ej2-angular-schedule.d.ts +0 -6
- package/ej2-angular-schedule.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
|
@@ -352,7 +352,7 @@
|
|
|
352
352
|
margin-top: 0;
|
|
353
353
|
}
|
|
354
354
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
|
|
355
|
-
|
|
355
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
356
356
|
margin-bottom: 7px;
|
|
357
357
|
}
|
|
358
358
|
.e-recurrenceeditor .e-editor > div {
|
|
@@ -368,11 +368,11 @@
|
|
|
368
368
|
width: 50%;
|
|
369
369
|
}
|
|
370
370
|
.e-recurrenceeditor .e-editor .e-form-left,
|
|
371
|
-
|
|
371
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
|
|
372
372
|
padding: 0 0 10px;
|
|
373
373
|
}
|
|
374
374
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
|
|
375
|
-
|
|
375
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
|
|
376
376
|
padding-left: 10px;
|
|
377
377
|
padding-right: 0;
|
|
378
378
|
}
|
|
@@ -380,7 +380,7 @@
|
|
|
380
380
|
padding-right: 10px;
|
|
381
381
|
}
|
|
382
382
|
.e-recurrenceeditor .e-editor .e-form-right,
|
|
383
|
-
|
|
383
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
|
|
384
384
|
padding-left: 0;
|
|
385
385
|
}
|
|
386
386
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
|
|
@@ -393,7 +393,7 @@
|
|
|
393
393
|
padding-right: 0;
|
|
394
394
|
}
|
|
395
395
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
396
|
-
|
|
396
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
397
397
|
padding-left: 0;
|
|
398
398
|
padding-right: 10px;
|
|
399
399
|
}
|
|
@@ -352,7 +352,7 @@
|
|
|
352
352
|
margin-top: 0;
|
|
353
353
|
}
|
|
354
354
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
|
|
355
|
-
|
|
355
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
356
356
|
margin-bottom: 7px;
|
|
357
357
|
}
|
|
358
358
|
.e-recurrenceeditor .e-editor > div {
|
|
@@ -368,11 +368,11 @@
|
|
|
368
368
|
width: 50%;
|
|
369
369
|
}
|
|
370
370
|
.e-recurrenceeditor .e-editor .e-form-left,
|
|
371
|
-
|
|
371
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
|
|
372
372
|
padding: 0 0 10px;
|
|
373
373
|
}
|
|
374
374
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
|
|
375
|
-
|
|
375
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
|
|
376
376
|
padding-left: 10px;
|
|
377
377
|
padding-right: 0;
|
|
378
378
|
}
|
|
@@ -380,7 +380,7 @@
|
|
|
380
380
|
padding-right: 10px;
|
|
381
381
|
}
|
|
382
382
|
.e-recurrenceeditor .e-editor .e-form-right,
|
|
383
|
-
|
|
383
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
|
|
384
384
|
padding-left: 0;
|
|
385
385
|
}
|
|
386
386
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
|
|
@@ -393,7 +393,7 @@
|
|
|
393
393
|
padding-right: 0;
|
|
394
394
|
}
|
|
395
395
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
396
|
-
|
|
396
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
397
397
|
padding-left: 0;
|
|
398
398
|
padding-right: 10px;
|
|
399
399
|
}
|
|
@@ -352,7 +352,7 @@
|
|
|
352
352
|
margin-top: 0;
|
|
353
353
|
}
|
|
354
354
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
|
|
355
|
-
|
|
355
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
356
356
|
margin-bottom: 7px;
|
|
357
357
|
}
|
|
358
358
|
.e-recurrenceeditor .e-editor > div {
|
|
@@ -368,11 +368,11 @@
|
|
|
368
368
|
width: 50%;
|
|
369
369
|
}
|
|
370
370
|
.e-recurrenceeditor .e-editor .e-form-left,
|
|
371
|
-
|
|
371
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
|
|
372
372
|
padding: 0 0 10px;
|
|
373
373
|
}
|
|
374
374
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
|
|
375
|
-
|
|
375
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
|
|
376
376
|
padding-left: 10px;
|
|
377
377
|
padding-right: 0;
|
|
378
378
|
}
|
|
@@ -380,7 +380,7 @@
|
|
|
380
380
|
padding-right: 10px;
|
|
381
381
|
}
|
|
382
382
|
.e-recurrenceeditor .e-editor .e-form-right,
|
|
383
|
-
|
|
383
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
|
|
384
384
|
padding-left: 0;
|
|
385
385
|
}
|
|
386
386
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
|
|
@@ -393,7 +393,7 @@
|
|
|
393
393
|
padding-right: 0;
|
|
394
394
|
}
|
|
395
395
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
396
|
-
|
|
396
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
397
397
|
padding-left: 0;
|
|
398
398
|
padding-right: 10px;
|
|
399
399
|
}
|
|
@@ -352,7 +352,7 @@
|
|
|
352
352
|
margin-top: 0;
|
|
353
353
|
}
|
|
354
354
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
|
|
355
|
-
|
|
355
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
356
356
|
margin-bottom: 7px;
|
|
357
357
|
}
|
|
358
358
|
.e-recurrenceeditor .e-editor > div {
|
|
@@ -368,11 +368,11 @@
|
|
|
368
368
|
width: 50%;
|
|
369
369
|
}
|
|
370
370
|
.e-recurrenceeditor .e-editor .e-form-left,
|
|
371
|
-
|
|
371
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
|
|
372
372
|
padding: 0 0 10px;
|
|
373
373
|
}
|
|
374
374
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
|
|
375
|
-
|
|
375
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
|
|
376
376
|
padding-left: 10px;
|
|
377
377
|
padding-right: 0;
|
|
378
378
|
}
|
|
@@ -380,7 +380,7 @@
|
|
|
380
380
|
padding-right: 10px;
|
|
381
381
|
}
|
|
382
382
|
.e-recurrenceeditor .e-editor .e-form-right,
|
|
383
|
-
|
|
383
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
|
|
384
384
|
padding-left: 0;
|
|
385
385
|
}
|
|
386
386
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
|
|
@@ -393,7 +393,7 @@
|
|
|
393
393
|
padding-right: 0;
|
|
394
394
|
}
|
|
395
395
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
396
|
-
|
|
396
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
397
397
|
padding-left: 0;
|
|
398
398
|
padding-right: 10px;
|
|
399
399
|
}
|
|
@@ -352,7 +352,7 @@
|
|
|
352
352
|
margin-top: 0;
|
|
353
353
|
}
|
|
354
354
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
|
|
355
|
-
|
|
355
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
356
356
|
margin-bottom: 7px;
|
|
357
357
|
}
|
|
358
358
|
.e-recurrenceeditor .e-editor > div {
|
|
@@ -368,11 +368,11 @@
|
|
|
368
368
|
width: 50%;
|
|
369
369
|
}
|
|
370
370
|
.e-recurrenceeditor .e-editor .e-form-left,
|
|
371
|
-
|
|
371
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
|
|
372
372
|
padding: 0 0 10px;
|
|
373
373
|
}
|
|
374
374
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
|
|
375
|
-
|
|
375
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
|
|
376
376
|
padding-left: 10px;
|
|
377
377
|
padding-right: 0;
|
|
378
378
|
}
|
|
@@ -380,7 +380,7 @@
|
|
|
380
380
|
padding-right: 10px;
|
|
381
381
|
}
|
|
382
382
|
.e-recurrenceeditor .e-editor .e-form-right,
|
|
383
|
-
|
|
383
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
|
|
384
384
|
padding-left: 0;
|
|
385
385
|
}
|
|
386
386
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
|
|
@@ -393,7 +393,7 @@
|
|
|
393
393
|
padding-right: 0;
|
|
394
394
|
}
|
|
395
395
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
396
|
-
|
|
396
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
397
397
|
padding-left: 0;
|
|
398
398
|
padding-right: 10px;
|
|
399
399
|
}
|
|
@@ -352,7 +352,7 @@
|
|
|
352
352
|
margin-top: 0;
|
|
353
353
|
}
|
|
354
354
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
|
|
355
|
-
|
|
355
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
356
356
|
margin-bottom: 7px;
|
|
357
357
|
}
|
|
358
358
|
.e-recurrenceeditor .e-editor > div {
|
|
@@ -368,11 +368,11 @@
|
|
|
368
368
|
width: 50%;
|
|
369
369
|
}
|
|
370
370
|
.e-recurrenceeditor .e-editor .e-form-left,
|
|
371
|
-
|
|
371
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
|
|
372
372
|
padding: 0 0 10px;
|
|
373
373
|
}
|
|
374
374
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
|
|
375
|
-
|
|
375
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
|
|
376
376
|
padding-left: 10px;
|
|
377
377
|
padding-right: 0;
|
|
378
378
|
}
|
|
@@ -380,7 +380,7 @@
|
|
|
380
380
|
padding-right: 10px;
|
|
381
381
|
}
|
|
382
382
|
.e-recurrenceeditor .e-editor .e-form-right,
|
|
383
|
-
|
|
383
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
|
|
384
384
|
padding-left: 0;
|
|
385
385
|
}
|
|
386
386
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
|
|
@@ -393,7 +393,7 @@
|
|
|
393
393
|
padding-right: 0;
|
|
394
394
|
}
|
|
395
395
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
396
|
-
|
|
396
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
397
397
|
padding-left: 0;
|
|
398
398
|
padding-right: 10px;
|
|
399
399
|
}
|
|
@@ -352,7 +352,7 @@
|
|
|
352
352
|
margin-top: 0;
|
|
353
353
|
}
|
|
354
354
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
|
|
355
|
-
|
|
355
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
356
356
|
margin-bottom: 7px;
|
|
357
357
|
}
|
|
358
358
|
.e-recurrenceeditor .e-editor > div {
|
|
@@ -368,11 +368,11 @@
|
|
|
368
368
|
width: 50%;
|
|
369
369
|
}
|
|
370
370
|
.e-recurrenceeditor .e-editor .e-form-left,
|
|
371
|
-
|
|
371
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
|
|
372
372
|
padding: 0 0 10px;
|
|
373
373
|
}
|
|
374
374
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
|
|
375
|
-
|
|
375
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
|
|
376
376
|
padding-left: 10px;
|
|
377
377
|
padding-right: 0;
|
|
378
378
|
}
|
|
@@ -380,7 +380,7 @@
|
|
|
380
380
|
padding-right: 10px;
|
|
381
381
|
}
|
|
382
382
|
.e-recurrenceeditor .e-editor .e-form-right,
|
|
383
|
-
|
|
383
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
|
|
384
384
|
padding-left: 0;
|
|
385
385
|
}
|
|
386
386
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
|
|
@@ -393,7 +393,7 @@
|
|
|
393
393
|
padding-right: 0;
|
|
394
394
|
}
|
|
395
395
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
396
|
-
|
|
396
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
397
397
|
padding-left: 0;
|
|
398
398
|
padding-right: 10px;
|
|
399
399
|
}
|
|
@@ -352,7 +352,7 @@
|
|
|
352
352
|
margin-top: 0;
|
|
353
353
|
}
|
|
354
354
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
|
|
355
|
-
|
|
355
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
356
356
|
margin-bottom: 7px;
|
|
357
357
|
}
|
|
358
358
|
.e-recurrenceeditor .e-editor > div {
|
|
@@ -368,11 +368,11 @@
|
|
|
368
368
|
width: 50%;
|
|
369
369
|
}
|
|
370
370
|
.e-recurrenceeditor .e-editor .e-form-left,
|
|
371
|
-
|
|
371
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
|
|
372
372
|
padding: 0 0 10px;
|
|
373
373
|
}
|
|
374
374
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
|
|
375
|
-
|
|
375
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
|
|
376
376
|
padding-left: 10px;
|
|
377
377
|
padding-right: 0;
|
|
378
378
|
}
|
|
@@ -380,7 +380,7 @@
|
|
|
380
380
|
padding-right: 10px;
|
|
381
381
|
}
|
|
382
382
|
.e-recurrenceeditor .e-editor .e-form-right,
|
|
383
|
-
|
|
383
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
|
|
384
384
|
padding-left: 0;
|
|
385
385
|
}
|
|
386
386
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
|
|
@@ -393,7 +393,7 @@
|
|
|
393
393
|
padding-right: 0;
|
|
394
394
|
}
|
|
395
395
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
396
|
-
|
|
396
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
397
397
|
padding-left: 0;
|
|
398
398
|
padding-right: 10px;
|
|
399
399
|
}
|
|
@@ -352,7 +352,7 @@
|
|
|
352
352
|
margin-top: 0;
|
|
353
353
|
}
|
|
354
354
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
|
|
355
|
-
|
|
355
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
356
356
|
margin-bottom: 7px;
|
|
357
357
|
}
|
|
358
358
|
.e-recurrenceeditor .e-editor > div {
|
|
@@ -368,11 +368,11 @@
|
|
|
368
368
|
width: 50%;
|
|
369
369
|
}
|
|
370
370
|
.e-recurrenceeditor .e-editor .e-form-left,
|
|
371
|
-
|
|
371
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
|
|
372
372
|
padding: 0 0 10px;
|
|
373
373
|
}
|
|
374
374
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
|
|
375
|
-
|
|
375
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
|
|
376
376
|
padding-left: 10px;
|
|
377
377
|
padding-right: 0;
|
|
378
378
|
}
|
|
@@ -380,7 +380,7 @@
|
|
|
380
380
|
padding-right: 10px;
|
|
381
381
|
}
|
|
382
382
|
.e-recurrenceeditor .e-editor .e-form-right,
|
|
383
|
-
|
|
383
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
|
|
384
384
|
padding-left: 0;
|
|
385
385
|
}
|
|
386
386
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
|
|
@@ -393,7 +393,7 @@
|
|
|
393
393
|
padding-right: 0;
|
|
394
394
|
}
|
|
395
395
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
396
|
-
|
|
396
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
397
397
|
padding-left: 0;
|
|
398
398
|
padding-right: 10px;
|
|
399
399
|
}
|
|
@@ -353,7 +353,7 @@
|
|
|
353
353
|
margin-top: 0;
|
|
354
354
|
}
|
|
355
355
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
|
|
356
|
-
|
|
356
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
357
357
|
margin-bottom: 1px;
|
|
358
358
|
}
|
|
359
359
|
.e-recurrenceeditor .e-editor > div {
|
|
@@ -369,11 +369,11 @@
|
|
|
369
369
|
width: 50%;
|
|
370
370
|
}
|
|
371
371
|
.e-recurrenceeditor .e-editor .e-form-left,
|
|
372
|
-
|
|
372
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
|
|
373
373
|
padding: 0 0 10px;
|
|
374
374
|
}
|
|
375
375
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
|
|
376
|
-
|
|
376
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
|
|
377
377
|
padding-left: 10px;
|
|
378
378
|
padding-right: 0;
|
|
379
379
|
}
|
|
@@ -381,7 +381,7 @@
|
|
|
381
381
|
padding-right: 10px;
|
|
382
382
|
}
|
|
383
383
|
.e-recurrenceeditor .e-editor .e-form-right,
|
|
384
|
-
|
|
384
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
|
|
385
385
|
padding-left: 0;
|
|
386
386
|
}
|
|
387
387
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
|
|
@@ -394,7 +394,7 @@
|
|
|
394
394
|
padding-right: 0;
|
|
395
395
|
}
|
|
396
396
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
397
|
-
|
|
397
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
398
398
|
padding-left: 0;
|
|
399
399
|
padding-right: 10px;
|
|
400
400
|
}
|
|
@@ -353,7 +353,7 @@
|
|
|
353
353
|
margin-top: 0;
|
|
354
354
|
}
|
|
355
355
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
|
|
356
|
-
|
|
356
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
357
357
|
margin-bottom: 1px;
|
|
358
358
|
}
|
|
359
359
|
.e-recurrenceeditor .e-editor > div {
|
|
@@ -369,11 +369,11 @@
|
|
|
369
369
|
width: 50%;
|
|
370
370
|
}
|
|
371
371
|
.e-recurrenceeditor .e-editor .e-form-left,
|
|
372
|
-
|
|
372
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
|
|
373
373
|
padding: 0 0 10px;
|
|
374
374
|
}
|
|
375
375
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
|
|
376
|
-
|
|
376
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
|
|
377
377
|
padding-left: 10px;
|
|
378
378
|
padding-right: 0;
|
|
379
379
|
}
|
|
@@ -381,7 +381,7 @@
|
|
|
381
381
|
padding-right: 10px;
|
|
382
382
|
}
|
|
383
383
|
.e-recurrenceeditor .e-editor .e-form-right,
|
|
384
|
-
|
|
384
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
|
|
385
385
|
padding-left: 0;
|
|
386
386
|
}
|
|
387
387
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
|
|
@@ -394,7 +394,7 @@
|
|
|
394
394
|
padding-right: 0;
|
|
395
395
|
}
|
|
396
396
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
397
|
-
|
|
397
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
398
398
|
padding-left: 0;
|
|
399
399
|
padding-right: 10px;
|
|
400
400
|
}
|
|
@@ -353,7 +353,7 @@
|
|
|
353
353
|
margin-top: 0;
|
|
354
354
|
}
|
|
355
355
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
|
|
356
|
-
|
|
356
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
357
357
|
margin-bottom: 7px;
|
|
358
358
|
}
|
|
359
359
|
.e-recurrenceeditor .e-editor > div {
|
|
@@ -369,11 +369,11 @@
|
|
|
369
369
|
width: 50%;
|
|
370
370
|
}
|
|
371
371
|
.e-recurrenceeditor .e-editor .e-form-left,
|
|
372
|
-
|
|
372
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
|
|
373
373
|
padding: 0 0 10px;
|
|
374
374
|
}
|
|
375
375
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
|
|
376
|
-
|
|
376
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
|
|
377
377
|
padding-left: 10px;
|
|
378
378
|
padding-right: 0;
|
|
379
379
|
}
|
|
@@ -381,7 +381,7 @@
|
|
|
381
381
|
padding-right: 10px;
|
|
382
382
|
}
|
|
383
383
|
.e-recurrenceeditor .e-editor .e-form-right,
|
|
384
|
-
|
|
384
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
|
|
385
385
|
padding-left: 0;
|
|
386
386
|
}
|
|
387
387
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
|
|
@@ -394,7 +394,7 @@
|
|
|
394
394
|
padding-right: 0;
|
|
395
395
|
}
|
|
396
396
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
397
|
-
|
|
397
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
398
398
|
padding-left: 0;
|
|
399
399
|
padding-right: 10px;
|
|
400
400
|
}
|
|
@@ -353,7 +353,7 @@
|
|
|
353
353
|
margin-top: 0;
|
|
354
354
|
}
|
|
355
355
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
|
|
356
|
-
|
|
356
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
357
357
|
margin-bottom: 7px;
|
|
358
358
|
}
|
|
359
359
|
.e-recurrenceeditor .e-editor > div {
|
|
@@ -369,11 +369,11 @@
|
|
|
369
369
|
width: 50%;
|
|
370
370
|
}
|
|
371
371
|
.e-recurrenceeditor .e-editor .e-form-left,
|
|
372
|
-
|
|
372
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
|
|
373
373
|
padding: 0 0 10px;
|
|
374
374
|
}
|
|
375
375
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
|
|
376
|
-
|
|
376
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
|
|
377
377
|
padding-left: 10px;
|
|
378
378
|
padding-right: 0;
|
|
379
379
|
}
|
|
@@ -381,7 +381,7 @@
|
|
|
381
381
|
padding-right: 10px;
|
|
382
382
|
}
|
|
383
383
|
.e-recurrenceeditor .e-editor .e-form-right,
|
|
384
|
-
|
|
384
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
|
|
385
385
|
padding-left: 0;
|
|
386
386
|
}
|
|
387
387
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
|
|
@@ -394,7 +394,7 @@
|
|
|
394
394
|
padding-right: 0;
|
|
395
395
|
}
|
|
396
396
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
397
|
-
|
|
397
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
398
398
|
padding-left: 0;
|
|
399
399
|
padding-right: 10px;
|
|
400
400
|
}
|