@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
|
@@ -355,6 +355,9 @@
|
|
|
355
355
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator {
|
|
356
356
|
border-right: 1px solid #000;
|
|
357
357
|
}
|
|
358
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn.e-schedule-date-range-tbtn {
|
|
359
|
+
width: auto;
|
|
360
|
+
}
|
|
358
361
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn .e-tbar-btn-text {
|
|
359
362
|
font-size: 16px;
|
|
360
363
|
text-transform: initial;
|
|
@@ -542,7 +545,7 @@
|
|
|
542
545
|
width: 100%;
|
|
543
546
|
}
|
|
544
547
|
.e-schedule .e-new-event {
|
|
545
|
-
background:
|
|
548
|
+
background: rgb(27.5, 127.5, 0);
|
|
546
549
|
border: 1px solid #fff;
|
|
547
550
|
border-radius: 5px;
|
|
548
551
|
height: 100%;
|
|
@@ -782,7 +785,7 @@
|
|
|
782
785
|
height: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
783
786
|
}
|
|
784
787
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment {
|
|
785
|
-
background:
|
|
788
|
+
background: rgb(27.5, 127.5, 0);
|
|
786
789
|
border: 1px solid #e4e4e4;
|
|
787
790
|
border-radius: 2px;
|
|
788
791
|
color: #fff;
|
|
@@ -1074,7 +1077,7 @@
|
|
|
1074
1077
|
cursor: default;
|
|
1075
1078
|
}
|
|
1076
1079
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment {
|
|
1077
|
-
background:
|
|
1080
|
+
background: rgb(27.5, 127.5, 0);
|
|
1078
1081
|
border: 1px solid #e4e4e4;
|
|
1079
1082
|
border-radius: 2px;
|
|
1080
1083
|
color: #fff;
|
|
@@ -1129,7 +1132,7 @@
|
|
|
1129
1132
|
cursor: default;
|
|
1130
1133
|
}
|
|
1131
1134
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment {
|
|
1132
|
-
background:
|
|
1135
|
+
background: rgb(27.5, 127.5, 0);
|
|
1133
1136
|
border: 1px solid #e4e4e4;
|
|
1134
1137
|
border-radius: 2px;
|
|
1135
1138
|
color: #fff;
|
|
@@ -1299,6 +1302,10 @@
|
|
|
1299
1302
|
overflow: hidden;
|
|
1300
1303
|
opacity: 0;
|
|
1301
1304
|
}
|
|
1305
|
+
.e-schedule .e-month-view .e-month-event-table {
|
|
1306
|
+
position: absolute;
|
|
1307
|
+
top: 0;
|
|
1308
|
+
}
|
|
1302
1309
|
.e-schedule .e-month-view .e-content-wrap table tr:last-child td {
|
|
1303
1310
|
border-bottom-width: 0;
|
|
1304
1311
|
}
|
|
@@ -1386,7 +1393,7 @@
|
|
|
1386
1393
|
z-index: 1;
|
|
1387
1394
|
}
|
|
1388
1395
|
.e-schedule .e-month-view .e-appointment {
|
|
1389
|
-
background:
|
|
1396
|
+
background: rgb(27.5, 127.5, 0);
|
|
1390
1397
|
border: 1px solid #e4e4e4;
|
|
1391
1398
|
border-radius: 2px;
|
|
1392
1399
|
color: #fff;
|
|
@@ -1485,7 +1492,7 @@
|
|
|
1485
1492
|
-ms-flex: 0 25%;
|
|
1486
1493
|
flex: 0 25%;
|
|
1487
1494
|
max-width: 100%;
|
|
1488
|
-
min-width:
|
|
1495
|
+
min-width: 300px;
|
|
1489
1496
|
padding: 10px;
|
|
1490
1497
|
}
|
|
1491
1498
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-header .e-title {
|
|
@@ -1506,7 +1513,7 @@
|
|
|
1506
1513
|
}
|
|
1507
1514
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-appointment,
|
|
1508
1515
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-appointment-indicator {
|
|
1509
|
-
background:
|
|
1516
|
+
background: rgb(27.5, 127.5, 0);
|
|
1510
1517
|
border-radius: 50%;
|
|
1511
1518
|
height: 5px;
|
|
1512
1519
|
margin: -6px auto 0;
|
|
@@ -1714,7 +1721,7 @@
|
|
|
1714
1721
|
z-index: 1;
|
|
1715
1722
|
}
|
|
1716
1723
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment {
|
|
1717
|
-
background:
|
|
1724
|
+
background: rgb(27.5, 127.5, 0);
|
|
1718
1725
|
border: 1px solid #e4e4e4;
|
|
1719
1726
|
border-radius: 2px;
|
|
1720
1727
|
color: #fff;
|
|
@@ -1950,7 +1957,7 @@
|
|
|
1950
1957
|
}
|
|
1951
1958
|
.e-schedule .e-timeline-view .e-appointment,
|
|
1952
1959
|
.e-schedule .e-timeline-month-view .e-appointment {
|
|
1953
|
-
background:
|
|
1960
|
+
background: rgb(27.5, 127.5, 0);
|
|
1954
1961
|
border: 1px solid #e4e4e4;
|
|
1955
1962
|
border-radius: 2px;
|
|
1956
1963
|
color: #fff;
|
|
@@ -2236,7 +2243,7 @@
|
|
|
2236
2243
|
padding: 0 8px;
|
|
2237
2244
|
}
|
|
2238
2245
|
.e-schedule .e-month-agenda-view .e-appointment {
|
|
2239
|
-
border-left: 3px solid
|
|
2246
|
+
border-left: 3px solid rgb(27.5, 127.5, 0);
|
|
2240
2247
|
border-right: 0;
|
|
2241
2248
|
cursor: default;
|
|
2242
2249
|
padding: 0 8px;
|
|
@@ -2304,7 +2311,7 @@
|
|
|
2304
2311
|
padding: 0;
|
|
2305
2312
|
}
|
|
2306
2313
|
.e-schedule .e-month-agenda-view .e-work-cells .e-appointment-indicator {
|
|
2307
|
-
background:
|
|
2314
|
+
background: rgb(27.5, 127.5, 0);
|
|
2308
2315
|
border-radius: 50%;
|
|
2309
2316
|
height: 6px;
|
|
2310
2317
|
left: 0;
|
|
@@ -2318,7 +2325,7 @@
|
|
|
2318
2325
|
}
|
|
2319
2326
|
.e-schedule.e-rtl .e-month-agenda-view .e-appointment {
|
|
2320
2327
|
border-left: 0;
|
|
2321
|
-
border-right: 3px solid
|
|
2328
|
+
border-right: 3px solid rgb(27.5, 127.5, 0);
|
|
2322
2329
|
}
|
|
2323
2330
|
.e-schedule.e-rtl .e-month-agenda-view .e-resource-column {
|
|
2324
2331
|
border-bottom: 1px solid #757575;
|
|
@@ -2342,6 +2349,9 @@
|
|
|
2342
2349
|
.e-schedule .e-agenda-view {
|
|
2343
2350
|
background: #e4e4e4;
|
|
2344
2351
|
}
|
|
2352
|
+
.e-schedule .e-agenda-view .e-agenda-load-more {
|
|
2353
|
+
font-size: 14px;
|
|
2354
|
+
}
|
|
2345
2355
|
.e-schedule .e-agenda-view .e-content-wrap table td:first-child,
|
|
2346
2356
|
.e-schedule .e-agenda-view .e-date-column {
|
|
2347
2357
|
vertical-align: top;
|
|
@@ -2355,7 +2365,7 @@
|
|
|
2355
2365
|
border-right: 1px solid #757575;
|
|
2356
2366
|
}
|
|
2357
2367
|
.e-schedule .e-agenda-view .e-month-header {
|
|
2358
|
-
background:
|
|
2368
|
+
background: rgb(27.5, 127.5, 0);
|
|
2359
2369
|
height: 100px;
|
|
2360
2370
|
padding-top: 12px;
|
|
2361
2371
|
vertical-align: top;
|
|
@@ -2465,7 +2475,7 @@
|
|
|
2465
2475
|
padding: 0;
|
|
2466
2476
|
}
|
|
2467
2477
|
.e-schedule .e-agenda-view .e-appointment {
|
|
2468
|
-
border-left: 3px solid
|
|
2478
|
+
border-left: 3px solid rgb(27.5, 127.5, 0);
|
|
2469
2479
|
border-right: 0;
|
|
2470
2480
|
cursor: default;
|
|
2471
2481
|
padding: 0 8px;
|
|
@@ -2512,7 +2522,7 @@
|
|
|
2512
2522
|
}
|
|
2513
2523
|
.e-schedule.e-rtl .e-agenda-view .e-appointment {
|
|
2514
2524
|
border-left: 0;
|
|
2515
|
-
border-right: 3px solid
|
|
2525
|
+
border-right: 3px solid rgb(27.5, 127.5, 0);
|
|
2516
2526
|
}
|
|
2517
2527
|
.e-schedule.e-rtl .e-agenda-view .e-resource-column {
|
|
2518
2528
|
border-left: 1px solid #757575;
|
|
@@ -2571,12 +2581,19 @@
|
|
|
2571
2581
|
visibility: hidden;
|
|
2572
2582
|
}
|
|
2573
2583
|
|
|
2584
|
+
.e-field-error-message {
|
|
2585
|
+
display: block;
|
|
2586
|
+
}
|
|
2587
|
+
|
|
2574
2588
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2575
|
-
width:
|
|
2589
|
+
width: 440px;
|
|
2576
2590
|
}
|
|
2577
2591
|
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content {
|
|
2578
2592
|
padding: 2%;
|
|
2579
2593
|
}
|
|
2594
|
+
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content button {
|
|
2595
|
+
margin-bottom: 6px;
|
|
2596
|
+
}
|
|
2580
2597
|
@media screen and (max-width: 767px) {
|
|
2581
2598
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2582
2599
|
width: 289px;
|
|
@@ -2605,9 +2622,8 @@
|
|
|
2605
2622
|
.e-dialog.e-quick-dialog .e-footer-content {
|
|
2606
2623
|
border-top: none;
|
|
2607
2624
|
}
|
|
2608
|
-
.e-dialog.e-quick-dialog .e-
|
|
2609
|
-
-
|
|
2610
|
-
box-shadow: none;
|
|
2625
|
+
.e-dialog.e-quick-dialog .e-footer-content button {
|
|
2626
|
+
margin-bottom: 6px;
|
|
2611
2627
|
}
|
|
2612
2628
|
.e-dialog.e-quick-dialog.e-rtl {
|
|
2613
2629
|
text-align: right;
|
|
@@ -2750,6 +2766,11 @@
|
|
|
2750
2766
|
float: right;
|
|
2751
2767
|
}
|
|
2752
2768
|
|
|
2769
|
+
.e-editor-content-item-template {
|
|
2770
|
+
text-overflow: ellipsis;
|
|
2771
|
+
overflow: hidden;
|
|
2772
|
+
}
|
|
2773
|
+
|
|
2753
2774
|
/*! schedule event window for smaller viewports*/
|
|
2754
2775
|
@media screen and (max-width: 320px) {
|
|
2755
2776
|
.e-schedule-dialog.e-popup.e-popup-open {
|
|
@@ -3024,8 +3045,8 @@
|
|
|
3024
3045
|
padding: 0 18px 8px;
|
|
3025
3046
|
}
|
|
3026
3047
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-subject-wrap .e-subject {
|
|
3027
|
-
background: rgba(
|
|
3028
|
-
border-left: 6px solid
|
|
3048
|
+
background: rgba(27.5, 127.5, 0, 0.3);
|
|
3049
|
+
border-left: 6px solid rgb(27.5, 127.5, 0);
|
|
3029
3050
|
border-radius: 2px;
|
|
3030
3051
|
color: #fff;
|
|
3031
3052
|
cursor: default;
|
|
@@ -3038,6 +3059,10 @@
|
|
|
3038
3059
|
.e-quick-popup-wrapper .e-event-popup .e-popup-content {
|
|
3039
3060
|
padding: 0 18px 16px 26px;
|
|
3040
3061
|
}
|
|
3062
|
+
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-popup-header-title-text,
|
|
3063
|
+
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-popup-header-title-text {
|
|
3064
|
+
display: none;
|
|
3065
|
+
}
|
|
3041
3066
|
.e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper,
|
|
3042
3067
|
.e-quick-popup-wrapper .e-event-popup .e-header-icon-wrapper {
|
|
3043
3068
|
display: -webkit-box;
|
|
@@ -3253,7 +3278,7 @@
|
|
|
3253
3278
|
}
|
|
3254
3279
|
}
|
|
3255
3280
|
.e-appointment.e-schedule-event-clone {
|
|
3256
|
-
background:
|
|
3281
|
+
background: rgb(27.5, 127.5, 0);
|
|
3257
3282
|
border-radius: 2px;
|
|
3258
3283
|
-webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
3259
3284
|
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
@@ -3418,7 +3443,7 @@
|
|
|
3418
3443
|
color: #000;
|
|
3419
3444
|
}
|
|
3420
3445
|
.e-more-popup-wrapper .e-appointment {
|
|
3421
|
-
background:
|
|
3446
|
+
background: rgb(27.5, 127.5, 0);
|
|
3422
3447
|
border-radius: 2px;
|
|
3423
3448
|
color: #fff;
|
|
3424
3449
|
display: -webkit-box;
|
|
@@ -4061,6 +4086,10 @@
|
|
|
4061
4086
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
|
|
4062
4087
|
display: none;
|
|
4063
4088
|
}
|
|
4089
|
+
.e-recurrenceeditor .e-input-wrapper.e-month-expander-checkbox-wrapper.e-repeat-on-week-selector {
|
|
4090
|
+
min-width: 30px;
|
|
4091
|
+
margin-bottom: 18px;
|
|
4092
|
+
}
|
|
4064
4093
|
.e-recurrenceeditor .e-input-wrapper-side {
|
|
4065
4094
|
float: left;
|
|
4066
4095
|
padding: 16px 20px 0;
|
|
@@ -4232,7 +4261,7 @@
|
|
|
4232
4261
|
width: 65%;
|
|
4233
4262
|
}
|
|
4234
4263
|
.e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
|
|
4235
|
-
padding-left:
|
|
4264
|
+
padding-left: 59px;
|
|
4236
4265
|
}
|
|
4237
4266
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4238
4267
|
padding-right: 0;
|
|
@@ -355,6 +355,9 @@
|
|
|
355
355
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator {
|
|
356
356
|
border-right: 1px solid #000;
|
|
357
357
|
}
|
|
358
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn.e-schedule-date-range-tbtn {
|
|
359
|
+
width: auto;
|
|
360
|
+
}
|
|
358
361
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn .e-tbar-btn-text {
|
|
359
362
|
font-size: 16px;
|
|
360
363
|
text-transform: initial;
|
|
@@ -542,7 +545,7 @@
|
|
|
542
545
|
width: 100%;
|
|
543
546
|
}
|
|
544
547
|
.e-schedule .e-new-event {
|
|
545
|
-
background:
|
|
548
|
+
background: rgb(27.5, 127.5, 0);
|
|
546
549
|
border: 1px solid #fff;
|
|
547
550
|
border-radius: 5px;
|
|
548
551
|
height: 100%;
|
|
@@ -782,7 +785,7 @@
|
|
|
782
785
|
height: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
783
786
|
}
|
|
784
787
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment {
|
|
785
|
-
background:
|
|
788
|
+
background: rgb(27.5, 127.5, 0);
|
|
786
789
|
border: 1px solid #e4e4e4;
|
|
787
790
|
border-radius: 2px;
|
|
788
791
|
color: #fff;
|
|
@@ -1074,7 +1077,7 @@
|
|
|
1074
1077
|
cursor: default;
|
|
1075
1078
|
}
|
|
1076
1079
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment {
|
|
1077
|
-
background:
|
|
1080
|
+
background: rgb(27.5, 127.5, 0);
|
|
1078
1081
|
border: 1px solid #e4e4e4;
|
|
1079
1082
|
border-radius: 2px;
|
|
1080
1083
|
color: #fff;
|
|
@@ -1129,7 +1132,7 @@
|
|
|
1129
1132
|
cursor: default;
|
|
1130
1133
|
}
|
|
1131
1134
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment {
|
|
1132
|
-
background:
|
|
1135
|
+
background: rgb(27.5, 127.5, 0);
|
|
1133
1136
|
border: 1px solid #e4e4e4;
|
|
1134
1137
|
border-radius: 2px;
|
|
1135
1138
|
color: #fff;
|
|
@@ -1299,6 +1302,10 @@
|
|
|
1299
1302
|
overflow: hidden;
|
|
1300
1303
|
opacity: 0;
|
|
1301
1304
|
}
|
|
1305
|
+
.e-schedule .e-month-view .e-month-event-table {
|
|
1306
|
+
position: absolute;
|
|
1307
|
+
top: 0;
|
|
1308
|
+
}
|
|
1302
1309
|
.e-schedule .e-month-view .e-content-wrap table tr:last-child td {
|
|
1303
1310
|
border-bottom-width: 0;
|
|
1304
1311
|
}
|
|
@@ -1386,7 +1393,7 @@
|
|
|
1386
1393
|
z-index: 1;
|
|
1387
1394
|
}
|
|
1388
1395
|
.e-schedule .e-month-view .e-appointment {
|
|
1389
|
-
background:
|
|
1396
|
+
background: rgb(27.5, 127.5, 0);
|
|
1390
1397
|
border: 1px solid #e4e4e4;
|
|
1391
1398
|
border-radius: 2px;
|
|
1392
1399
|
color: #fff;
|
|
@@ -1485,7 +1492,7 @@
|
|
|
1485
1492
|
-ms-flex: 0 25%;
|
|
1486
1493
|
flex: 0 25%;
|
|
1487
1494
|
max-width: 100%;
|
|
1488
|
-
min-width:
|
|
1495
|
+
min-width: 300px;
|
|
1489
1496
|
padding: 10px;
|
|
1490
1497
|
}
|
|
1491
1498
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-header .e-title {
|
|
@@ -1506,7 +1513,7 @@
|
|
|
1506
1513
|
}
|
|
1507
1514
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-appointment,
|
|
1508
1515
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-appointment-indicator {
|
|
1509
|
-
background:
|
|
1516
|
+
background: rgb(27.5, 127.5, 0);
|
|
1510
1517
|
border-radius: 50%;
|
|
1511
1518
|
height: 5px;
|
|
1512
1519
|
margin: -6px auto 0;
|
|
@@ -1714,7 +1721,7 @@
|
|
|
1714
1721
|
z-index: 1;
|
|
1715
1722
|
}
|
|
1716
1723
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment {
|
|
1717
|
-
background:
|
|
1724
|
+
background: rgb(27.5, 127.5, 0);
|
|
1718
1725
|
border: 1px solid #e4e4e4;
|
|
1719
1726
|
border-radius: 2px;
|
|
1720
1727
|
color: #fff;
|
|
@@ -1950,7 +1957,7 @@
|
|
|
1950
1957
|
}
|
|
1951
1958
|
.e-schedule .e-timeline-view .e-appointment,
|
|
1952
1959
|
.e-schedule .e-timeline-month-view .e-appointment {
|
|
1953
|
-
background:
|
|
1960
|
+
background: rgb(27.5, 127.5, 0);
|
|
1954
1961
|
border: 1px solid #e4e4e4;
|
|
1955
1962
|
border-radius: 2px;
|
|
1956
1963
|
color: #fff;
|
|
@@ -2236,7 +2243,7 @@
|
|
|
2236
2243
|
padding: 0 8px;
|
|
2237
2244
|
}
|
|
2238
2245
|
.e-schedule .e-month-agenda-view .e-appointment {
|
|
2239
|
-
border-left: 3px solid
|
|
2246
|
+
border-left: 3px solid rgb(27.5, 127.5, 0);
|
|
2240
2247
|
border-right: 0;
|
|
2241
2248
|
cursor: default;
|
|
2242
2249
|
padding: 0 8px;
|
|
@@ -2304,7 +2311,7 @@
|
|
|
2304
2311
|
padding: 0;
|
|
2305
2312
|
}
|
|
2306
2313
|
.e-schedule .e-month-agenda-view .e-work-cells .e-appointment-indicator {
|
|
2307
|
-
background:
|
|
2314
|
+
background: rgb(27.5, 127.5, 0);
|
|
2308
2315
|
border-radius: 50%;
|
|
2309
2316
|
height: 6px;
|
|
2310
2317
|
left: 0;
|
|
@@ -2318,7 +2325,7 @@
|
|
|
2318
2325
|
}
|
|
2319
2326
|
.e-schedule.e-rtl .e-month-agenda-view .e-appointment {
|
|
2320
2327
|
border-left: 0;
|
|
2321
|
-
border-right: 3px solid
|
|
2328
|
+
border-right: 3px solid rgb(27.5, 127.5, 0);
|
|
2322
2329
|
}
|
|
2323
2330
|
.e-schedule.e-rtl .e-month-agenda-view .e-resource-column {
|
|
2324
2331
|
border-bottom: 1px solid #757575;
|
|
@@ -2342,6 +2349,9 @@
|
|
|
2342
2349
|
.e-schedule .e-agenda-view {
|
|
2343
2350
|
background: #e4e4e4;
|
|
2344
2351
|
}
|
|
2352
|
+
.e-schedule .e-agenda-view .e-agenda-load-more {
|
|
2353
|
+
font-size: 14px;
|
|
2354
|
+
}
|
|
2345
2355
|
.e-schedule .e-agenda-view .e-content-wrap table td:first-child,
|
|
2346
2356
|
.e-schedule .e-agenda-view .e-date-column {
|
|
2347
2357
|
vertical-align: top;
|
|
@@ -2355,7 +2365,7 @@
|
|
|
2355
2365
|
border-right: 1px solid #757575;
|
|
2356
2366
|
}
|
|
2357
2367
|
.e-schedule .e-agenda-view .e-month-header {
|
|
2358
|
-
background:
|
|
2368
|
+
background: rgb(27.5, 127.5, 0);
|
|
2359
2369
|
height: 100px;
|
|
2360
2370
|
padding-top: 12px;
|
|
2361
2371
|
vertical-align: top;
|
|
@@ -2465,7 +2475,7 @@
|
|
|
2465
2475
|
padding: 0;
|
|
2466
2476
|
}
|
|
2467
2477
|
.e-schedule .e-agenda-view .e-appointment {
|
|
2468
|
-
border-left: 3px solid
|
|
2478
|
+
border-left: 3px solid rgb(27.5, 127.5, 0);
|
|
2469
2479
|
border-right: 0;
|
|
2470
2480
|
cursor: default;
|
|
2471
2481
|
padding: 0 8px;
|
|
@@ -2512,7 +2522,7 @@
|
|
|
2512
2522
|
}
|
|
2513
2523
|
.e-schedule.e-rtl .e-agenda-view .e-appointment {
|
|
2514
2524
|
border-left: 0;
|
|
2515
|
-
border-right: 3px solid
|
|
2525
|
+
border-right: 3px solid rgb(27.5, 127.5, 0);
|
|
2516
2526
|
}
|
|
2517
2527
|
.e-schedule.e-rtl .e-agenda-view .e-resource-column {
|
|
2518
2528
|
border-left: 1px solid #757575;
|
|
@@ -2571,12 +2581,19 @@
|
|
|
2571
2581
|
visibility: hidden;
|
|
2572
2582
|
}
|
|
2573
2583
|
|
|
2584
|
+
.e-field-error-message {
|
|
2585
|
+
display: block;
|
|
2586
|
+
}
|
|
2587
|
+
|
|
2574
2588
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2575
|
-
width:
|
|
2589
|
+
width: 440px;
|
|
2576
2590
|
}
|
|
2577
2591
|
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content {
|
|
2578
2592
|
padding: 2%;
|
|
2579
2593
|
}
|
|
2594
|
+
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content button {
|
|
2595
|
+
margin-bottom: 6px;
|
|
2596
|
+
}
|
|
2580
2597
|
@media screen and (max-width: 767px) {
|
|
2581
2598
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2582
2599
|
width: 289px;
|
|
@@ -2605,9 +2622,8 @@
|
|
|
2605
2622
|
.e-dialog.e-quick-dialog .e-footer-content {
|
|
2606
2623
|
border-top: none;
|
|
2607
2624
|
}
|
|
2608
|
-
.e-dialog.e-quick-dialog .e-
|
|
2609
|
-
-
|
|
2610
|
-
box-shadow: none;
|
|
2625
|
+
.e-dialog.e-quick-dialog .e-footer-content button {
|
|
2626
|
+
margin-bottom: 6px;
|
|
2611
2627
|
}
|
|
2612
2628
|
.e-dialog.e-quick-dialog.e-rtl {
|
|
2613
2629
|
text-align: right;
|
|
@@ -2750,6 +2766,11 @@
|
|
|
2750
2766
|
float: right;
|
|
2751
2767
|
}
|
|
2752
2768
|
|
|
2769
|
+
.e-editor-content-item-template {
|
|
2770
|
+
text-overflow: ellipsis;
|
|
2771
|
+
overflow: hidden;
|
|
2772
|
+
}
|
|
2773
|
+
|
|
2753
2774
|
/*! schedule event window for smaller viewports*/
|
|
2754
2775
|
@media screen and (max-width: 320px) {
|
|
2755
2776
|
.e-schedule-dialog.e-popup.e-popup-open {
|
|
@@ -3024,8 +3045,8 @@
|
|
|
3024
3045
|
padding: 0 18px 8px;
|
|
3025
3046
|
}
|
|
3026
3047
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-subject-wrap .e-subject {
|
|
3027
|
-
background: rgba(
|
|
3028
|
-
border-left: 6px solid
|
|
3048
|
+
background: rgba(27.5, 127.5, 0, 0.3);
|
|
3049
|
+
border-left: 6px solid rgb(27.5, 127.5, 0);
|
|
3029
3050
|
border-radius: 2px;
|
|
3030
3051
|
color: #fff;
|
|
3031
3052
|
cursor: default;
|
|
@@ -3038,6 +3059,10 @@
|
|
|
3038
3059
|
.e-quick-popup-wrapper .e-event-popup .e-popup-content {
|
|
3039
3060
|
padding: 0 18px 16px 26px;
|
|
3040
3061
|
}
|
|
3062
|
+
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-popup-header-title-text,
|
|
3063
|
+
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-popup-header-title-text {
|
|
3064
|
+
display: none;
|
|
3065
|
+
}
|
|
3041
3066
|
.e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper,
|
|
3042
3067
|
.e-quick-popup-wrapper .e-event-popup .e-header-icon-wrapper {
|
|
3043
3068
|
display: -webkit-box;
|
|
@@ -3253,7 +3278,7 @@
|
|
|
3253
3278
|
}
|
|
3254
3279
|
}
|
|
3255
3280
|
.e-appointment.e-schedule-event-clone {
|
|
3256
|
-
background:
|
|
3281
|
+
background: rgb(27.5, 127.5, 0);
|
|
3257
3282
|
border-radius: 2px;
|
|
3258
3283
|
-webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
3259
3284
|
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
@@ -3418,7 +3443,7 @@
|
|
|
3418
3443
|
color: #000;
|
|
3419
3444
|
}
|
|
3420
3445
|
.e-more-popup-wrapper .e-appointment {
|
|
3421
|
-
background:
|
|
3446
|
+
background: rgb(27.5, 127.5, 0);
|
|
3422
3447
|
border-radius: 2px;
|
|
3423
3448
|
color: #fff;
|
|
3424
3449
|
display: -webkit-box;
|
|
@@ -4070,7 +4095,7 @@
|
|
|
4070
4095
|
}
|
|
4071
4096
|
.e-bigger .e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar,
|
|
4072
4097
|
.e-bigger.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
|
|
4073
|
-
min-width:
|
|
4098
|
+
min-width: 350px;
|
|
4074
4099
|
}
|
|
4075
4100
|
|
|
4076
4101
|
/*! schedule event tooltip */
|
|
@@ -4081,7 +4106,7 @@
|
|
|
4081
4106
|
}
|
|
4082
4107
|
|
|
4083
4108
|
.e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
4084
|
-
width:
|
|
4109
|
+
width: 520px;
|
|
4085
4110
|
}
|
|
4086
4111
|
|
|
4087
4112
|
.e-bigger .e-dialog.e-quick-dialog {
|
|
@@ -4106,16 +4131,6 @@
|
|
|
4106
4131
|
padding-bottom: 12px;
|
|
4107
4132
|
position: relative;
|
|
4108
4133
|
}
|
|
4109
|
-
.e-bigger .e-schedule-dialog .e-event-cancel,
|
|
4110
|
-
.e-bigger .e-schedule-dialog .e-event-delete {
|
|
4111
|
-
border: 1px solid #000;
|
|
4112
|
-
-webkit-box-shadow: none;
|
|
4113
|
-
box-shadow: none;
|
|
4114
|
-
}
|
|
4115
|
-
.e-bigger .e-schedule-dialog .e-footer-content .e-btn.e-event-delete {
|
|
4116
|
-
float: left;
|
|
4117
|
-
margin-left: 0;
|
|
4118
|
-
}
|
|
4119
4134
|
.e-bigger .e-schedule-dialog .e-subject-container,
|
|
4120
4135
|
.e-bigger .e-schedule-dialog .e-start-container,
|
|
4121
4136
|
.e-bigger .e-schedule-dialog .e-start-time-zone-container,
|
|
@@ -4211,9 +4226,6 @@
|
|
|
4211
4226
|
padding-left: 0;
|
|
4212
4227
|
padding-right: 12px;
|
|
4213
4228
|
}
|
|
4214
|
-
.e-bigger .e-schedule-dialog.e-rtl .e-event-delete {
|
|
4215
|
-
float: right;
|
|
4216
|
-
}
|
|
4217
4229
|
|
|
4218
4230
|
/*! schedule quick popup */
|
|
4219
4231
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
@@ -4531,7 +4543,7 @@
|
|
|
4531
4543
|
color: #000;
|
|
4532
4544
|
}
|
|
4533
4545
|
.e-bigger .e-more-popup-wrapper .e-appointment {
|
|
4534
|
-
background:
|
|
4546
|
+
background: rgb(27.5, 127.5, 0);
|
|
4535
4547
|
border-radius: 2px;
|
|
4536
4548
|
color: #fff;
|
|
4537
4549
|
display: -webkit-box;
|
|
@@ -4737,6 +4749,10 @@
|
|
|
4737
4749
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
|
|
4738
4750
|
display: none;
|
|
4739
4751
|
}
|
|
4752
|
+
.e-recurrenceeditor .e-input-wrapper.e-month-expander-checkbox-wrapper.e-repeat-on-week-selector {
|
|
4753
|
+
min-width: 30px;
|
|
4754
|
+
margin-bottom: 18px;
|
|
4755
|
+
}
|
|
4740
4756
|
.e-recurrenceeditor .e-input-wrapper-side {
|
|
4741
4757
|
float: left;
|
|
4742
4758
|
padding: 16px 20px 0;
|
|
@@ -4908,7 +4924,7 @@
|
|
|
4908
4924
|
width: 65%;
|
|
4909
4925
|
}
|
|
4910
4926
|
.e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
|
|
4911
|
-
padding-left:
|
|
4927
|
+
padding-left: 59px;
|
|
4912
4928
|
}
|
|
4913
4929
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4914
4930
|
padding-right: 0;
|