@syncfusion/ej2-schedule 30.2.7 → 31.1.17
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/dist/ej2-schedule.min.js +2 -2
- package/dist/ej2-schedule.umd.min.js +2 -2
- package/dist/ej2-schedule.umd.min.js.map +1 -1
- package/dist/es6/ej2-schedule.es2015.js +110 -36
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +110 -36
- package/dist/es6/ej2-schedule.es5.js.map +1 -1
- package/dist/global/ej2-schedule.min.js +2 -2
- package/dist/global/ej2-schedule.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/dist/ts/common/calendar-util.d.ts +92 -0
- package/dist/ts/common/calendar-util.ts +261 -0
- package/dist/ts/common/index.d.ts +4 -0
- package/dist/ts/common/index.ts +4 -0
- package/dist/ts/components.d.ts +5 -0
- package/dist/ts/components.ts +5 -0
- package/dist/ts/index.d.ts +6 -0
- package/dist/ts/index.ts +7 -0
- package/dist/ts/recurrence-editor/date-generator.d.ts +76 -0
- package/dist/ts/recurrence-editor/date-generator.ts +1699 -0
- package/dist/ts/recurrence-editor/index.d.ts +6 -0
- package/dist/ts/recurrence-editor/index.ts +6 -0
- package/dist/ts/recurrence-editor/recurrence-editor-model.d.ts +112 -0
- package/dist/ts/recurrence-editor/recurrence-editor.d.ts +245 -0
- package/dist/ts/recurrence-editor/recurrence-editor.ts +1257 -0
- package/dist/ts/schedule/actions/action-base.d.ts +44 -0
- package/dist/ts/schedule/actions/action-base.ts +493 -0
- package/dist/ts/schedule/actions/crud.d.ts +41 -0
- package/dist/ts/schedule/actions/crud.ts +784 -0
- package/dist/ts/schedule/actions/data.d.ts +63 -0
- package/dist/ts/schedule/actions/data.ts +128 -0
- package/dist/ts/schedule/actions/drag.d.ts +75 -0
- package/dist/ts/schedule/actions/drag.ts +1401 -0
- package/dist/ts/schedule/actions/keyboard.d.ts +100 -0
- package/dist/ts/schedule/actions/keyboard.ts +1435 -0
- package/dist/ts/schedule/actions/resize.d.ts +27 -0
- package/dist/ts/schedule/actions/resize.ts +602 -0
- package/dist/ts/schedule/actions/scroll.d.ts +69 -0
- package/dist/ts/schedule/actions/scroll.ts +105 -0
- package/dist/ts/schedule/actions/touch.d.ts +32 -0
- package/dist/ts/schedule/actions/touch.ts +314 -0
- package/dist/ts/schedule/actions/virtual-scroll.d.ts +55 -0
- package/dist/ts/schedule/actions/virtual-scroll.ts +596 -0
- package/dist/ts/schedule/actions/work-cells.d.ts +14 -0
- package/dist/ts/schedule/actions/work-cells.ts +151 -0
- package/dist/ts/schedule/base/constant.d.ts +102 -0
- package/dist/ts/schedule/base/constant.ts +103 -0
- package/dist/ts/schedule/base/css-constant.d.ts +475 -0
- package/dist/ts/schedule/base/css-constant.ts +475 -0
- package/dist/ts/schedule/base/interface.d.ts +673 -0
- package/dist/ts/schedule/base/interface.ts +738 -0
- package/dist/ts/schedule/base/resource.d.ts +59 -0
- package/dist/ts/schedule/base/resource.ts +1091 -0
- package/dist/ts/schedule/base/schedule-model.d.ts +930 -0
- package/dist/ts/schedule/base/schedule.d.ts +1967 -0
- package/dist/ts/schedule/base/schedule.ts +4221 -0
- package/dist/ts/schedule/base/type.d.ts +134 -0
- package/dist/ts/schedule/base/type.ts +142 -0
- package/dist/ts/schedule/base/util.d.ts +266 -0
- package/dist/ts/schedule/base/util.ts +492 -0
- package/dist/ts/schedule/event-renderer/agenda-base.d.ts +15 -0
- package/dist/ts/schedule/event-renderer/agenda-base.ts +423 -0
- package/dist/ts/schedule/event-renderer/event-base.d.ts +101 -0
- package/dist/ts/schedule/event-renderer/event-base.ts +1501 -0
- package/dist/ts/schedule/event-renderer/inline-edit.d.ts +23 -0
- package/dist/ts/schedule/event-renderer/inline-edit.ts +287 -0
- package/dist/ts/schedule/event-renderer/month.d.ts +60 -0
- package/dist/ts/schedule/event-renderer/month.ts +760 -0
- package/dist/ts/schedule/event-renderer/timeline-view.d.ts +51 -0
- package/dist/ts/schedule/event-renderer/timeline-view.ts +606 -0
- package/dist/ts/schedule/event-renderer/vertical-view.d.ts +57 -0
- package/dist/ts/schedule/event-renderer/vertical-view.ts +898 -0
- package/dist/ts/schedule/event-renderer/year.d.ts +27 -0
- package/dist/ts/schedule/event-renderer/year.ts +623 -0
- package/dist/ts/schedule/exports/calendar-export.d.ts +16 -0
- package/dist/ts/schedule/exports/calendar-export.ts +160 -0
- package/dist/ts/schedule/exports/calendar-import.d.ts +18 -0
- package/dist/ts/schedule/exports/calendar-import.ts +277 -0
- package/dist/ts/schedule/exports/excel-export.d.ts +14 -0
- package/dist/ts/schedule/exports/excel-export.ts +89 -0
- package/dist/ts/schedule/exports/index.d.ts +7 -0
- package/dist/ts/schedule/exports/index.ts +7 -0
- package/dist/ts/schedule/exports/print.d.ts +20 -0
- package/dist/ts/schedule/exports/print.ts +233 -0
- package/dist/ts/schedule/index.d.ts +26 -0
- package/dist/ts/schedule/index.ts +26 -0
- package/dist/ts/schedule/models/event-settings-model.d.ts +165 -0
- package/dist/ts/schedule/models/event-settings.d.ts +149 -0
- package/dist/ts/schedule/models/event-settings.ts +187 -0
- package/dist/ts/schedule/models/field-options-model.d.ts +37 -0
- package/dist/ts/schedule/models/field-options.d.ts +31 -0
- package/dist/ts/schedule/models/field-options.ts +41 -0
- package/dist/ts/schedule/models/fields-model.d.ts +129 -0
- package/dist/ts/schedule/models/fields.d.ts +117 -0
- package/dist/ts/schedule/models/fields.ts +149 -0
- package/dist/ts/schedule/models/group-model.d.ts +69 -0
- package/dist/ts/schedule/models/group.d.ts +60 -0
- package/dist/ts/schedule/models/group.ts +75 -0
- package/dist/ts/schedule/models/header-rows-model.d.ts +33 -0
- package/dist/ts/schedule/models/header-rows.d.ts +30 -0
- package/dist/ts/schedule/models/header-rows.ts +35 -0
- package/dist/ts/schedule/models/models.d.ts +14 -0
- package/dist/ts/schedule/models/models.ts +15 -0
- package/dist/ts/schedule/models/quick-info-templates-model.d.ts +52 -0
- package/dist/ts/schedule/models/quick-info-templates.d.ts +47 -0
- package/dist/ts/schedule/models/quick-info-templates.ts +56 -0
- package/dist/ts/schedule/models/resources-model.d.ts +122 -0
- package/dist/ts/schedule/models/resources.d.ts +106 -0
- package/dist/ts/schedule/models/resources.ts +138 -0
- package/dist/ts/schedule/models/time-scale-model.d.ts +57 -0
- package/dist/ts/schedule/models/time-scale.d.ts +50 -0
- package/dist/ts/schedule/models/time-scale.ts +61 -0
- package/dist/ts/schedule/models/toolbar-model.d.ts +196 -0
- package/dist/ts/schedule/models/toolbar.d.ts +176 -0
- package/dist/ts/schedule/models/toolbar.ts +196 -0
- package/dist/ts/schedule/models/views-model.d.ts +370 -0
- package/dist/ts/schedule/models/views.d.ts +335 -0
- package/dist/ts/schedule/models/views.ts +408 -0
- package/dist/ts/schedule/models/work-hours-model.d.ts +29 -0
- package/dist/ts/schedule/models/work-hours.d.ts +24 -0
- package/dist/ts/schedule/models/work-hours.ts +31 -0
- package/dist/ts/schedule/popups/event-tooltip.d.ts +16 -0
- package/dist/ts/schedule/popups/event-tooltip.ts +203 -0
- package/dist/ts/schedule/popups/event-window.d.ts +118 -0
- package/dist/ts/schedule/popups/event-window.ts +2055 -0
- package/dist/ts/schedule/popups/form-validator.d.ts +16 -0
- package/dist/ts/schedule/popups/form-validator.ts +110 -0
- package/dist/ts/schedule/popups/quick-popups.d.ts +78 -0
- package/dist/ts/schedule/popups/quick-popups.ts +1470 -0
- package/dist/ts/schedule/renderer/agenda.d.ts +45 -0
- package/dist/ts/schedule/renderer/agenda.ts +497 -0
- package/dist/ts/schedule/renderer/day.d.ts +20 -0
- package/dist/ts/schedule/renderer/day.ts +28 -0
- package/dist/ts/schedule/renderer/header-renderer.d.ts +48 -0
- package/dist/ts/schedule/renderer/header-renderer.ts +736 -0
- package/dist/ts/schedule/renderer/month-agenda.d.ts +29 -0
- package/dist/ts/schedule/renderer/month-agenda.ts +184 -0
- package/dist/ts/schedule/renderer/month.d.ts +61 -0
- package/dist/ts/schedule/renderer/month.ts +766 -0
- package/dist/ts/schedule/renderer/renderer.d.ts +13 -0
- package/dist/ts/schedule/renderer/renderer.ts +165 -0
- package/dist/ts/schedule/renderer/timeline-header-row.d.ts +15 -0
- package/dist/ts/schedule/renderer/timeline-header-row.ts +132 -0
- package/dist/ts/schedule/renderer/timeline-month.d.ts +29 -0
- package/dist/ts/schedule/renderer/timeline-month.ts +184 -0
- package/dist/ts/schedule/renderer/timeline-view.d.ts +31 -0
- package/dist/ts/schedule/renderer/timeline-view.ts +308 -0
- package/dist/ts/schedule/renderer/timeline-year.d.ts +22 -0
- package/dist/ts/schedule/renderer/timeline-year.ts +450 -0
- package/dist/ts/schedule/renderer/vertical-view.d.ts +63 -0
- package/dist/ts/schedule/renderer/vertical-view.ts +911 -0
- package/dist/ts/schedule/renderer/view-base.d.ts +83 -0
- package/dist/ts/schedule/renderer/view-base.ts +709 -0
- package/dist/ts/schedule/renderer/week.d.ts +22 -0
- package/dist/ts/schedule/renderer/week.ts +35 -0
- package/dist/ts/schedule/renderer/work-week.d.ts +22 -0
- package/dist/ts/schedule/renderer/work-week.ts +36 -0
- package/dist/ts/schedule/renderer/year.d.ts +46 -0
- package/dist/ts/schedule/renderer/year.ts +470 -0
- package/dist/ts/schedule/timezone/timezone.d.ts +16 -0
- package/dist/ts/schedule/timezone/timezone.ts +313 -0
- package/package.json +56 -21
- package/src/schedule/actions/action-base.js +3 -0
- package/src/schedule/actions/drag.js +11 -4
- package/src/schedule/actions/keyboard.js +1 -1
- package/src/schedule/actions/resize.js +8 -5
- package/src/schedule/base/css-constant.d.ts +2 -0
- package/src/schedule/base/css-constant.js +2 -0
- package/src/schedule/base/schedule.js +15 -1
- package/src/schedule/event-renderer/agenda-base.d.ts +1 -1
- package/src/schedule/event-renderer/agenda-base.js +5 -4
- package/src/schedule/event-renderer/inline-edit.js +11 -6
- package/src/schedule/event-renderer/month.js +5 -3
- package/src/schedule/event-renderer/vertical-view.js +3 -0
- package/src/schedule/event-renderer/year.d.ts +2 -0
- package/src/schedule/event-renderer/year.js +28 -4
- package/src/schedule/popups/event-tooltip.js +4 -0
- package/src/schedule/popups/event-window.js +2 -2
- package/src/schedule/popups/quick-popups.js +5 -1
- package/src/schedule/renderer/agenda.js +3 -2
- package/src/schedule/renderer/vertical-view.js +1 -1
- package/src/schedule/renderer/year.js +3 -2
- package/styles/bds-lite.css +11 -8
- package/styles/bds.css +11 -8
- package/styles/bootstrap-dark-lite.css +12 -9
- package/styles/bootstrap-dark.css +12 -9
- package/styles/bootstrap-lite.css +12 -9
- package/styles/bootstrap.css +12 -9
- package/styles/bootstrap4-lite.css +11 -8
- package/styles/bootstrap4.css +11 -8
- package/styles/bootstrap5-dark-lite.css +11 -8
- package/styles/bootstrap5-dark.css +11 -8
- package/styles/bootstrap5-lite.css +11 -8
- package/styles/bootstrap5.3-lite.css +11 -8
- package/styles/bootstrap5.3.css +11 -8
- package/styles/bootstrap5.css +11 -8
- package/styles/fabric-dark-lite.css +12 -9
- package/styles/fabric-dark.css +12 -9
- package/styles/fabric-lite.css +12 -9
- package/styles/fabric.css +12 -9
- package/styles/fluent-dark-lite.css +13 -10
- package/styles/fluent-dark.css +13 -10
- package/styles/fluent-lite.css +13 -10
- package/styles/fluent.css +13 -10
- package/styles/fluent2-lite.css +11 -8
- package/styles/fluent2.css +11 -8
- package/styles/highcontrast-light-lite.css +12 -9
- package/styles/highcontrast-light.css +12 -9
- package/styles/highcontrast-lite.css +12 -9
- package/styles/highcontrast.css +12 -9
- package/styles/material-dark-lite.css +12 -9
- package/styles/material-dark.css +12 -9
- package/styles/material-lite.css +12 -9
- package/styles/material.css +12 -9
- package/styles/material3-dark-lite.css +11 -8
- package/styles/material3-dark.css +11 -8
- package/styles/material3-lite.css +11 -8
- package/styles/material3.css +11 -8
- package/styles/recurrence-editor/_bds-definition.scss +1 -0
- package/styles/recurrence-editor/_bootstrap-dark-definition.scss +1 -0
- package/styles/recurrence-editor/_bootstrap-definition.scss +1 -0
- package/styles/recurrence-editor/_bootstrap4-definition.scss +1 -0
- package/styles/recurrence-editor/_bootstrap5-definition.scss +1 -0
- package/styles/recurrence-editor/_bootstrap5.3-definition.scss +1 -0
- package/styles/recurrence-editor/_fabric-dark-definition.scss +1 -0
- package/styles/recurrence-editor/_fabric-definition.scss +1 -0
- package/styles/recurrence-editor/_fluent-definition.scss +1 -0
- package/styles/recurrence-editor/_fluent2-definition.scss +1 -0
- package/styles/recurrence-editor/_fusionnew-definition.scss +1 -0
- package/styles/recurrence-editor/_highcontrast-definition.scss +1 -0
- package/styles/recurrence-editor/_highcontrast-light-definition.scss +1 -0
- package/styles/recurrence-editor/_layout.scss +5 -1
- package/styles/recurrence-editor/_material-dark-definition.scss +1 -0
- package/styles/recurrence-editor/_material-definition.scss +1 -0
- package/styles/recurrence-editor/_material3-definition.scss +1 -0
- package/styles/recurrence-editor/_tailwind-definition.scss +1 -0
- package/styles/recurrence-editor/_tailwind3-definition.scss +1 -0
- package/styles/recurrence-editor/bds.css +3 -0
- package/styles/recurrence-editor/bootstrap-dark.css +4 -1
- package/styles/recurrence-editor/bootstrap.css +4 -1
- package/styles/recurrence-editor/bootstrap4.css +3 -0
- package/styles/recurrence-editor/bootstrap5-dark.css +3 -0
- package/styles/recurrence-editor/bootstrap5.3.css +3 -0
- package/styles/recurrence-editor/bootstrap5.css +3 -0
- package/styles/recurrence-editor/fabric-dark.css +4 -1
- package/styles/recurrence-editor/fabric.css +4 -1
- package/styles/recurrence-editor/fluent-dark.css +4 -1
- package/styles/recurrence-editor/fluent.css +4 -1
- package/styles/recurrence-editor/fluent2.css +3 -0
- package/styles/recurrence-editor/highcontrast-light.css +4 -1
- package/styles/recurrence-editor/highcontrast.css +4 -1
- package/styles/recurrence-editor/material-dark.css +4 -1
- package/styles/recurrence-editor/material.css +4 -1
- package/styles/recurrence-editor/material3-dark.css +3 -0
- package/styles/recurrence-editor/material3.css +3 -0
- package/styles/recurrence-editor/tailwind-dark.css +3 -0
- package/styles/recurrence-editor/tailwind.css +3 -0
- package/styles/recurrence-editor/tailwind3.css +3 -0
- package/styles/schedule/_bds-definition.scss +2 -0
- package/styles/schedule/_bootstrap-dark-definition.scss +2 -0
- package/styles/schedule/_bootstrap-definition.scss +2 -0
- package/styles/schedule/_bootstrap4-definition.scss +2 -0
- package/styles/schedule/_bootstrap5-definition.scss +2 -0
- package/styles/schedule/_bootstrap5.3-definition.scss +2 -0
- package/styles/schedule/_fabric-dark-definition.scss +2 -0
- package/styles/schedule/_fabric-definition.scss +2 -0
- package/styles/schedule/_fluent-definition.scss +3 -1
- package/styles/schedule/_fluent2-definition.scss +2 -0
- package/styles/schedule/_fusionnew-definition.scss +2 -0
- package/styles/schedule/_highcontrast-definition.scss +2 -0
- package/styles/schedule/_highcontrast-light-definition.scss +2 -0
- package/styles/schedule/_layout.scss +12 -11
- package/styles/schedule/_material-dark-definition.scss +2 -0
- package/styles/schedule/_material-definition.scss +2 -0
- package/styles/schedule/_material3-definition.scss +2 -0
- package/styles/schedule/_tailwind-definition.scss +2 -0
- package/styles/schedule/_tailwind3-definition.scss +2 -0
- package/styles/schedule/bds.css +8 -8
- package/styles/schedule/bootstrap-dark.css +8 -8
- package/styles/schedule/bootstrap.css +8 -8
- package/styles/schedule/bootstrap4.css +8 -8
- package/styles/schedule/bootstrap5-dark.css +8 -8
- package/styles/schedule/bootstrap5.3.css +8 -8
- package/styles/schedule/bootstrap5.css +8 -8
- package/styles/schedule/fabric-dark.css +8 -8
- package/styles/schedule/fabric.css +8 -8
- package/styles/schedule/fluent-dark.css +9 -9
- package/styles/schedule/fluent.css +9 -9
- package/styles/schedule/fluent2.css +8 -8
- package/styles/schedule/highcontrast-light.css +8 -8
- package/styles/schedule/highcontrast.css +8 -8
- package/styles/schedule/material-dark.css +8 -8
- package/styles/schedule/material.css +8 -8
- package/styles/schedule/material3-dark.css +8 -8
- package/styles/schedule/material3.css +8 -8
- package/styles/schedule/tailwind-dark.css +8 -8
- package/styles/schedule/tailwind.css +8 -8
- package/styles/schedule/tailwind3.css +8 -8
- package/styles/tailwind-dark-lite.css +11 -8
- package/styles/tailwind-dark.css +11 -8
- package/styles/tailwind-lite.css +11 -8
- package/styles/tailwind.css +11 -8
- package/styles/tailwind3-lite.css +11 -8
- package/styles/tailwind3.css +11 -8
package/styles/bootstrap4.css
CHANGED
|
@@ -1239,7 +1239,6 @@
|
|
|
1239
1239
|
}
|
|
1240
1240
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1241
1241
|
font-weight: 500;
|
|
1242
|
-
margin-left: 15px;
|
|
1243
1242
|
margin-right: auto;
|
|
1244
1243
|
}
|
|
1245
1244
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2119,6 +2118,10 @@
|
|
|
2119
2118
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2120
2119
|
text-align: right;
|
|
2121
2120
|
}
|
|
2121
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2122
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2123
|
+
padding: 8px 8px 8px 0;
|
|
2124
|
+
}
|
|
2122
2125
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2123
2126
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2124
2127
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -3152,13 +3155,6 @@
|
|
|
3152
3155
|
left: 6px;
|
|
3153
3156
|
right: auto;
|
|
3154
3157
|
}
|
|
3155
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3156
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3157
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3158
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3159
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3160
|
-
margin-right: 10px;
|
|
3161
|
-
}
|
|
3162
3158
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3163
3159
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3164
3160
|
margin-left: 8px;
|
|
@@ -3344,6 +3340,10 @@
|
|
|
3344
3340
|
display: none;
|
|
3345
3341
|
}
|
|
3346
3342
|
|
|
3343
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3344
|
+
line-height: 1.5;
|
|
3345
|
+
}
|
|
3346
|
+
|
|
3347
3347
|
@media print {
|
|
3348
3348
|
.e-schedule .e-table-container {
|
|
3349
3349
|
display: block;
|
|
@@ -4713,6 +4713,9 @@
|
|
|
4713
4713
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
4714
4714
|
padding: 0 8px 0 0;
|
|
4715
4715
|
}
|
|
4716
|
+
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
4717
|
+
margin-right: 20px;
|
|
4718
|
+
}
|
|
4716
4719
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
4717
4720
|
width: 30px;
|
|
4718
4721
|
}
|
|
@@ -1242,7 +1242,6 @@
|
|
|
1242
1242
|
}
|
|
1243
1243
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1244
1244
|
font-weight: 500;
|
|
1245
|
-
margin-left: 15px;
|
|
1246
1245
|
margin-right: auto;
|
|
1247
1246
|
}
|
|
1248
1247
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2122,6 +2121,10 @@
|
|
|
2122
2121
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2123
2122
|
text-align: right;
|
|
2124
2123
|
}
|
|
2124
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2125
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2126
|
+
padding: 8px 8px 8px 0;
|
|
2127
|
+
}
|
|
2125
2128
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2126
2129
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2127
2130
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -3155,13 +3158,6 @@
|
|
|
3155
3158
|
left: 6px;
|
|
3156
3159
|
right: auto;
|
|
3157
3160
|
}
|
|
3158
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3159
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3160
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3161
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3162
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3163
|
-
margin-right: 10px;
|
|
3164
|
-
}
|
|
3165
3161
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3166
3162
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3167
3163
|
margin-left: 8px;
|
|
@@ -3347,6 +3343,10 @@
|
|
|
3347
3343
|
display: none;
|
|
3348
3344
|
}
|
|
3349
3345
|
|
|
3346
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3347
|
+
line-height: 1.4;
|
|
3348
|
+
}
|
|
3349
|
+
|
|
3350
3350
|
@media print {
|
|
3351
3351
|
.e-schedule .e-table-container {
|
|
3352
3352
|
display: block;
|
|
@@ -4049,6 +4049,9 @@
|
|
|
4049
4049
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
4050
4050
|
padding: 0 8px 0 0;
|
|
4051
4051
|
}
|
|
4052
|
+
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
4053
|
+
margin-right: 20px;
|
|
4054
|
+
}
|
|
4052
4055
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
4053
4056
|
width: 30px;
|
|
4054
4057
|
}
|
|
@@ -1242,7 +1242,6 @@
|
|
|
1242
1242
|
}
|
|
1243
1243
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1244
1244
|
font-weight: 500;
|
|
1245
|
-
margin-left: 15px;
|
|
1246
1245
|
margin-right: auto;
|
|
1247
1246
|
}
|
|
1248
1247
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2122,6 +2121,10 @@
|
|
|
2122
2121
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2123
2122
|
text-align: right;
|
|
2124
2123
|
}
|
|
2124
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2125
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2126
|
+
padding: 8px 8px 8px 0;
|
|
2127
|
+
}
|
|
2125
2128
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2126
2129
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2127
2130
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -3155,13 +3158,6 @@
|
|
|
3155
3158
|
left: 6px;
|
|
3156
3159
|
right: auto;
|
|
3157
3160
|
}
|
|
3158
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3159
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3160
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3161
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3162
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3163
|
-
margin-right: 10px;
|
|
3164
|
-
}
|
|
3165
3161
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3166
3162
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3167
3163
|
margin-left: 8px;
|
|
@@ -3347,6 +3343,10 @@
|
|
|
3347
3343
|
display: none;
|
|
3348
3344
|
}
|
|
3349
3345
|
|
|
3346
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3347
|
+
line-height: 1.4;
|
|
3348
|
+
}
|
|
3349
|
+
|
|
3350
3350
|
@media print {
|
|
3351
3351
|
.e-schedule .e-table-container {
|
|
3352
3352
|
display: block;
|
|
@@ -4716,6 +4716,9 @@
|
|
|
4716
4716
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
4717
4717
|
padding: 0 8px 0 0;
|
|
4718
4718
|
}
|
|
4719
|
+
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
4720
|
+
margin-right: 20px;
|
|
4721
|
+
}
|
|
4719
4722
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
4720
4723
|
width: 30px;
|
|
4721
4724
|
}
|
|
@@ -1242,7 +1242,6 @@
|
|
|
1242
1242
|
}
|
|
1243
1243
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1244
1244
|
font-weight: 500;
|
|
1245
|
-
margin-left: 15px;
|
|
1246
1245
|
margin-right: auto;
|
|
1247
1246
|
}
|
|
1248
1247
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2122,6 +2121,10 @@
|
|
|
2122
2121
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2123
2122
|
text-align: right;
|
|
2124
2123
|
}
|
|
2124
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2125
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2126
|
+
padding: 8px 8px 8px 0;
|
|
2127
|
+
}
|
|
2125
2128
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2126
2129
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2127
2130
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -3155,13 +3158,6 @@
|
|
|
3155
3158
|
left: 6px;
|
|
3156
3159
|
right: auto;
|
|
3157
3160
|
}
|
|
3158
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3159
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3160
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3161
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3162
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3163
|
-
margin-right: 10px;
|
|
3164
|
-
}
|
|
3165
3161
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3166
3162
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3167
3163
|
margin-left: 8px;
|
|
@@ -3347,6 +3343,10 @@
|
|
|
3347
3343
|
display: none;
|
|
3348
3344
|
}
|
|
3349
3345
|
|
|
3346
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3347
|
+
line-height: 1.4;
|
|
3348
|
+
}
|
|
3349
|
+
|
|
3350
3350
|
@media print {
|
|
3351
3351
|
.e-schedule .e-table-container {
|
|
3352
3352
|
display: block;
|
|
@@ -4049,6 +4049,9 @@
|
|
|
4049
4049
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
4050
4050
|
padding: 0 8px 0 0;
|
|
4051
4051
|
}
|
|
4052
|
+
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
4053
|
+
margin-right: 20px;
|
|
4054
|
+
}
|
|
4052
4055
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
4053
4056
|
width: 30px;
|
|
4054
4057
|
}
|
|
@@ -1246,7 +1246,6 @@
|
|
|
1246
1246
|
}
|
|
1247
1247
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1248
1248
|
font-weight: 500;
|
|
1249
|
-
margin-left: 15px;
|
|
1250
1249
|
margin-right: auto;
|
|
1251
1250
|
}
|
|
1252
1251
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2126,6 +2125,10 @@
|
|
|
2126
2125
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2127
2126
|
text-align: right;
|
|
2128
2127
|
}
|
|
2128
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2129
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2130
|
+
padding: 8px 8px 8px 0;
|
|
2131
|
+
}
|
|
2129
2132
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2130
2133
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2131
2134
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -3159,13 +3162,6 @@
|
|
|
3159
3162
|
left: 6px;
|
|
3160
3163
|
right: auto;
|
|
3161
3164
|
}
|
|
3162
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3163
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3164
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3165
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3166
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3167
|
-
margin-right: 10px;
|
|
3168
|
-
}
|
|
3169
3165
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3170
3166
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3171
3167
|
margin-left: 8px;
|
|
@@ -3351,6 +3347,10 @@
|
|
|
3351
3347
|
display: none;
|
|
3352
3348
|
}
|
|
3353
3349
|
|
|
3350
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3351
|
+
line-height: 1.4;
|
|
3352
|
+
}
|
|
3353
|
+
|
|
3354
3354
|
@media print {
|
|
3355
3355
|
.e-schedule .e-table-container {
|
|
3356
3356
|
display: block;
|
|
@@ -4095,6 +4095,9 @@
|
|
|
4095
4095
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
4096
4096
|
padding: 0 8px 0 0;
|
|
4097
4097
|
}
|
|
4098
|
+
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
4099
|
+
margin-right: 20px;
|
|
4100
|
+
}
|
|
4098
4101
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
4099
4102
|
width: 30px;
|
|
4100
4103
|
}
|
package/styles/bootstrap5.3.css
CHANGED
|
@@ -1246,7 +1246,6 @@
|
|
|
1246
1246
|
}
|
|
1247
1247
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1248
1248
|
font-weight: 500;
|
|
1249
|
-
margin-left: 15px;
|
|
1250
1249
|
margin-right: auto;
|
|
1251
1250
|
}
|
|
1252
1251
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2126,6 +2125,10 @@
|
|
|
2126
2125
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2127
2126
|
text-align: right;
|
|
2128
2127
|
}
|
|
2128
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2129
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2130
|
+
padding: 8px 8px 8px 0;
|
|
2131
|
+
}
|
|
2129
2132
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2130
2133
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2131
2134
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -3159,13 +3162,6 @@
|
|
|
3159
3162
|
left: 6px;
|
|
3160
3163
|
right: auto;
|
|
3161
3164
|
}
|
|
3162
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3163
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3164
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3165
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3166
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3167
|
-
margin-right: 10px;
|
|
3168
|
-
}
|
|
3169
3165
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3170
3166
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3171
3167
|
margin-left: 8px;
|
|
@@ -3351,6 +3347,10 @@
|
|
|
3351
3347
|
display: none;
|
|
3352
3348
|
}
|
|
3353
3349
|
|
|
3350
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3351
|
+
line-height: 1.4;
|
|
3352
|
+
}
|
|
3353
|
+
|
|
3354
3354
|
@media print {
|
|
3355
3355
|
.e-schedule .e-table-container {
|
|
3356
3356
|
display: block;
|
|
@@ -4762,6 +4762,9 @@
|
|
|
4762
4762
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
4763
4763
|
padding: 0 8px 0 0;
|
|
4764
4764
|
}
|
|
4765
|
+
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
4766
|
+
margin-right: 20px;
|
|
4767
|
+
}
|
|
4765
4768
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
4766
4769
|
width: 30px;
|
|
4767
4770
|
}
|
package/styles/bootstrap5.css
CHANGED
|
@@ -1242,7 +1242,6 @@
|
|
|
1242
1242
|
}
|
|
1243
1243
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1244
1244
|
font-weight: 500;
|
|
1245
|
-
margin-left: 15px;
|
|
1246
1245
|
margin-right: auto;
|
|
1247
1246
|
}
|
|
1248
1247
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2122,6 +2121,10 @@
|
|
|
2122
2121
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2123
2122
|
text-align: right;
|
|
2124
2123
|
}
|
|
2124
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2125
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2126
|
+
padding: 8px 8px 8px 0;
|
|
2127
|
+
}
|
|
2125
2128
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2126
2129
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2127
2130
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -3155,13 +3158,6 @@
|
|
|
3155
3158
|
left: 6px;
|
|
3156
3159
|
right: auto;
|
|
3157
3160
|
}
|
|
3158
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3159
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3160
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3161
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3162
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3163
|
-
margin-right: 10px;
|
|
3164
|
-
}
|
|
3165
3161
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3166
3162
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3167
3163
|
margin-left: 8px;
|
|
@@ -3347,6 +3343,10 @@
|
|
|
3347
3343
|
display: none;
|
|
3348
3344
|
}
|
|
3349
3345
|
|
|
3346
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3347
|
+
line-height: 1.4;
|
|
3348
|
+
}
|
|
3349
|
+
|
|
3350
3350
|
@media print {
|
|
3351
3351
|
.e-schedule .e-table-container {
|
|
3352
3352
|
display: block;
|
|
@@ -4716,6 +4716,9 @@
|
|
|
4716
4716
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
4717
4717
|
padding: 0 8px 0 0;
|
|
4718
4718
|
}
|
|
4719
|
+
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
4720
|
+
margin-right: 20px;
|
|
4721
|
+
}
|
|
4719
4722
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
4720
4723
|
width: 30px;
|
|
4721
4724
|
}
|
|
@@ -1167,7 +1167,6 @@
|
|
|
1167
1167
|
}
|
|
1168
1168
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1169
1169
|
font-weight: 500;
|
|
1170
|
-
margin-left: 15px;
|
|
1171
1170
|
margin-right: auto;
|
|
1172
1171
|
}
|
|
1173
1172
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2047,6 +2046,10 @@
|
|
|
2047
2046
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2048
2047
|
text-align: right;
|
|
2049
2048
|
}
|
|
2049
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2050
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2051
|
+
padding: 5px;
|
|
2052
|
+
}
|
|
2050
2053
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2051
2054
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2052
2055
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -3080,13 +3083,6 @@
|
|
|
3080
3083
|
left: 6px;
|
|
3081
3084
|
right: auto;
|
|
3082
3085
|
}
|
|
3083
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3084
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3085
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3086
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3087
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3088
|
-
margin-right: 10px;
|
|
3089
|
-
}
|
|
3090
3086
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3091
3087
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3092
3088
|
margin-left: 8px;
|
|
@@ -3272,6 +3268,10 @@
|
|
|
3272
3268
|
display: none;
|
|
3273
3269
|
}
|
|
3274
3270
|
|
|
3271
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3272
|
+
line-height: 1.4;
|
|
3273
|
+
}
|
|
3274
|
+
|
|
3275
3275
|
@media print {
|
|
3276
3276
|
.e-schedule .e-table-container {
|
|
3277
3277
|
display: block;
|
|
@@ -3974,6 +3974,9 @@
|
|
|
3974
3974
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
3975
3975
|
padding: 0 8px 0 0;
|
|
3976
3976
|
}
|
|
3977
|
+
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
3978
|
+
margin-right: 20px;
|
|
3979
|
+
}
|
|
3977
3980
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
3978
3981
|
width: 30px;
|
|
3979
3982
|
}
|
|
@@ -4012,7 +4015,7 @@
|
|
|
4012
4015
|
}
|
|
4013
4016
|
.e-recurrenceeditor .e-input-wrapper.e-month-expander-checkbox-wrapper.e-repeat-on-week-selector {
|
|
4014
4017
|
min-width: 30px;
|
|
4015
|
-
margin-bottom:
|
|
4018
|
+
margin-bottom: 23px;
|
|
4016
4019
|
}
|
|
4017
4020
|
.e-recurrenceeditor .e-input-wrapper-side {
|
|
4018
4021
|
float: left;
|
package/styles/fabric-dark.css
CHANGED
|
@@ -1167,7 +1167,6 @@
|
|
|
1167
1167
|
}
|
|
1168
1168
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1169
1169
|
font-weight: 500;
|
|
1170
|
-
margin-left: 15px;
|
|
1171
1170
|
margin-right: auto;
|
|
1172
1171
|
}
|
|
1173
1172
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2047,6 +2046,10 @@
|
|
|
2047
2046
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2048
2047
|
text-align: right;
|
|
2049
2048
|
}
|
|
2049
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2050
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2051
|
+
padding: 5px;
|
|
2052
|
+
}
|
|
2050
2053
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2051
2054
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2052
2055
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -3080,13 +3083,6 @@
|
|
|
3080
3083
|
left: 6px;
|
|
3081
3084
|
right: auto;
|
|
3082
3085
|
}
|
|
3083
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3084
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3085
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3086
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3087
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3088
|
-
margin-right: 10px;
|
|
3089
|
-
}
|
|
3090
3086
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3091
3087
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3092
3088
|
margin-left: 8px;
|
|
@@ -3272,6 +3268,10 @@
|
|
|
3272
3268
|
display: none;
|
|
3273
3269
|
}
|
|
3274
3270
|
|
|
3271
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3272
|
+
line-height: 1.4;
|
|
3273
|
+
}
|
|
3274
|
+
|
|
3275
3275
|
@media print {
|
|
3276
3276
|
.e-schedule .e-table-container {
|
|
3277
3277
|
display: block;
|
|
@@ -4641,6 +4641,9 @@
|
|
|
4641
4641
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
4642
4642
|
padding: 0 8px 0 0;
|
|
4643
4643
|
}
|
|
4644
|
+
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
4645
|
+
margin-right: 20px;
|
|
4646
|
+
}
|
|
4644
4647
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
4645
4648
|
width: 30px;
|
|
4646
4649
|
}
|
|
@@ -4679,7 +4682,7 @@
|
|
|
4679
4682
|
}
|
|
4680
4683
|
.e-recurrenceeditor .e-input-wrapper.e-month-expander-checkbox-wrapper.e-repeat-on-week-selector {
|
|
4681
4684
|
min-width: 30px;
|
|
4682
|
-
margin-bottom:
|
|
4685
|
+
margin-bottom: 23px;
|
|
4683
4686
|
}
|
|
4684
4687
|
.e-recurrenceeditor .e-input-wrapper-side {
|
|
4685
4688
|
float: left;
|
package/styles/fabric-lite.css
CHANGED
|
@@ -1164,7 +1164,6 @@
|
|
|
1164
1164
|
}
|
|
1165
1165
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1166
1166
|
font-weight: 500;
|
|
1167
|
-
margin-left: 15px;
|
|
1168
1167
|
margin-right: auto;
|
|
1169
1168
|
}
|
|
1170
1169
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2044,6 +2043,10 @@
|
|
|
2044
2043
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2045
2044
|
text-align: right;
|
|
2046
2045
|
}
|
|
2046
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2047
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2048
|
+
padding: 5px;
|
|
2049
|
+
}
|
|
2047
2050
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2048
2051
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2049
2052
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -3077,13 +3080,6 @@
|
|
|
3077
3080
|
left: 6px;
|
|
3078
3081
|
right: auto;
|
|
3079
3082
|
}
|
|
3080
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3081
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3082
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3083
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3084
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3085
|
-
margin-right: 10px;
|
|
3086
|
-
}
|
|
3087
3083
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3088
3084
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3089
3085
|
margin-left: 8px;
|
|
@@ -3269,6 +3265,10 @@
|
|
|
3269
3265
|
display: none;
|
|
3270
3266
|
}
|
|
3271
3267
|
|
|
3268
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3269
|
+
line-height: 1.4;
|
|
3270
|
+
}
|
|
3271
|
+
|
|
3272
3272
|
@media print {
|
|
3273
3273
|
.e-schedule .e-table-container {
|
|
3274
3274
|
display: block;
|
|
@@ -3971,6 +3971,9 @@
|
|
|
3971
3971
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
3972
3972
|
padding: 0 8px 0 0;
|
|
3973
3973
|
}
|
|
3974
|
+
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
3975
|
+
margin-right: 20px;
|
|
3976
|
+
}
|
|
3974
3977
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
3975
3978
|
width: 30px;
|
|
3976
3979
|
}
|
|
@@ -4009,7 +4012,7 @@
|
|
|
4009
4012
|
}
|
|
4010
4013
|
.e-recurrenceeditor .e-input-wrapper.e-month-expander-checkbox-wrapper.e-repeat-on-week-selector {
|
|
4011
4014
|
min-width: 30px;
|
|
4012
|
-
margin-bottom:
|
|
4015
|
+
margin-bottom: 23px;
|
|
4013
4016
|
}
|
|
4014
4017
|
.e-recurrenceeditor .e-input-wrapper-side {
|
|
4015
4018
|
float: left;
|
package/styles/fabric.css
CHANGED
|
@@ -1164,7 +1164,6 @@
|
|
|
1164
1164
|
}
|
|
1165
1165
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1166
1166
|
font-weight: 500;
|
|
1167
|
-
margin-left: 15px;
|
|
1168
1167
|
margin-right: auto;
|
|
1169
1168
|
}
|
|
1170
1169
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2044,6 +2043,10 @@
|
|
|
2044
2043
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2045
2044
|
text-align: right;
|
|
2046
2045
|
}
|
|
2046
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2047
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2048
|
+
padding: 5px;
|
|
2049
|
+
}
|
|
2047
2050
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2048
2051
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2049
2052
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -3077,13 +3080,6 @@
|
|
|
3077
3080
|
left: 6px;
|
|
3078
3081
|
right: auto;
|
|
3079
3082
|
}
|
|
3080
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3081
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3082
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3083
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3084
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3085
|
-
margin-right: 10px;
|
|
3086
|
-
}
|
|
3087
3083
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3088
3084
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3089
3085
|
margin-left: 8px;
|
|
@@ -3269,6 +3265,10 @@
|
|
|
3269
3265
|
display: none;
|
|
3270
3266
|
}
|
|
3271
3267
|
|
|
3268
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3269
|
+
line-height: 1.4;
|
|
3270
|
+
}
|
|
3271
|
+
|
|
3272
3272
|
@media print {
|
|
3273
3273
|
.e-schedule .e-table-container {
|
|
3274
3274
|
display: block;
|
|
@@ -4638,6 +4638,9 @@
|
|
|
4638
4638
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
4639
4639
|
padding: 0 8px 0 0;
|
|
4640
4640
|
}
|
|
4641
|
+
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
4642
|
+
margin-right: 20px;
|
|
4643
|
+
}
|
|
4641
4644
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
4642
4645
|
width: 30px;
|
|
4643
4646
|
}
|
|
@@ -4676,7 +4679,7 @@
|
|
|
4676
4679
|
}
|
|
4677
4680
|
.e-recurrenceeditor .e-input-wrapper.e-month-expander-checkbox-wrapper.e-repeat-on-week-selector {
|
|
4678
4681
|
min-width: 30px;
|
|
4679
|
-
margin-bottom:
|
|
4682
|
+
margin-bottom: 23px;
|
|
4680
4683
|
}
|
|
4681
4684
|
.e-recurrenceeditor .e-input-wrapper-side {
|
|
4682
4685
|
float: left;
|
|
@@ -1230,7 +1230,6 @@
|
|
|
1230
1230
|
}
|
|
1231
1231
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1232
1232
|
font-weight: 500;
|
|
1233
|
-
margin-left: 15px;
|
|
1234
1233
|
margin-right: auto;
|
|
1235
1234
|
}
|
|
1236
1235
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2110,6 +2109,10 @@
|
|
|
2110
2109
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2111
2110
|
text-align: right;
|
|
2112
2111
|
}
|
|
2112
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2113
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2114
|
+
padding: 5px;
|
|
2115
|
+
}
|
|
2113
2116
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2114
2117
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2115
2118
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -2572,7 +2575,7 @@
|
|
|
2572
2575
|
width: 440px;
|
|
2573
2576
|
}
|
|
2574
2577
|
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content {
|
|
2575
|
-
padding:
|
|
2578
|
+
padding: 24px;
|
|
2576
2579
|
}
|
|
2577
2580
|
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content button {
|
|
2578
2581
|
margin-bottom: 6px;
|
|
@@ -3143,13 +3146,6 @@
|
|
|
3143
3146
|
left: 6px;
|
|
3144
3147
|
right: auto;
|
|
3145
3148
|
}
|
|
3146
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3147
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3148
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3149
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3150
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3151
|
-
margin-right: 10px;
|
|
3152
|
-
}
|
|
3153
3149
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3154
3150
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3155
3151
|
margin-left: 8px;
|
|
@@ -3335,6 +3331,10 @@
|
|
|
3335
3331
|
display: none;
|
|
3336
3332
|
}
|
|
3337
3333
|
|
|
3334
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3335
|
+
line-height: 1.4;
|
|
3336
|
+
}
|
|
3337
|
+
|
|
3338
3338
|
@media print {
|
|
3339
3339
|
.e-schedule .e-table-container {
|
|
3340
3340
|
display: block;
|
|
@@ -4037,6 +4037,9 @@
|
|
|
4037
4037
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
4038
4038
|
padding: 0 8px 0 0;
|
|
4039
4039
|
}
|
|
4040
|
+
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
4041
|
+
margin-right: 20px;
|
|
4042
|
+
}
|
|
4040
4043
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
4041
4044
|
width: 30px;
|
|
4042
4045
|
}
|
|
@@ -4075,7 +4078,7 @@
|
|
|
4075
4078
|
}
|
|
4076
4079
|
.e-recurrenceeditor .e-input-wrapper.e-month-expander-checkbox-wrapper.e-repeat-on-week-selector {
|
|
4077
4080
|
min-width: 30px;
|
|
4078
|
-
margin-bottom:
|
|
4081
|
+
margin-bottom: 0;
|
|
4079
4082
|
}
|
|
4080
4083
|
.e-recurrenceeditor .e-input-wrapper-side {
|
|
4081
4084
|
float: left;
|