@syncfusion/ej2-schedule 28.2.11 → 29.1.34
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/.gitleaksignore +4 -0
- package/README.md +2 -2
- 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 +518 -146
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +570 -186
- 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/package.json +24 -26
- package/src/recurrence-editor/recurrence-editor-model.d.ts +14 -0
- package/src/recurrence-editor/recurrence-editor.d.ts +12 -0
- package/src/recurrence-editor/recurrence-editor.js +8 -1
- package/src/schedule/actions/action-base.js +4 -1
- package/src/schedule/actions/crud.d.ts +3 -0
- package/src/schedule/actions/crud.js +129 -63
- package/src/schedule/actions/drag.js +3 -0
- package/src/schedule/actions/resize.js +4 -1
- package/src/schedule/actions/virtual-scroll.js +3 -1
- package/src/schedule/base/constant.d.ts +6 -0
- package/src/schedule/base/constant.js +6 -0
- package/src/schedule/base/interface.d.ts +53 -0
- package/src/schedule/base/schedule-model.d.ts +54 -1
- package/src/schedule/base/schedule.d.ts +68 -2
- package/src/schedule/base/schedule.js +67 -0
- package/src/schedule/base/type.d.ts +2 -1
- package/src/schedule/event-renderer/event-base.d.ts +5 -0
- package/src/schedule/event-renderer/event-base.js +123 -27
- package/src/schedule/event-renderer/inline-edit.d.ts +3 -1
- package/src/schedule/event-renderer/inline-edit.js +18 -6
- package/src/schedule/event-renderer/month.d.ts +1 -0
- package/src/schedule/event-renderer/month.js +25 -0
- package/src/schedule/event-renderer/timeline-view.d.ts +1 -1
- package/src/schedule/event-renderer/timeline-view.js +12 -19
- package/src/schedule/event-renderer/vertical-view.js +2 -2
- package/src/schedule/event-renderer/year.js +1 -1
- package/src/schedule/exports/excel-export.js +9 -2
- package/src/schedule/exports/print.d.ts +2 -0
- package/src/schedule/exports/print.js +90 -52
- package/src/schedule/models/views-model.d.ts +32 -0
- package/src/schedule/models/views.d.ts +30 -0
- package/src/schedule/models/views.js +6 -0
- package/src/schedule/popups/event-tooltip.js +18 -0
- package/src/schedule/popups/event-window.d.ts +1 -0
- package/src/schedule/popups/event-window.js +35 -4
- package/src/schedule/popups/quick-popups.js +11 -4
- package/src/schedule/renderer/month.js +3 -1
- package/styles/bds-lite.css +35 -6
- package/styles/bds.css +37 -21
- package/styles/bootstrap-dark-lite.css +46 -17
- package/styles/bootstrap-dark.css +49 -33
- package/styles/bootstrap-lite.css +42 -13
- package/styles/bootstrap.css +44 -28
- package/styles/bootstrap4-lite.css +55 -26
- package/styles/bootstrap4.css +57 -41
- package/styles/bootstrap5-dark-lite.css +128 -99
- package/styles/bootstrap5-dark.css +131 -115
- package/styles/bootstrap5-lite.css +50 -21
- package/styles/bootstrap5.3-lite.css +35 -6
- package/styles/bootstrap5.3.css +37 -21
- package/styles/bootstrap5.css +52 -36
- package/styles/fabric-dark-lite.css +46 -17
- package/styles/fabric-dark.css +49 -33
- package/styles/fabric-lite.css +56 -27
- package/styles/fabric.css +58 -42
- package/styles/fluent-dark-lite.css +39 -10
- package/styles/fluent-dark.css +40 -24
- package/styles/fluent-lite.css +39 -10
- package/styles/fluent.css +40 -24
- package/styles/fluent2-lite.css +35 -6
- package/styles/fluent2.css +38 -22
- package/styles/highcontrast-light-lite.css +53 -24
- package/styles/highcontrast-light.css +56 -40
- package/styles/highcontrast-lite.css +53 -24
- package/styles/highcontrast.css +56 -40
- package/styles/material-dark-lite.css +34 -5
- package/styles/material-dark.css +35 -19
- package/styles/material-lite.css +34 -5
- package/styles/material.css +35 -19
- package/styles/material3-dark-lite.css +36 -7
- package/styles/material3-dark.css +39 -23
- package/styles/material3-lite.css +36 -7
- package/styles/material3.css +39 -23
- package/styles/recurrence-editor/_layout.scss +6 -1
- package/styles/recurrence-editor/bds.css +5 -1
- package/styles/recurrence-editor/bootstrap-dark.css +5 -1
- package/styles/recurrence-editor/bootstrap.css +5 -1
- package/styles/recurrence-editor/bootstrap4.css +5 -1
- package/styles/recurrence-editor/bootstrap5-dark.css +5 -1
- package/styles/recurrence-editor/bootstrap5.3.css +5 -1
- package/styles/recurrence-editor/bootstrap5.css +5 -1
- package/styles/recurrence-editor/fabric-dark.css +5 -1
- package/styles/recurrence-editor/fabric.css +5 -1
- package/styles/recurrence-editor/fluent-dark.css +5 -1
- package/styles/recurrence-editor/fluent.css +5 -1
- package/styles/recurrence-editor/fluent2.css +5 -1
- package/styles/recurrence-editor/highcontrast-light.css +5 -1
- package/styles/recurrence-editor/highcontrast.css +5 -1
- package/styles/recurrence-editor/material-dark.css +5 -1
- package/styles/recurrence-editor/material.css +5 -1
- package/styles/recurrence-editor/material3-dark.css +5 -1
- package/styles/recurrence-editor/material3.css +5 -1
- package/styles/recurrence-editor/tailwind-dark.css +5 -1
- package/styles/recurrence-editor/tailwind.css +5 -1
- package/styles/recurrence-editor/tailwind3.css +5 -1
- package/styles/schedule/_bds-definition.scss +2 -0
- package/styles/schedule/_bigger.scss +2 -17
- package/styles/schedule/_bootstrap-dark-definition.scss +5 -1
- package/styles/schedule/_bootstrap-definition.scss +5 -1
- package/styles/schedule/_bootstrap4-definition.scss +9 -5
- package/styles/schedule/_bootstrap5-definition.scss +5 -1
- package/styles/schedule/_bootstrap5.3-definition.scss +2 -0
- package/styles/schedule/_fabric-dark-definition.scss +2 -0
- package/styles/schedule/_fabric-definition.scss +5 -1
- package/styles/schedule/_fluent-definition.scss +3 -1
- package/styles/schedule/_fluent2-definition.scss +3 -1
- package/styles/schedule/_fusionnew-definition.scss +2 -0
- package/styles/schedule/_highcontrast-definition.scss +6 -2
- package/styles/schedule/_highcontrast-light-definition.scss +6 -2
- package/styles/schedule/_layout.scss +39 -9
- package/styles/schedule/_material-dark-definition.scss +2 -0
- package/styles/schedule/_material-definition.scss +2 -0
- package/styles/schedule/_material3-definition.scss +4 -2
- package/styles/schedule/_tailwind-definition.scss +2 -0
- package/styles/schedule/_tailwind3-definition.scss +4 -2
- package/styles/schedule/bds.css +32 -20
- package/styles/schedule/bootstrap-dark.css +44 -32
- package/styles/schedule/bootstrap.css +39 -27
- package/styles/schedule/bootstrap4.css +52 -40
- package/styles/schedule/bootstrap5-dark.css +126 -114
- package/styles/schedule/bootstrap5.3.css +32 -20
- package/styles/schedule/bootstrap5.css +47 -35
- package/styles/schedule/fabric-dark.css +44 -32
- package/styles/schedule/fabric.css +53 -41
- package/styles/schedule/fluent-dark.css +35 -23
- package/styles/schedule/fluent.css +35 -23
- package/styles/schedule/fluent2.css +33 -21
- package/styles/schedule/highcontrast-light.css +51 -39
- package/styles/schedule/highcontrast.css +51 -39
- package/styles/schedule/material-dark.css +30 -18
- package/styles/schedule/material.css +30 -18
- package/styles/schedule/material3-dark.css +34 -22
- package/styles/schedule/material3.css +34 -22
- package/styles/schedule/tailwind-dark.css +49 -37
- package/styles/schedule/tailwind.css +32 -20
- package/styles/schedule/tailwind3.css +34 -22
- package/styles/tailwind-dark-lite.css +52 -23
- package/styles/tailwind-dark.css +54 -38
- package/styles/tailwind-lite.css +35 -6
- package/styles/tailwind.css +37 -21
- package/styles/tailwind3-lite.css +36 -7
- package/styles/tailwind3.css +39 -23
package/styles/bds-lite.css
CHANGED
|
@@ -514,6 +514,9 @@
|
|
|
514
514
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator {
|
|
515
515
|
border-right: 1px solid var(--color-sf-border-secondary);
|
|
516
516
|
}
|
|
517
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn.e-schedule-date-range-tbtn {
|
|
518
|
+
width: auto;
|
|
519
|
+
}
|
|
517
520
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn .e-tbar-btn-text {
|
|
518
521
|
font-size: 14px;
|
|
519
522
|
text-transform: initial;
|
|
@@ -1458,6 +1461,10 @@
|
|
|
1458
1461
|
overflow: hidden;
|
|
1459
1462
|
opacity: 0;
|
|
1460
1463
|
}
|
|
1464
|
+
.e-schedule .e-month-view .e-month-event-table {
|
|
1465
|
+
position: absolute;
|
|
1466
|
+
top: 0;
|
|
1467
|
+
}
|
|
1461
1468
|
.e-schedule .e-month-view .e-content-wrap table tr:last-child td {
|
|
1462
1469
|
border-bottom-width: 0;
|
|
1463
1470
|
}
|
|
@@ -1644,7 +1651,7 @@
|
|
|
1644
1651
|
-ms-flex: 0 25%;
|
|
1645
1652
|
flex: 0 25%;
|
|
1646
1653
|
max-width: 100%;
|
|
1647
|
-
min-width:
|
|
1654
|
+
min-width: 300px;
|
|
1648
1655
|
padding: 10px;
|
|
1649
1656
|
}
|
|
1650
1657
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-header .e-title {
|
|
@@ -2501,6 +2508,9 @@
|
|
|
2501
2508
|
.e-schedule .e-agenda-view {
|
|
2502
2509
|
background: var(--color-sf-bg-primary);
|
|
2503
2510
|
}
|
|
2511
|
+
.e-schedule .e-agenda-view .e-agenda-load-more {
|
|
2512
|
+
font-size: 14px;
|
|
2513
|
+
}
|
|
2504
2514
|
.e-schedule .e-agenda-view .e-content-wrap table td:first-child,
|
|
2505
2515
|
.e-schedule .e-agenda-view .e-date-column {
|
|
2506
2516
|
vertical-align: top;
|
|
@@ -2730,12 +2740,19 @@
|
|
|
2730
2740
|
visibility: hidden;
|
|
2731
2741
|
}
|
|
2732
2742
|
|
|
2743
|
+
.e-field-error-message {
|
|
2744
|
+
display: block;
|
|
2745
|
+
}
|
|
2746
|
+
|
|
2733
2747
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2734
|
-
width:
|
|
2748
|
+
width: 440px;
|
|
2735
2749
|
}
|
|
2736
2750
|
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content {
|
|
2737
2751
|
padding: 8px 18px;
|
|
2738
2752
|
}
|
|
2753
|
+
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content button {
|
|
2754
|
+
margin-bottom: 6px;
|
|
2755
|
+
}
|
|
2739
2756
|
@media screen and (max-width: 767px) {
|
|
2740
2757
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2741
2758
|
width: 289px;
|
|
@@ -2764,9 +2781,8 @@
|
|
|
2764
2781
|
.e-dialog.e-quick-dialog .e-footer-content {
|
|
2765
2782
|
border-top: none;
|
|
2766
2783
|
}
|
|
2767
|
-
.e-dialog.e-quick-dialog .e-
|
|
2768
|
-
-
|
|
2769
|
-
box-shadow: none;
|
|
2784
|
+
.e-dialog.e-quick-dialog .e-footer-content button {
|
|
2785
|
+
margin-bottom: 6px;
|
|
2770
2786
|
}
|
|
2771
2787
|
.e-dialog.e-quick-dialog.e-rtl {
|
|
2772
2788
|
text-align: right;
|
|
@@ -2909,6 +2925,11 @@
|
|
|
2909
2925
|
float: right;
|
|
2910
2926
|
}
|
|
2911
2927
|
|
|
2928
|
+
.e-editor-content-item-template {
|
|
2929
|
+
text-overflow: ellipsis;
|
|
2930
|
+
overflow: hidden;
|
|
2931
|
+
}
|
|
2932
|
+
|
|
2912
2933
|
/*! schedule event window for smaller viewports*/
|
|
2913
2934
|
@media screen and (max-width: 320px) {
|
|
2914
2935
|
.e-schedule-dialog.e-popup.e-popup-open {
|
|
@@ -3197,6 +3218,10 @@
|
|
|
3197
3218
|
.e-quick-popup-wrapper .e-event-popup .e-popup-content {
|
|
3198
3219
|
padding: 0 18px 12px;
|
|
3199
3220
|
}
|
|
3221
|
+
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-popup-header-title-text,
|
|
3222
|
+
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-popup-header-title-text {
|
|
3223
|
+
display: none;
|
|
3224
|
+
}
|
|
3200
3225
|
.e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper,
|
|
3201
3226
|
.e-quick-popup-wrapper .e-event-popup .e-header-icon-wrapper {
|
|
3202
3227
|
display: -webkit-box;
|
|
@@ -4220,6 +4245,10 @@
|
|
|
4220
4245
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
|
|
4221
4246
|
display: none;
|
|
4222
4247
|
}
|
|
4248
|
+
.e-recurrenceeditor .e-input-wrapper.e-month-expander-checkbox-wrapper.e-repeat-on-week-selector {
|
|
4249
|
+
min-width: 30px;
|
|
4250
|
+
margin-bottom: 18px;
|
|
4251
|
+
}
|
|
4223
4252
|
.e-recurrenceeditor .e-input-wrapper-side {
|
|
4224
4253
|
float: left;
|
|
4225
4254
|
padding: 16px 20px 0;
|
|
@@ -4391,7 +4420,7 @@
|
|
|
4391
4420
|
width: 65%;
|
|
4392
4421
|
}
|
|
4393
4422
|
.e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
|
|
4394
|
-
padding-left:
|
|
4423
|
+
padding-left: 59px;
|
|
4395
4424
|
}
|
|
4396
4425
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4397
4426
|
padding-right: 0;
|
package/styles/bds.css
CHANGED
|
@@ -514,6 +514,9 @@
|
|
|
514
514
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator {
|
|
515
515
|
border-right: 1px solid var(--color-sf-border-secondary);
|
|
516
516
|
}
|
|
517
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn.e-schedule-date-range-tbtn {
|
|
518
|
+
width: auto;
|
|
519
|
+
}
|
|
517
520
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn .e-tbar-btn-text {
|
|
518
521
|
font-size: 14px;
|
|
519
522
|
text-transform: initial;
|
|
@@ -1458,6 +1461,10 @@
|
|
|
1458
1461
|
overflow: hidden;
|
|
1459
1462
|
opacity: 0;
|
|
1460
1463
|
}
|
|
1464
|
+
.e-schedule .e-month-view .e-month-event-table {
|
|
1465
|
+
position: absolute;
|
|
1466
|
+
top: 0;
|
|
1467
|
+
}
|
|
1461
1468
|
.e-schedule .e-month-view .e-content-wrap table tr:last-child td {
|
|
1462
1469
|
border-bottom-width: 0;
|
|
1463
1470
|
}
|
|
@@ -1644,7 +1651,7 @@
|
|
|
1644
1651
|
-ms-flex: 0 25%;
|
|
1645
1652
|
flex: 0 25%;
|
|
1646
1653
|
max-width: 100%;
|
|
1647
|
-
min-width:
|
|
1654
|
+
min-width: 300px;
|
|
1648
1655
|
padding: 10px;
|
|
1649
1656
|
}
|
|
1650
1657
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-header .e-title {
|
|
@@ -2501,6 +2508,9 @@
|
|
|
2501
2508
|
.e-schedule .e-agenda-view {
|
|
2502
2509
|
background: var(--color-sf-bg-primary);
|
|
2503
2510
|
}
|
|
2511
|
+
.e-schedule .e-agenda-view .e-agenda-load-more {
|
|
2512
|
+
font-size: 14px;
|
|
2513
|
+
}
|
|
2504
2514
|
.e-schedule .e-agenda-view .e-content-wrap table td:first-child,
|
|
2505
2515
|
.e-schedule .e-agenda-view .e-date-column {
|
|
2506
2516
|
vertical-align: top;
|
|
@@ -2730,12 +2740,19 @@
|
|
|
2730
2740
|
visibility: hidden;
|
|
2731
2741
|
}
|
|
2732
2742
|
|
|
2743
|
+
.e-field-error-message {
|
|
2744
|
+
display: block;
|
|
2745
|
+
}
|
|
2746
|
+
|
|
2733
2747
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2734
|
-
width:
|
|
2748
|
+
width: 440px;
|
|
2735
2749
|
}
|
|
2736
2750
|
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content {
|
|
2737
2751
|
padding: 8px 18px;
|
|
2738
2752
|
}
|
|
2753
|
+
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content button {
|
|
2754
|
+
margin-bottom: 6px;
|
|
2755
|
+
}
|
|
2739
2756
|
@media screen and (max-width: 767px) {
|
|
2740
2757
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2741
2758
|
width: 289px;
|
|
@@ -2764,9 +2781,8 @@
|
|
|
2764
2781
|
.e-dialog.e-quick-dialog .e-footer-content {
|
|
2765
2782
|
border-top: none;
|
|
2766
2783
|
}
|
|
2767
|
-
.e-dialog.e-quick-dialog .e-
|
|
2768
|
-
-
|
|
2769
|
-
box-shadow: none;
|
|
2784
|
+
.e-dialog.e-quick-dialog .e-footer-content button {
|
|
2785
|
+
margin-bottom: 6px;
|
|
2770
2786
|
}
|
|
2771
2787
|
.e-dialog.e-quick-dialog.e-rtl {
|
|
2772
2788
|
text-align: right;
|
|
@@ -2909,6 +2925,11 @@
|
|
|
2909
2925
|
float: right;
|
|
2910
2926
|
}
|
|
2911
2927
|
|
|
2928
|
+
.e-editor-content-item-template {
|
|
2929
|
+
text-overflow: ellipsis;
|
|
2930
|
+
overflow: hidden;
|
|
2931
|
+
}
|
|
2932
|
+
|
|
2912
2933
|
/*! schedule event window for smaller viewports*/
|
|
2913
2934
|
@media screen and (max-width: 320px) {
|
|
2914
2935
|
.e-schedule-dialog.e-popup.e-popup-open {
|
|
@@ -3197,6 +3218,10 @@
|
|
|
3197
3218
|
.e-quick-popup-wrapper .e-event-popup .e-popup-content {
|
|
3198
3219
|
padding: 0 18px 12px;
|
|
3199
3220
|
}
|
|
3221
|
+
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-popup-header-title-text,
|
|
3222
|
+
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-popup-header-title-text {
|
|
3223
|
+
display: none;
|
|
3224
|
+
}
|
|
3200
3225
|
.e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper,
|
|
3201
3226
|
.e-quick-popup-wrapper .e-event-popup .e-header-icon-wrapper {
|
|
3202
3227
|
display: -webkit-box;
|
|
@@ -4229,7 +4254,7 @@
|
|
|
4229
4254
|
}
|
|
4230
4255
|
.e-bigger .e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar,
|
|
4231
4256
|
.e-bigger.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
|
|
4232
|
-
min-width:
|
|
4257
|
+
min-width: 345px;
|
|
4233
4258
|
}
|
|
4234
4259
|
|
|
4235
4260
|
/*! schedule event tooltip */
|
|
@@ -4240,7 +4265,7 @@
|
|
|
4240
4265
|
}
|
|
4241
4266
|
|
|
4242
4267
|
.e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
4243
|
-
width:
|
|
4268
|
+
width: 520px;
|
|
4244
4269
|
}
|
|
4245
4270
|
|
|
4246
4271
|
.e-bigger .e-dialog.e-quick-dialog {
|
|
@@ -4265,16 +4290,6 @@
|
|
|
4265
4290
|
padding-bottom: 12px;
|
|
4266
4291
|
position: relative;
|
|
4267
4292
|
}
|
|
4268
|
-
.e-bigger .e-schedule-dialog .e-event-cancel,
|
|
4269
|
-
.e-bigger .e-schedule-dialog .e-event-delete {
|
|
4270
|
-
border: none;
|
|
4271
|
-
-webkit-box-shadow: none;
|
|
4272
|
-
box-shadow: none;
|
|
4273
|
-
}
|
|
4274
|
-
.e-bigger .e-schedule-dialog .e-footer-content .e-btn.e-event-delete {
|
|
4275
|
-
float: left;
|
|
4276
|
-
margin-left: 0;
|
|
4277
|
-
}
|
|
4278
4293
|
.e-bigger .e-schedule-dialog .e-subject-container,
|
|
4279
4294
|
.e-bigger .e-schedule-dialog .e-start-container,
|
|
4280
4295
|
.e-bigger .e-schedule-dialog .e-start-time-zone-container,
|
|
@@ -4370,9 +4385,6 @@
|
|
|
4370
4385
|
padding-left: 0;
|
|
4371
4386
|
padding-right: 12px;
|
|
4372
4387
|
}
|
|
4373
|
-
.e-bigger .e-schedule-dialog.e-rtl .e-event-delete {
|
|
4374
|
-
float: right;
|
|
4375
|
-
}
|
|
4376
4388
|
|
|
4377
4389
|
/*! schedule quick popup */
|
|
4378
4390
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
@@ -4896,6 +4908,10 @@
|
|
|
4896
4908
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
|
|
4897
4909
|
display: none;
|
|
4898
4910
|
}
|
|
4911
|
+
.e-recurrenceeditor .e-input-wrapper.e-month-expander-checkbox-wrapper.e-repeat-on-week-selector {
|
|
4912
|
+
min-width: 30px;
|
|
4913
|
+
margin-bottom: 18px;
|
|
4914
|
+
}
|
|
4899
4915
|
.e-recurrenceeditor .e-input-wrapper-side {
|
|
4900
4916
|
float: left;
|
|
4901
4917
|
padding: 16px 20px 0;
|
|
@@ -5067,7 +5083,7 @@
|
|
|
5067
5083
|
width: 65%;
|
|
5068
5084
|
}
|
|
5069
5085
|
.e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
|
|
5070
|
-
padding-left:
|
|
5086
|
+
padding-left: 59px;
|
|
5071
5087
|
}
|
|
5072
5088
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
5073
5089
|
padding-right: 0;
|
|
@@ -253,7 +253,7 @@
|
|
|
253
253
|
}
|
|
254
254
|
.e-schedule .e-schedule-toolbar .e-active-view .e-tbar-btn-text,
|
|
255
255
|
.e-schedule .e-schedule-toolbar .e-active-view .e-icons {
|
|
256
|
-
color:
|
|
256
|
+
color: rgb(61.5, 151.8, 255);
|
|
257
257
|
}
|
|
258
258
|
.e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
|
|
259
259
|
cursor: pointer;
|
|
@@ -296,6 +296,9 @@
|
|
|
296
296
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator {
|
|
297
297
|
border-right: 1px solid #505050;
|
|
298
298
|
}
|
|
299
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn.e-schedule-date-range-tbtn {
|
|
300
|
+
width: auto;
|
|
301
|
+
}
|
|
299
302
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn .e-tbar-btn-text {
|
|
300
303
|
font-size: 16px;
|
|
301
304
|
text-transform: initial;
|
|
@@ -1240,6 +1243,10 @@
|
|
|
1240
1243
|
overflow: hidden;
|
|
1241
1244
|
opacity: 0;
|
|
1242
1245
|
}
|
|
1246
|
+
.e-schedule .e-month-view .e-month-event-table {
|
|
1247
|
+
position: absolute;
|
|
1248
|
+
top: 0;
|
|
1249
|
+
}
|
|
1243
1250
|
.e-schedule .e-month-view .e-content-wrap table tr:last-child td {
|
|
1244
1251
|
border-bottom-width: 0;
|
|
1245
1252
|
}
|
|
@@ -1426,7 +1433,7 @@
|
|
|
1426
1433
|
-ms-flex: 0 25%;
|
|
1427
1434
|
flex: 0 25%;
|
|
1428
1435
|
max-width: 100%;
|
|
1429
|
-
min-width:
|
|
1436
|
+
min-width: 300px;
|
|
1430
1437
|
padding: 10px;
|
|
1431
1438
|
}
|
|
1432
1439
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-header .e-title {
|
|
@@ -1522,7 +1529,7 @@
|
|
|
1522
1529
|
}
|
|
1523
1530
|
.e-schedule .e-timeline-year-view .e-resource-left-td.e-current-day,
|
|
1524
1531
|
.e-schedule .e-timeline-year-view .e-date-header-wrap table td.e-current-day {
|
|
1525
|
-
color:
|
|
1532
|
+
color: rgb(61.5, 151.8, 255);
|
|
1526
1533
|
}
|
|
1527
1534
|
.e-schedule .e-timeline-year-view .e-resource-text {
|
|
1528
1535
|
color: #f0f0f0;
|
|
@@ -1607,7 +1614,7 @@
|
|
|
1607
1614
|
color: #f0f0f0;
|
|
1608
1615
|
}
|
|
1609
1616
|
.e-schedule .e-timeline-year-view .e-month-header.e-current-day {
|
|
1610
|
-
color:
|
|
1617
|
+
color: rgb(61.5, 151.8, 255);
|
|
1611
1618
|
}
|
|
1612
1619
|
.e-schedule .e-timeline-year-view .e-left-indent,
|
|
1613
1620
|
.e-schedule .e-timeline-year-view .e-header-cells {
|
|
@@ -2283,6 +2290,9 @@
|
|
|
2283
2290
|
.e-schedule .e-agenda-view {
|
|
2284
2291
|
background: #1a1a1a;
|
|
2285
2292
|
}
|
|
2293
|
+
.e-schedule .e-agenda-view .e-agenda-load-more {
|
|
2294
|
+
font-size: 14px;
|
|
2295
|
+
}
|
|
2286
2296
|
.e-schedule .e-agenda-view .e-content-wrap table td:first-child,
|
|
2287
2297
|
.e-schedule .e-agenda-view .e-date-column {
|
|
2288
2298
|
vertical-align: top;
|
|
@@ -2317,7 +2327,7 @@
|
|
|
2317
2327
|
font-size: 13px;
|
|
2318
2328
|
}
|
|
2319
2329
|
.e-schedule .e-agenda-view .e-day-date-header.e-current-day {
|
|
2320
|
-
color:
|
|
2330
|
+
color: rgb(61.5, 151.8, 255);
|
|
2321
2331
|
}
|
|
2322
2332
|
.e-schedule .e-agenda-view .e-day-border {
|
|
2323
2333
|
border-bottom: 1px solid #505050;
|
|
@@ -2512,12 +2522,19 @@
|
|
|
2512
2522
|
visibility: hidden;
|
|
2513
2523
|
}
|
|
2514
2524
|
|
|
2525
|
+
.e-field-error-message {
|
|
2526
|
+
display: block;
|
|
2527
|
+
}
|
|
2528
|
+
|
|
2515
2529
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2516
|
-
width:
|
|
2530
|
+
width: 440px;
|
|
2517
2531
|
}
|
|
2518
2532
|
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content {
|
|
2519
2533
|
padding: 15px;
|
|
2520
2534
|
}
|
|
2535
|
+
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content button {
|
|
2536
|
+
margin-bottom: 6px;
|
|
2537
|
+
}
|
|
2521
2538
|
@media screen and (max-width: 767px) {
|
|
2522
2539
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2523
2540
|
width: 289px;
|
|
@@ -2546,9 +2563,8 @@
|
|
|
2546
2563
|
.e-dialog.e-quick-dialog .e-footer-content {
|
|
2547
2564
|
border-top: none;
|
|
2548
2565
|
}
|
|
2549
|
-
.e-dialog.e-quick-dialog .e-
|
|
2550
|
-
-
|
|
2551
|
-
box-shadow: none;
|
|
2566
|
+
.e-dialog.e-quick-dialog .e-footer-content button {
|
|
2567
|
+
margin-bottom: 6px;
|
|
2552
2568
|
}
|
|
2553
2569
|
.e-dialog.e-quick-dialog.e-rtl {
|
|
2554
2570
|
text-align: right;
|
|
@@ -2691,6 +2707,11 @@
|
|
|
2691
2707
|
float: right;
|
|
2692
2708
|
}
|
|
2693
2709
|
|
|
2710
|
+
.e-editor-content-item-template {
|
|
2711
|
+
text-overflow: ellipsis;
|
|
2712
|
+
overflow: hidden;
|
|
2713
|
+
}
|
|
2714
|
+
|
|
2694
2715
|
/*! schedule event window for smaller viewports*/
|
|
2695
2716
|
@media screen and (max-width: 320px) {
|
|
2696
2717
|
.e-schedule-dialog.e-popup.e-popup-open {
|
|
@@ -2979,6 +3000,10 @@
|
|
|
2979
3000
|
.e-quick-popup-wrapper .e-event-popup .e-popup-content {
|
|
2980
3001
|
padding: 0 18px 16px 26px;
|
|
2981
3002
|
}
|
|
3003
|
+
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-popup-header-title-text,
|
|
3004
|
+
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-popup-header-title-text {
|
|
3005
|
+
display: none;
|
|
3006
|
+
}
|
|
2982
3007
|
.e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper,
|
|
2983
3008
|
.e-quick-popup-wrapper .e-event-popup .e-header-icon-wrapper {
|
|
2984
3009
|
display: -webkit-box;
|
|
@@ -3313,7 +3338,7 @@
|
|
|
3313
3338
|
width: calc(100% - 25px);
|
|
3314
3339
|
}
|
|
3315
3340
|
.e-more-popup-wrapper .e-more-event-date-header .e-current-date {
|
|
3316
|
-
color:
|
|
3341
|
+
color: rgb(61.5, 151.8, 255);
|
|
3317
3342
|
}
|
|
3318
3343
|
.e-more-popup-wrapper .e-header-day {
|
|
3319
3344
|
color: #f0f0f0;
|
|
@@ -3506,7 +3531,7 @@
|
|
|
3506
3531
|
background: #1a1a1a;
|
|
3507
3532
|
}
|
|
3508
3533
|
.e-schedule .e-vertical-view .e-header-cells.e-current-day {
|
|
3509
|
-
color:
|
|
3534
|
+
color: rgb(61.5, 151.8, 255);
|
|
3510
3535
|
font-weight: normal;
|
|
3511
3536
|
}
|
|
3512
3537
|
.e-schedule .e-vertical-view .e-work-cells {
|
|
@@ -3530,7 +3555,7 @@
|
|
|
3530
3555
|
background: #1a1a1a;
|
|
3531
3556
|
}
|
|
3532
3557
|
.e-schedule .e-vertical-view .e-all-day-cells.e-current-day {
|
|
3533
|
-
color:
|
|
3558
|
+
color: rgb(61.5, 151.8, 255);
|
|
3534
3559
|
}
|
|
3535
3560
|
.e-schedule .e-vertical-view .e-all-day-cells.e-selected-cell {
|
|
3536
3561
|
background: #484848;
|
|
@@ -3550,7 +3575,7 @@
|
|
|
3550
3575
|
}
|
|
3551
3576
|
.e-schedule .e-vertical-view .e-clone-time-indicator,
|
|
3552
3577
|
.e-schedule .e-vertical-view .e-current-time {
|
|
3553
|
-
color:
|
|
3578
|
+
color: rgb(61.5, 151.8, 255);
|
|
3554
3579
|
}
|
|
3555
3580
|
.e-schedule .e-vertical-view .e-current-timeline {
|
|
3556
3581
|
border-top: 1px solid #0070f0;
|
|
@@ -3578,7 +3603,7 @@
|
|
|
3578
3603
|
}
|
|
3579
3604
|
.e-schedule .e-month-view .e-date-header-wrap table td.e-current-day,
|
|
3580
3605
|
.e-schedule .e-month-agenda-view .e-date-header-wrap table td.e-current-day {
|
|
3581
|
-
color:
|
|
3606
|
+
color: rgb(61.5, 151.8, 255);
|
|
3582
3607
|
font-weight: normal;
|
|
3583
3608
|
}
|
|
3584
3609
|
.e-schedule .e-month-view .e-work-cells,
|
|
@@ -3660,7 +3685,7 @@
|
|
|
3660
3685
|
}
|
|
3661
3686
|
.e-schedule .e-timeline-view .e-date-header-wrap table td.e-current-day,
|
|
3662
3687
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table td.e-current-day {
|
|
3663
|
-
color:
|
|
3688
|
+
color: rgb(61.5, 151.8, 255);
|
|
3664
3689
|
font-weight: normal;
|
|
3665
3690
|
}
|
|
3666
3691
|
.e-schedule .e-timeline-view .e-work-cells,
|
|
@@ -3719,7 +3744,7 @@
|
|
|
3719
3744
|
}
|
|
3720
3745
|
.e-schedule .e-timeline-view .e-clone-time-indicator,
|
|
3721
3746
|
.e-schedule .e-timeline-view .e-current-time {
|
|
3722
|
-
color:
|
|
3747
|
+
color: rgb(61.5, 151.8, 255);
|
|
3723
3748
|
font-size: 11px;
|
|
3724
3749
|
}
|
|
3725
3750
|
.e-schedule .e-timeline-view .e-current-timeline {
|
|
@@ -4002,6 +4027,10 @@
|
|
|
4002
4027
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
|
|
4003
4028
|
display: none;
|
|
4004
4029
|
}
|
|
4030
|
+
.e-recurrenceeditor .e-input-wrapper.e-month-expander-checkbox-wrapper.e-repeat-on-week-selector {
|
|
4031
|
+
min-width: 30px;
|
|
4032
|
+
margin-bottom: 18px;
|
|
4033
|
+
}
|
|
4005
4034
|
.e-recurrenceeditor .e-input-wrapper-side {
|
|
4006
4035
|
float: left;
|
|
4007
4036
|
padding: 16px 20px 0;
|
|
@@ -4173,7 +4202,7 @@
|
|
|
4173
4202
|
width: 65%;
|
|
4174
4203
|
}
|
|
4175
4204
|
.e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
|
|
4176
|
-
padding-left:
|
|
4205
|
+
padding-left: 59px;
|
|
4177
4206
|
}
|
|
4178
4207
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4179
4208
|
padding-right: 0;
|