@syncfusion/ej2-schedule 30.2.4 → 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 +132 -43
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +132 -43
- 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 +9 -5
- package/src/schedule/actions/virtual-scroll.js +3 -0
- 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/month.js +9 -7
- package/src/schedule/renderer/vertical-view.js +1 -1
- package/src/schedule/renderer/view-base.d.ts +2 -0
- package/src/schedule/renderer/view-base.js +9 -0
- 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
|
@@ -1192,7 +1192,6 @@
|
|
|
1192
1192
|
}
|
|
1193
1193
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1194
1194
|
font-weight: 500;
|
|
1195
|
-
margin-left: 15px;
|
|
1196
1195
|
margin-right: auto;
|
|
1197
1196
|
}
|
|
1198
1197
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2072,6 +2071,10 @@
|
|
|
2072
2071
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2073
2072
|
text-align: right;
|
|
2074
2073
|
}
|
|
2074
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2075
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2076
|
+
padding: 5px;
|
|
2077
|
+
}
|
|
2075
2078
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2076
2079
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2077
2080
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -3105,13 +3108,6 @@
|
|
|
3105
3108
|
left: 6px;
|
|
3106
3109
|
right: auto;
|
|
3107
3110
|
}
|
|
3108
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3109
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3110
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3111
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3112
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3113
|
-
margin-right: 10px;
|
|
3114
|
-
}
|
|
3115
3111
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3116
3112
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3117
3113
|
margin-left: 8px;
|
|
@@ -3297,6 +3293,10 @@
|
|
|
3297
3293
|
display: none;
|
|
3298
3294
|
}
|
|
3299
3295
|
|
|
3296
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3297
|
+
line-height: 1.4;
|
|
3298
|
+
}
|
|
3299
|
+
|
|
3300
3300
|
@media print {
|
|
3301
3301
|
.e-schedule .e-table-container {
|
|
3302
3302
|
display: block;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -1396,7 +1396,6 @@
|
|
|
1396
1396
|
}
|
|
1397
1397
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1398
1398
|
font-weight: 500;
|
|
1399
|
-
margin-left: 15px;
|
|
1400
1399
|
margin-right: auto;
|
|
1401
1400
|
}
|
|
1402
1401
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2278,6 +2277,10 @@
|
|
|
2278
2277
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2279
2278
|
text-align: right;
|
|
2280
2279
|
}
|
|
2280
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2281
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2282
|
+
padding: 8px 8px 8px 0;
|
|
2283
|
+
}
|
|
2281
2284
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2282
2285
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2283
2286
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -3332,13 +3335,6 @@
|
|
|
3332
3335
|
left: 6px;
|
|
3333
3336
|
right: auto;
|
|
3334
3337
|
}
|
|
3335
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3336
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3337
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3338
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3339
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3340
|
-
margin-right: 10px;
|
|
3341
|
-
}
|
|
3342
3338
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3343
3339
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3344
3340
|
margin-left: 8px;
|
|
@@ -3524,6 +3520,10 @@
|
|
|
3524
3520
|
display: none;
|
|
3525
3521
|
}
|
|
3526
3522
|
|
|
3523
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3524
|
+
line-height: 1.3;
|
|
3525
|
+
}
|
|
3526
|
+
|
|
3527
3527
|
@media print {
|
|
3528
3528
|
.e-schedule .e-table-container {
|
|
3529
3529
|
display: block;
|
|
@@ -1256,7 +1256,6 @@
|
|
|
1256
1256
|
}
|
|
1257
1257
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1258
1258
|
font-weight: 500;
|
|
1259
|
-
margin-left: 15px;
|
|
1260
1259
|
margin-right: auto;
|
|
1261
1260
|
}
|
|
1262
1261
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2136,6 +2135,10 @@
|
|
|
2136
2135
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2137
2136
|
text-align: right;
|
|
2138
2137
|
}
|
|
2138
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2139
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2140
|
+
padding: 5px;
|
|
2141
|
+
}
|
|
2139
2142
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2140
2143
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2141
2144
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -3169,13 +3172,6 @@
|
|
|
3169
3172
|
left: 6px;
|
|
3170
3173
|
right: auto;
|
|
3171
3174
|
}
|
|
3172
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3173
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3174
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3175
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3176
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3177
|
-
margin-right: 10px;
|
|
3178
|
-
}
|
|
3179
3175
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3180
3176
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3181
3177
|
margin-left: 8px;
|
|
@@ -3361,6 +3357,10 @@
|
|
|
3361
3357
|
display: none;
|
|
3362
3358
|
}
|
|
3363
3359
|
|
|
3360
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3361
|
+
line-height: 1.4;
|
|
3362
|
+
}
|
|
3363
|
+
|
|
3364
3364
|
@media print {
|
|
3365
3365
|
.e-schedule .e-table-container {
|
|
3366
3366
|
display: block;
|
|
@@ -1265,7 +1265,6 @@
|
|
|
1265
1265
|
}
|
|
1266
1266
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1267
1267
|
font-weight: 500;
|
|
1268
|
-
margin-left: 15px;
|
|
1269
1268
|
margin-right: auto;
|
|
1270
1269
|
}
|
|
1271
1270
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2145,6 +2144,10 @@
|
|
|
2145
2144
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2146
2145
|
text-align: right;
|
|
2147
2146
|
}
|
|
2147
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2148
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2149
|
+
padding: 5px;
|
|
2150
|
+
}
|
|
2148
2151
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2149
2152
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2150
2153
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -3178,13 +3181,6 @@
|
|
|
3178
3181
|
left: 6px;
|
|
3179
3182
|
right: auto;
|
|
3180
3183
|
}
|
|
3181
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3182
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3183
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3184
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3185
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3186
|
-
margin-right: 10px;
|
|
3187
|
-
}
|
|
3188
3184
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3189
3185
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3190
3186
|
margin-left: 8px;
|
|
@@ -3370,6 +3366,10 @@
|
|
|
3370
3366
|
display: none;
|
|
3371
3367
|
}
|
|
3372
3368
|
|
|
3369
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3370
|
+
line-height: 1.4;
|
|
3371
|
+
}
|
|
3372
|
+
|
|
3373
3373
|
@media print {
|
|
3374
3374
|
.e-schedule .e-table-container {
|
|
3375
3375
|
display: block;
|
|
@@ -1244,7 +1244,6 @@
|
|
|
1244
1244
|
}
|
|
1245
1245
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1246
1246
|
font-weight: 500;
|
|
1247
|
-
margin-left: 15px;
|
|
1248
1247
|
margin-right: auto;
|
|
1249
1248
|
}
|
|
1250
1249
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2124,6 +2123,10 @@
|
|
|
2124
2123
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2125
2124
|
text-align: right;
|
|
2126
2125
|
}
|
|
2126
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2127
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2128
|
+
padding: 5px;
|
|
2129
|
+
}
|
|
2127
2130
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2128
2131
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2129
2132
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -3157,13 +3160,6 @@
|
|
|
3157
3160
|
left: 6px;
|
|
3158
3161
|
right: auto;
|
|
3159
3162
|
}
|
|
3160
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3161
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3162
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3163
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3164
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3165
|
-
margin-right: 10px;
|
|
3166
|
-
}
|
|
3167
3163
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3168
3164
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3169
3165
|
margin-left: 8px;
|
|
@@ -3349,6 +3345,10 @@
|
|
|
3349
3345
|
display: none;
|
|
3350
3346
|
}
|
|
3351
3347
|
|
|
3348
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3349
|
+
line-height: 1.6;
|
|
3350
|
+
}
|
|
3351
|
+
|
|
3352
3352
|
@media print {
|
|
3353
3353
|
.e-schedule .e-table-container {
|
|
3354
3354
|
display: block;
|
|
@@ -1279,7 +1279,6 @@
|
|
|
1279
1279
|
}
|
|
1280
1280
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1281
1281
|
font-weight: 500;
|
|
1282
|
-
margin-left: 15px;
|
|
1283
1282
|
margin-right: auto;
|
|
1284
1283
|
}
|
|
1285
1284
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2159,6 +2158,10 @@
|
|
|
2159
2158
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2160
2159
|
text-align: right;
|
|
2161
2160
|
}
|
|
2161
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2162
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2163
|
+
padding: 5px;
|
|
2164
|
+
}
|
|
2162
2165
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2163
2166
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2164
2167
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -3192,13 +3195,6 @@
|
|
|
3192
3195
|
left: 6px;
|
|
3193
3196
|
right: auto;
|
|
3194
3197
|
}
|
|
3195
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3196
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3197
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3198
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3199
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3200
|
-
margin-right: 10px;
|
|
3201
|
-
}
|
|
3202
3198
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3203
3199
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3204
3200
|
margin-left: 8px;
|
|
@@ -3384,6 +3380,10 @@
|
|
|
3384
3380
|
display: none;
|
|
3385
3381
|
}
|
|
3386
3382
|
|
|
3383
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3384
|
+
line-height: 1.6;
|
|
3385
|
+
}
|
|
3386
|
+
|
|
3387
3387
|
@media print {
|
|
3388
3388
|
.e-schedule .e-table-container {
|
|
3389
3389
|
display: block;
|
|
@@ -1249,7 +1249,6 @@
|
|
|
1249
1249
|
}
|
|
1250
1250
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1251
1251
|
font-weight: 500;
|
|
1252
|
-
margin-left: 15px;
|
|
1253
1252
|
margin-right: auto;
|
|
1254
1253
|
}
|
|
1255
1254
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -2131,6 +2130,10 @@
|
|
|
2131
2130
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2132
2131
|
text-align: right;
|
|
2133
2132
|
}
|
|
2133
|
+
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2134
|
+
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2135
|
+
padding: 8px 8px 8px 0;
|
|
2136
|
+
}
|
|
2134
2137
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2135
2138
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2136
2139
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
@@ -3166,13 +3169,6 @@
|
|
|
3166
3169
|
left: 6px;
|
|
3167
3170
|
right: auto;
|
|
3168
3171
|
}
|
|
3169
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3170
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3171
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
3172
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-description-details,
|
|
3173
|
-
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3174
|
-
margin-right: 10px;
|
|
3175
|
-
}
|
|
3176
3172
|
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3177
3173
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3178
3174
|
margin-left: 8px;
|
|
@@ -3358,6 +3354,10 @@
|
|
|
3358
3354
|
display: none;
|
|
3359
3355
|
}
|
|
3360
3356
|
|
|
3357
|
+
.e-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
3358
|
+
line-height: 1.8;
|
|
3359
|
+
}
|
|
3360
|
+
|
|
3361
3361
|
@media print {
|
|
3362
3362
|
.e-schedule .e-table-container {
|
|
3363
3363
|
display: block;
|