@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
|
@@ -263,6 +263,9 @@
|
|
|
263
263
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator {
|
|
264
264
|
border-right: 1px solid #a6a6a6;
|
|
265
265
|
}
|
|
266
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn.e-schedule-date-range-tbtn {
|
|
267
|
+
width: auto;
|
|
268
|
+
}
|
|
266
269
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn .e-tbar-btn-text {
|
|
267
270
|
font-size: 16px;
|
|
268
271
|
text-transform: initial;
|
|
@@ -691,7 +694,7 @@
|
|
|
691
694
|
}
|
|
692
695
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment {
|
|
693
696
|
background: #0078d6;
|
|
694
|
-
border: 1px solid
|
|
697
|
+
border: 1px solid rgb(163, 214.5887850467, 255);
|
|
695
698
|
border-radius: 2px;
|
|
696
699
|
color: #fff;
|
|
697
700
|
display: -webkit-box;
|
|
@@ -947,7 +950,7 @@
|
|
|
947
950
|
overflow: hidden;
|
|
948
951
|
}
|
|
949
952
|
.e-schedule .e-vertical-view .e-date-header-wrap.e-all-day-scroll {
|
|
950
|
-
border-bottom: 1px solid
|
|
953
|
+
border-bottom: 1px solid rgb(163, 214.5887850467, 255);
|
|
951
954
|
overflow-y: auto;
|
|
952
955
|
}
|
|
953
956
|
.e-schedule .e-vertical-view .e-date-header-wrap.e-all-day-scroll .e-header-row .e-resource-cells {
|
|
@@ -983,7 +986,7 @@
|
|
|
983
986
|
}
|
|
984
987
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment {
|
|
985
988
|
background: #0078d6;
|
|
986
|
-
border: 1px solid
|
|
989
|
+
border: 1px solid rgb(163, 214.5887850467, 255);
|
|
987
990
|
border-radius: 2px;
|
|
988
991
|
color: #fff;
|
|
989
992
|
display: -webkit-box;
|
|
@@ -1038,7 +1041,7 @@
|
|
|
1038
1041
|
}
|
|
1039
1042
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment {
|
|
1040
1043
|
background: #0078d6;
|
|
1041
|
-
border: 1px solid
|
|
1044
|
+
border: 1px solid rgb(163, 214.5887850467, 255);
|
|
1042
1045
|
border-radius: 2px;
|
|
1043
1046
|
color: #fff;
|
|
1044
1047
|
overflow: hidden;
|
|
@@ -1207,6 +1210,10 @@
|
|
|
1207
1210
|
overflow: hidden;
|
|
1208
1211
|
opacity: 0;
|
|
1209
1212
|
}
|
|
1213
|
+
.e-schedule .e-month-view .e-month-event-table {
|
|
1214
|
+
position: absolute;
|
|
1215
|
+
top: 0;
|
|
1216
|
+
}
|
|
1210
1217
|
.e-schedule .e-month-view .e-content-wrap table tr:last-child td {
|
|
1211
1218
|
border-bottom-width: 0;
|
|
1212
1219
|
}
|
|
@@ -1295,7 +1302,7 @@
|
|
|
1295
1302
|
}
|
|
1296
1303
|
.e-schedule .e-month-view .e-appointment {
|
|
1297
1304
|
background: #0078d6;
|
|
1298
|
-
border: 1px solid
|
|
1305
|
+
border: 1px solid rgb(163, 214.5887850467, 255);
|
|
1299
1306
|
border-radius: 2px;
|
|
1300
1307
|
color: #fff;
|
|
1301
1308
|
display: -webkit-box;
|
|
@@ -1393,7 +1400,7 @@
|
|
|
1393
1400
|
-ms-flex: 0 25%;
|
|
1394
1401
|
flex: 0 25%;
|
|
1395
1402
|
max-width: 100%;
|
|
1396
|
-
min-width:
|
|
1403
|
+
min-width: 300px;
|
|
1397
1404
|
padding: 10px;
|
|
1398
1405
|
}
|
|
1399
1406
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-header .e-title {
|
|
@@ -1623,7 +1630,7 @@
|
|
|
1623
1630
|
}
|
|
1624
1631
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment {
|
|
1625
1632
|
background: #0078d6;
|
|
1626
|
-
border: 1px solid
|
|
1633
|
+
border: 1px solid rgb(163, 214.5887850467, 255);
|
|
1627
1634
|
border-radius: 2px;
|
|
1628
1635
|
color: #fff;
|
|
1629
1636
|
display: -webkit-box;
|
|
@@ -1859,7 +1866,7 @@
|
|
|
1859
1866
|
.e-schedule .e-timeline-view .e-appointment,
|
|
1860
1867
|
.e-schedule .e-timeline-month-view .e-appointment {
|
|
1861
1868
|
background: #0078d6;
|
|
1862
|
-
border: 1px solid
|
|
1869
|
+
border: 1px solid rgb(163, 214.5887850467, 255);
|
|
1863
1870
|
border-radius: 2px;
|
|
1864
1871
|
color: #fff;
|
|
1865
1872
|
display: -webkit-box;
|
|
@@ -2153,7 +2160,7 @@
|
|
|
2153
2160
|
background: #eaeaea;
|
|
2154
2161
|
}
|
|
2155
2162
|
.e-schedule .e-month-agenda-view .e-appointment.e-appointment-border, .e-schedule .e-month-agenda-view .e-appointment:focus {
|
|
2156
|
-
background:
|
|
2163
|
+
background: rgb(183.4, 223.5495327103, 255);
|
|
2157
2164
|
}
|
|
2158
2165
|
.e-schedule .e-month-agenda-view .e-appointment.e-template {
|
|
2159
2166
|
display: -webkit-inline-box;
|
|
@@ -2250,6 +2257,9 @@
|
|
|
2250
2257
|
.e-schedule .e-agenda-view {
|
|
2251
2258
|
background: #fff;
|
|
2252
2259
|
}
|
|
2260
|
+
.e-schedule .e-agenda-view .e-agenda-load-more {
|
|
2261
|
+
font-size: 14px;
|
|
2262
|
+
}
|
|
2253
2263
|
.e-schedule .e-agenda-view .e-content-wrap table td:first-child,
|
|
2254
2264
|
.e-schedule .e-agenda-view .e-date-column {
|
|
2255
2265
|
vertical-align: top;
|
|
@@ -2382,7 +2392,7 @@
|
|
|
2382
2392
|
background: #eaeaea;
|
|
2383
2393
|
}
|
|
2384
2394
|
.e-schedule .e-agenda-view .e-appointment.e-appointment-border, .e-schedule .e-agenda-view .e-appointment:focus {
|
|
2385
|
-
background:
|
|
2395
|
+
background: rgb(183.4, 223.5495327103, 255);
|
|
2386
2396
|
}
|
|
2387
2397
|
.e-schedule .e-agenda-view .e-appointment.e-template {
|
|
2388
2398
|
display: -webkit-inline-box;
|
|
@@ -2479,12 +2489,19 @@
|
|
|
2479
2489
|
visibility: hidden;
|
|
2480
2490
|
}
|
|
2481
2491
|
|
|
2492
|
+
.e-field-error-message {
|
|
2493
|
+
display: block;
|
|
2494
|
+
}
|
|
2495
|
+
|
|
2482
2496
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2483
|
-
width:
|
|
2497
|
+
width: 440px;
|
|
2484
2498
|
}
|
|
2485
2499
|
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content {
|
|
2486
2500
|
padding: 2%;
|
|
2487
2501
|
}
|
|
2502
|
+
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content button {
|
|
2503
|
+
margin-bottom: 6px;
|
|
2504
|
+
}
|
|
2488
2505
|
@media screen and (max-width: 767px) {
|
|
2489
2506
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2490
2507
|
width: 289px;
|
|
@@ -2513,9 +2530,8 @@
|
|
|
2513
2530
|
.e-dialog.e-quick-dialog .e-footer-content {
|
|
2514
2531
|
border-top: none;
|
|
2515
2532
|
}
|
|
2516
|
-
.e-dialog.e-quick-dialog .e-
|
|
2517
|
-
-
|
|
2518
|
-
box-shadow: none;
|
|
2533
|
+
.e-dialog.e-quick-dialog .e-footer-content button {
|
|
2534
|
+
margin-bottom: 6px;
|
|
2519
2535
|
}
|
|
2520
2536
|
.e-dialog.e-quick-dialog.e-rtl {
|
|
2521
2537
|
text-align: right;
|
|
@@ -2658,6 +2674,11 @@
|
|
|
2658
2674
|
float: right;
|
|
2659
2675
|
}
|
|
2660
2676
|
|
|
2677
|
+
.e-editor-content-item-template {
|
|
2678
|
+
text-overflow: ellipsis;
|
|
2679
|
+
overflow: hidden;
|
|
2680
|
+
}
|
|
2681
|
+
|
|
2661
2682
|
/*! schedule event window for smaller viewports*/
|
|
2662
2683
|
@media screen and (max-width: 320px) {
|
|
2663
2684
|
.e-schedule-dialog.e-popup.e-popup-open {
|
|
@@ -2946,6 +2967,10 @@
|
|
|
2946
2967
|
.e-quick-popup-wrapper .e-event-popup .e-popup-content {
|
|
2947
2968
|
padding: 0 18px 16px 26px;
|
|
2948
2969
|
}
|
|
2970
|
+
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-popup-header-title-text,
|
|
2971
|
+
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-popup-header-title-text {
|
|
2972
|
+
display: none;
|
|
2973
|
+
}
|
|
2949
2974
|
.e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper,
|
|
2950
2975
|
.e-quick-popup-wrapper .e-event-popup .e-header-icon-wrapper {
|
|
2951
2976
|
display: -webkit-box;
|
|
@@ -3500,19 +3525,19 @@
|
|
|
3500
3525
|
color: #0078d6;
|
|
3501
3526
|
}
|
|
3502
3527
|
.e-schedule .e-vertical-view .e-all-day-cells.e-selected-cell {
|
|
3503
|
-
background:
|
|
3528
|
+
background: rgb(183.4, 223.5495327103, 255);
|
|
3504
3529
|
color: #333;
|
|
3505
3530
|
}
|
|
3506
3531
|
.e-schedule .e-vertical-view .e-all-day-cells.e-selected-cell:hover {
|
|
3507
|
-
background:
|
|
3532
|
+
background: rgb(183.4, 223.5495327103, 255);
|
|
3508
3533
|
color: #333;
|
|
3509
3534
|
}
|
|
3510
3535
|
.e-schedule .e-vertical-view .e-selected-cell {
|
|
3511
|
-
background:
|
|
3536
|
+
background: rgb(183.4, 223.5495327103, 255);
|
|
3512
3537
|
color: #333;
|
|
3513
3538
|
}
|
|
3514
3539
|
.e-schedule .e-vertical-view .e-selected-cell:hover {
|
|
3515
|
-
background:
|
|
3540
|
+
background: rgb(183.4, 223.5495327103, 255);
|
|
3516
3541
|
color: #333;
|
|
3517
3542
|
}
|
|
3518
3543
|
.e-schedule .e-vertical-view .e-clone-time-indicator,
|
|
@@ -3583,7 +3608,7 @@
|
|
|
3583
3608
|
}
|
|
3584
3609
|
.e-schedule .e-month-view .e-selected-cell,
|
|
3585
3610
|
.e-schedule .e-month-agenda-view .e-selected-cell {
|
|
3586
|
-
background:
|
|
3611
|
+
background: rgb(183.4, 223.5495327103, 255);
|
|
3587
3612
|
color: #333;
|
|
3588
3613
|
}
|
|
3589
3614
|
.e-schedule .e-month-view .e-selected-cell .e-date-header,
|
|
@@ -3596,7 +3621,7 @@
|
|
|
3596
3621
|
}
|
|
3597
3622
|
.e-schedule .e-month-view .e-selected-cell:hover,
|
|
3598
3623
|
.e-schedule .e-month-agenda-view .e-selected-cell:hover {
|
|
3599
|
-
background:
|
|
3624
|
+
background: rgb(183.4, 223.5495327103, 255);
|
|
3600
3625
|
}
|
|
3601
3626
|
.e-schedule .e-month-agenda-view .e-content-wrap .e-table-container {
|
|
3602
3627
|
overflow: auto;
|
|
@@ -3658,12 +3683,12 @@
|
|
|
3658
3683
|
}
|
|
3659
3684
|
.e-schedule .e-timeline-view .e-selected-cell,
|
|
3660
3685
|
.e-schedule .e-timeline-month-view .e-selected-cell {
|
|
3661
|
-
background:
|
|
3686
|
+
background: rgb(183.4, 223.5495327103, 255);
|
|
3662
3687
|
color: #333;
|
|
3663
3688
|
}
|
|
3664
3689
|
.e-schedule .e-timeline-view .e-selected-cell:hover:not(.e-resource-group-cells),
|
|
3665
3690
|
.e-schedule .e-timeline-month-view .e-selected-cell:hover:not(.e-resource-group-cells) {
|
|
3666
|
-
background:
|
|
3691
|
+
background: rgb(183.4, 223.5495327103, 255);
|
|
3667
3692
|
}
|
|
3668
3693
|
.e-schedule .e-timeline-view .e-work-hours {
|
|
3669
3694
|
background: #fff;
|
|
@@ -3672,11 +3697,11 @@
|
|
|
3672
3697
|
background: #f8f8f8;
|
|
3673
3698
|
}
|
|
3674
3699
|
.e-schedule .e-timeline-view .e-selected-cell {
|
|
3675
|
-
background:
|
|
3700
|
+
background: rgb(183.4, 223.5495327103, 255);
|
|
3676
3701
|
color: #333;
|
|
3677
3702
|
}
|
|
3678
3703
|
.e-schedule .e-timeline-view .e-selected-cell:hover {
|
|
3679
|
-
background:
|
|
3704
|
+
background: rgb(183.4, 223.5495327103, 255);
|
|
3680
3705
|
}
|
|
3681
3706
|
.e-schedule .e-timeline-view .e-alternate-cells {
|
|
3682
3707
|
border-left-style: dotted;
|
|
@@ -3718,7 +3743,7 @@
|
|
|
3718
3743
|
width: 20px;
|
|
3719
3744
|
}
|
|
3720
3745
|
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell {
|
|
3721
|
-
background:
|
|
3746
|
+
background: rgb(183.4, 223.5495327103, 255);
|
|
3722
3747
|
color: #333;
|
|
3723
3748
|
}
|
|
3724
3749
|
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-date-header {
|
|
@@ -3728,7 +3753,7 @@
|
|
|
3728
3753
|
color: #333;
|
|
3729
3754
|
}
|
|
3730
3755
|
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell:hover {
|
|
3731
|
-
background:
|
|
3756
|
+
background: rgb(183.4, 223.5495327103, 255);
|
|
3732
3757
|
}
|
|
3733
3758
|
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates {
|
|
3734
3759
|
background: rgba(0, 0, 0, 0.08);
|
|
@@ -3978,7 +4003,7 @@
|
|
|
3978
4003
|
}
|
|
3979
4004
|
.e-bigger .e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar,
|
|
3980
4005
|
.e-bigger.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
|
|
3981
|
-
min-width:
|
|
4006
|
+
min-width: 345px;
|
|
3982
4007
|
}
|
|
3983
4008
|
|
|
3984
4009
|
/*! schedule event tooltip */
|
|
@@ -3989,7 +4014,7 @@
|
|
|
3989
4014
|
}
|
|
3990
4015
|
|
|
3991
4016
|
.e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
3992
|
-
width:
|
|
4017
|
+
width: 520px;
|
|
3993
4018
|
}
|
|
3994
4019
|
|
|
3995
4020
|
.e-bigger .e-dialog.e-quick-dialog {
|
|
@@ -4014,16 +4039,6 @@
|
|
|
4014
4039
|
padding-bottom: 12px;
|
|
4015
4040
|
position: relative;
|
|
4016
4041
|
}
|
|
4017
|
-
.e-bigger .e-schedule-dialog .e-event-cancel,
|
|
4018
|
-
.e-bigger .e-schedule-dialog .e-event-delete {
|
|
4019
|
-
border: none;
|
|
4020
|
-
-webkit-box-shadow: none;
|
|
4021
|
-
box-shadow: none;
|
|
4022
|
-
}
|
|
4023
|
-
.e-bigger .e-schedule-dialog .e-footer-content .e-btn.e-event-delete {
|
|
4024
|
-
float: left;
|
|
4025
|
-
margin-left: 0;
|
|
4026
|
-
}
|
|
4027
4042
|
.e-bigger .e-schedule-dialog .e-subject-container,
|
|
4028
4043
|
.e-bigger .e-schedule-dialog .e-start-container,
|
|
4029
4044
|
.e-bigger .e-schedule-dialog .e-start-time-zone-container,
|
|
@@ -4119,9 +4134,6 @@
|
|
|
4119
4134
|
padding-left: 0;
|
|
4120
4135
|
padding-right: 12px;
|
|
4121
4136
|
}
|
|
4122
|
-
.e-bigger .e-schedule-dialog.e-rtl .e-event-delete {
|
|
4123
|
-
float: right;
|
|
4124
|
-
}
|
|
4125
4137
|
|
|
4126
4138
|
/*! schedule quick popup */
|
|
4127
4139
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
@@ -282,7 +282,7 @@
|
|
|
282
282
|
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
|
283
283
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
|
284
284
|
margin-bottom: 3px;
|
|
285
|
-
min-height:
|
|
285
|
+
min-height: 40px;
|
|
286
286
|
}
|
|
287
287
|
.e-schedule .e-schedule-toolbar .e-active-view .e-tbar-btn-text,
|
|
288
288
|
.e-schedule .e-schedule-toolbar .e-active-view .e-icons {
|
|
@@ -294,11 +294,11 @@
|
|
|
294
294
|
text-transform: none;
|
|
295
295
|
}
|
|
296
296
|
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
297
|
-
height:
|
|
297
|
+
height: 40px;
|
|
298
298
|
}
|
|
299
299
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
300
|
-
height:
|
|
301
|
-
min-height:
|
|
300
|
+
height: 40px;
|
|
301
|
+
min-height: 40px;
|
|
302
302
|
}
|
|
303
303
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-right .e-toolbar-item .e-tbar-btn {
|
|
304
304
|
border: none;
|
|
@@ -329,6 +329,9 @@
|
|
|
329
329
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator {
|
|
330
330
|
border-right: 1px solid #292827;
|
|
331
331
|
}
|
|
332
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn.e-schedule-date-range-tbtn {
|
|
333
|
+
width: auto;
|
|
334
|
+
}
|
|
332
335
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn .e-tbar-btn-text {
|
|
333
336
|
font-size: 14px;
|
|
334
337
|
text-transform: initial;
|
|
@@ -432,7 +435,7 @@
|
|
|
432
435
|
display: -ms-flexbox;
|
|
433
436
|
display: flex;
|
|
434
437
|
margin-bottom: 3px;
|
|
435
|
-
min-height:
|
|
438
|
+
min-height: 40px;
|
|
436
439
|
padding: 10px;
|
|
437
440
|
}
|
|
438
441
|
.e-schedule .e-schedule-resource-toolbar .e-resource-menu .e-icon-menu {
|
|
@@ -1273,6 +1276,10 @@
|
|
|
1273
1276
|
overflow: hidden;
|
|
1274
1277
|
opacity: 0;
|
|
1275
1278
|
}
|
|
1279
|
+
.e-schedule .e-month-view .e-month-event-table {
|
|
1280
|
+
position: absolute;
|
|
1281
|
+
top: 0;
|
|
1282
|
+
}
|
|
1276
1283
|
.e-schedule .e-month-view .e-content-wrap table tr:last-child td {
|
|
1277
1284
|
border-bottom-width: 0;
|
|
1278
1285
|
}
|
|
@@ -2316,6 +2323,9 @@
|
|
|
2316
2323
|
.e-schedule .e-agenda-view {
|
|
2317
2324
|
background: #1b1a19;
|
|
2318
2325
|
}
|
|
2326
|
+
.e-schedule .e-agenda-view .e-agenda-load-more {
|
|
2327
|
+
font-size: 14px;
|
|
2328
|
+
}
|
|
2319
2329
|
.e-schedule .e-agenda-view .e-content-wrap table td:first-child,
|
|
2320
2330
|
.e-schedule .e-agenda-view .e-date-column {
|
|
2321
2331
|
vertical-align: top;
|
|
@@ -2545,12 +2555,19 @@
|
|
|
2545
2555
|
visibility: hidden;
|
|
2546
2556
|
}
|
|
2547
2557
|
|
|
2558
|
+
.e-field-error-message {
|
|
2559
|
+
display: block;
|
|
2560
|
+
}
|
|
2561
|
+
|
|
2548
2562
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2549
|
-
width:
|
|
2563
|
+
width: 440px;
|
|
2550
2564
|
}
|
|
2551
2565
|
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content {
|
|
2552
2566
|
padding: 0 24px 24px;
|
|
2553
2567
|
}
|
|
2568
|
+
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content button {
|
|
2569
|
+
margin-bottom: 6px;
|
|
2570
|
+
}
|
|
2554
2571
|
@media screen and (max-width: 767px) {
|
|
2555
2572
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2556
2573
|
width: 289px;
|
|
@@ -2579,9 +2596,8 @@
|
|
|
2579
2596
|
.e-dialog.e-quick-dialog .e-footer-content {
|
|
2580
2597
|
border-top: none;
|
|
2581
2598
|
}
|
|
2582
|
-
.e-dialog.e-quick-dialog .e-
|
|
2583
|
-
-
|
|
2584
|
-
box-shadow: none;
|
|
2599
|
+
.e-dialog.e-quick-dialog .e-footer-content button {
|
|
2600
|
+
margin-bottom: 6px;
|
|
2585
2601
|
}
|
|
2586
2602
|
.e-dialog.e-quick-dialog.e-rtl {
|
|
2587
2603
|
text-align: right;
|
|
@@ -2724,6 +2740,11 @@
|
|
|
2724
2740
|
float: right;
|
|
2725
2741
|
}
|
|
2726
2742
|
|
|
2743
|
+
.e-editor-content-item-template {
|
|
2744
|
+
text-overflow: ellipsis;
|
|
2745
|
+
overflow: hidden;
|
|
2746
|
+
}
|
|
2747
|
+
|
|
2727
2748
|
/*! schedule event window for smaller viewports*/
|
|
2728
2749
|
@media screen and (max-width: 320px) {
|
|
2729
2750
|
.e-schedule-dialog.e-popup.e-popup-open {
|
|
@@ -3012,6 +3033,10 @@
|
|
|
3012
3033
|
.e-quick-popup-wrapper .e-event-popup .e-popup-content {
|
|
3013
3034
|
padding: 0 24px 12px;
|
|
3014
3035
|
}
|
|
3036
|
+
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-popup-header-title-text,
|
|
3037
|
+
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-popup-header-title-text {
|
|
3038
|
+
display: none;
|
|
3039
|
+
}
|
|
3015
3040
|
.e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper,
|
|
3016
3041
|
.e-quick-popup-wrapper .e-event-popup .e-header-icon-wrapper {
|
|
3017
3042
|
display: -webkit-box;
|
|
@@ -4055,7 +4080,7 @@
|
|
|
4055
4080
|
}
|
|
4056
4081
|
|
|
4057
4082
|
.e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
4058
|
-
width:
|
|
4083
|
+
width: 520px;
|
|
4059
4084
|
}
|
|
4060
4085
|
|
|
4061
4086
|
.e-bigger .e-dialog.e-quick-dialog {
|
|
@@ -4080,16 +4105,6 @@
|
|
|
4080
4105
|
padding-bottom: 12px;
|
|
4081
4106
|
position: relative;
|
|
4082
4107
|
}
|
|
4083
|
-
.e-bigger .e-schedule-dialog .e-event-cancel,
|
|
4084
|
-
.e-bigger .e-schedule-dialog .e-event-delete {
|
|
4085
|
-
border: none;
|
|
4086
|
-
-webkit-box-shadow: none;
|
|
4087
|
-
box-shadow: none;
|
|
4088
|
-
}
|
|
4089
|
-
.e-bigger .e-schedule-dialog .e-footer-content .e-btn.e-event-delete {
|
|
4090
|
-
float: left;
|
|
4091
|
-
margin-left: 0;
|
|
4092
|
-
}
|
|
4093
4108
|
.e-bigger .e-schedule-dialog .e-subject-container,
|
|
4094
4109
|
.e-bigger .e-schedule-dialog .e-start-container,
|
|
4095
4110
|
.e-bigger .e-schedule-dialog .e-start-time-zone-container,
|
|
@@ -4185,9 +4200,6 @@
|
|
|
4185
4200
|
padding-left: 0;
|
|
4186
4201
|
padding-right: 12px;
|
|
4187
4202
|
}
|
|
4188
|
-
.e-bigger .e-schedule-dialog.e-rtl .e-event-delete {
|
|
4189
|
-
float: right;
|
|
4190
|
-
}
|
|
4191
4203
|
|
|
4192
4204
|
/*! schedule quick popup */
|
|
4193
4205
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
@@ -282,7 +282,7 @@
|
|
|
282
282
|
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
|
283
283
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
|
284
284
|
margin-bottom: 3px;
|
|
285
|
-
min-height:
|
|
285
|
+
min-height: 40px;
|
|
286
286
|
}
|
|
287
287
|
.e-schedule .e-schedule-toolbar .e-active-view .e-tbar-btn-text,
|
|
288
288
|
.e-schedule .e-schedule-toolbar .e-active-view .e-icons {
|
|
@@ -294,11 +294,11 @@
|
|
|
294
294
|
text-transform: none;
|
|
295
295
|
}
|
|
296
296
|
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
297
|
-
height:
|
|
297
|
+
height: 40px;
|
|
298
298
|
}
|
|
299
299
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
300
|
-
height:
|
|
301
|
-
min-height:
|
|
300
|
+
height: 40px;
|
|
301
|
+
min-height: 40px;
|
|
302
302
|
}
|
|
303
303
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-right .e-toolbar-item .e-tbar-btn {
|
|
304
304
|
border: none;
|
|
@@ -329,6 +329,9 @@
|
|
|
329
329
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator {
|
|
330
330
|
border-right: 1px solid #edebe9;
|
|
331
331
|
}
|
|
332
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn.e-schedule-date-range-tbtn {
|
|
333
|
+
width: auto;
|
|
334
|
+
}
|
|
332
335
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn .e-tbar-btn-text {
|
|
333
336
|
font-size: 14px;
|
|
334
337
|
text-transform: initial;
|
|
@@ -432,7 +435,7 @@
|
|
|
432
435
|
display: -ms-flexbox;
|
|
433
436
|
display: flex;
|
|
434
437
|
margin-bottom: 3px;
|
|
435
|
-
min-height:
|
|
438
|
+
min-height: 40px;
|
|
436
439
|
padding: 10px;
|
|
437
440
|
}
|
|
438
441
|
.e-schedule .e-schedule-resource-toolbar .e-resource-menu .e-icon-menu {
|
|
@@ -1273,6 +1276,10 @@
|
|
|
1273
1276
|
overflow: hidden;
|
|
1274
1277
|
opacity: 0;
|
|
1275
1278
|
}
|
|
1279
|
+
.e-schedule .e-month-view .e-month-event-table {
|
|
1280
|
+
position: absolute;
|
|
1281
|
+
top: 0;
|
|
1282
|
+
}
|
|
1276
1283
|
.e-schedule .e-month-view .e-content-wrap table tr:last-child td {
|
|
1277
1284
|
border-bottom-width: 0;
|
|
1278
1285
|
}
|
|
@@ -2316,6 +2323,9 @@
|
|
|
2316
2323
|
.e-schedule .e-agenda-view {
|
|
2317
2324
|
background: #fff;
|
|
2318
2325
|
}
|
|
2326
|
+
.e-schedule .e-agenda-view .e-agenda-load-more {
|
|
2327
|
+
font-size: 14px;
|
|
2328
|
+
}
|
|
2319
2329
|
.e-schedule .e-agenda-view .e-content-wrap table td:first-child,
|
|
2320
2330
|
.e-schedule .e-agenda-view .e-date-column {
|
|
2321
2331
|
vertical-align: top;
|
|
@@ -2545,12 +2555,19 @@
|
|
|
2545
2555
|
visibility: hidden;
|
|
2546
2556
|
}
|
|
2547
2557
|
|
|
2558
|
+
.e-field-error-message {
|
|
2559
|
+
display: block;
|
|
2560
|
+
}
|
|
2561
|
+
|
|
2548
2562
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2549
|
-
width:
|
|
2563
|
+
width: 440px;
|
|
2550
2564
|
}
|
|
2551
2565
|
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content {
|
|
2552
2566
|
padding: 0 24px 24px;
|
|
2553
2567
|
}
|
|
2568
|
+
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content button {
|
|
2569
|
+
margin-bottom: 6px;
|
|
2570
|
+
}
|
|
2554
2571
|
@media screen and (max-width: 767px) {
|
|
2555
2572
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2556
2573
|
width: 289px;
|
|
@@ -2579,9 +2596,8 @@
|
|
|
2579
2596
|
.e-dialog.e-quick-dialog .e-footer-content {
|
|
2580
2597
|
border-top: none;
|
|
2581
2598
|
}
|
|
2582
|
-
.e-dialog.e-quick-dialog .e-
|
|
2583
|
-
-
|
|
2584
|
-
box-shadow: none;
|
|
2599
|
+
.e-dialog.e-quick-dialog .e-footer-content button {
|
|
2600
|
+
margin-bottom: 6px;
|
|
2585
2601
|
}
|
|
2586
2602
|
.e-dialog.e-quick-dialog.e-rtl {
|
|
2587
2603
|
text-align: right;
|
|
@@ -2724,6 +2740,11 @@
|
|
|
2724
2740
|
float: right;
|
|
2725
2741
|
}
|
|
2726
2742
|
|
|
2743
|
+
.e-editor-content-item-template {
|
|
2744
|
+
text-overflow: ellipsis;
|
|
2745
|
+
overflow: hidden;
|
|
2746
|
+
}
|
|
2747
|
+
|
|
2727
2748
|
/*! schedule event window for smaller viewports*/
|
|
2728
2749
|
@media screen and (max-width: 320px) {
|
|
2729
2750
|
.e-schedule-dialog.e-popup.e-popup-open {
|
|
@@ -3012,6 +3033,10 @@
|
|
|
3012
3033
|
.e-quick-popup-wrapper .e-event-popup .e-popup-content {
|
|
3013
3034
|
padding: 0 24px 12px;
|
|
3014
3035
|
}
|
|
3036
|
+
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-popup-header-title-text,
|
|
3037
|
+
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-popup-header-title-text {
|
|
3038
|
+
display: none;
|
|
3039
|
+
}
|
|
3015
3040
|
.e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper,
|
|
3016
3041
|
.e-quick-popup-wrapper .e-event-popup .e-header-icon-wrapper {
|
|
3017
3042
|
display: -webkit-box;
|
|
@@ -4055,7 +4080,7 @@
|
|
|
4055
4080
|
}
|
|
4056
4081
|
|
|
4057
4082
|
.e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
4058
|
-
width:
|
|
4083
|
+
width: 520px;
|
|
4059
4084
|
}
|
|
4060
4085
|
|
|
4061
4086
|
.e-bigger .e-dialog.e-quick-dialog {
|
|
@@ -4080,16 +4105,6 @@
|
|
|
4080
4105
|
padding-bottom: 12px;
|
|
4081
4106
|
position: relative;
|
|
4082
4107
|
}
|
|
4083
|
-
.e-bigger .e-schedule-dialog .e-event-cancel,
|
|
4084
|
-
.e-bigger .e-schedule-dialog .e-event-delete {
|
|
4085
|
-
border: none;
|
|
4086
|
-
-webkit-box-shadow: none;
|
|
4087
|
-
box-shadow: none;
|
|
4088
|
-
}
|
|
4089
|
-
.e-bigger .e-schedule-dialog .e-footer-content .e-btn.e-event-delete {
|
|
4090
|
-
float: left;
|
|
4091
|
-
margin-left: 0;
|
|
4092
|
-
}
|
|
4093
4108
|
.e-bigger .e-schedule-dialog .e-subject-container,
|
|
4094
4109
|
.e-bigger .e-schedule-dialog .e-start-container,
|
|
4095
4110
|
.e-bigger .e-schedule-dialog .e-start-time-zone-container,
|
|
@@ -4185,9 +4200,6 @@
|
|
|
4185
4200
|
padding-left: 0;
|
|
4186
4201
|
padding-right: 12px;
|
|
4187
4202
|
}
|
|
4188
|
-
.e-bigger .e-schedule-dialog.e-rtl .e-event-delete {
|
|
4189
|
-
float: right;
|
|
4190
|
-
}
|
|
4191
4203
|
|
|
4192
4204
|
/*! schedule quick popup */
|
|
4193
4205
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|