@syncfusion/ej2-vue-schedule 19.3.46 → 19.4.38
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/CHANGELOG.md +52 -0
- package/dist/ej2-vue-schedule.umd.min.js +1 -10
- package/dist/es6/ej2-vue-schedule.es2015.js +3 -3
- package/dist/es6/ej2-vue-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-schedule.es5.js +3 -3
- package/dist/es6/ej2-vue-schedule.es5.js.map +1 -1
- package/dist/global/ej2-vue-schedule.min.js +2 -2
- package/package.json +8 -8
- package/src/recurrence-editor/recurrenceeditor.component.js +1 -1
- package/src/schedule/schedule.component.d.ts +1 -1
- package/src/schedule/schedule.component.js +2 -2
- package/styles/bootstrap-dark.css +108 -27
- package/styles/bootstrap.css +105 -27
- package/styles/bootstrap4.css +117 -62
- package/styles/bootstrap5-dark.css +118 -67
- package/styles/bootstrap5.css +118 -67
- package/styles/fabric-dark.css +108 -26
- package/styles/fabric.css +109 -26
- package/styles/highcontrast-light.css +104 -26
- package/styles/highcontrast.css +109 -28
- package/styles/material-dark.css +110 -32
- package/styles/material.css +103 -25
- package/styles/recurrence-editor/bootstrap-dark.css +20 -4
- package/styles/recurrence-editor/bootstrap.css +20 -4
- package/styles/recurrence-editor/bootstrap4.css +20 -4
- package/styles/recurrence-editor/bootstrap5-dark.css +20 -4
- package/styles/recurrence-editor/bootstrap5.css +20 -4
- package/styles/recurrence-editor/fabric-dark.css +20 -4
- package/styles/recurrence-editor/fabric.css +20 -4
- package/styles/recurrence-editor/highcontrast-light.css +20 -4
- package/styles/recurrence-editor/highcontrast.css +20 -4
- package/styles/recurrence-editor/material-dark.css +20 -4
- package/styles/recurrence-editor/material.css +20 -4
- package/styles/recurrence-editor/tailwind-dark.css +20 -4
- package/styles/recurrence-editor/tailwind.css +20 -4
- package/styles/schedule/bootstrap-dark.css +88 -23
- package/styles/schedule/bootstrap.css +85 -23
- package/styles/schedule/bootstrap4.css +97 -58
- package/styles/schedule/bootstrap5-dark.css +98 -63
- package/styles/schedule/bootstrap5.css +98 -63
- package/styles/schedule/fabric-dark.css +88 -22
- package/styles/schedule/fabric.css +89 -22
- package/styles/schedule/highcontrast-light.css +84 -22
- package/styles/schedule/highcontrast.css +89 -24
- package/styles/schedule/material-dark.css +90 -28
- package/styles/schedule/material.css +83 -21
- package/styles/schedule/tailwind-dark.css +94 -52
- package/styles/schedule/tailwind.css +94 -52
- package/styles/tailwind-dark.css +114 -56
- package/styles/tailwind.css +114 -56
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! Schedule
|
|
1
|
+
/*! Schedule's bootstrap5 theme wise override definitions and variables */
|
|
2
2
|
.e-schedule .e-schedule-toolbar .e-icon-prev::before {
|
|
3
3
|
content: '\e765';
|
|
4
4
|
}
|
|
@@ -231,10 +231,6 @@
|
|
|
231
231
|
color: #fff;
|
|
232
232
|
}
|
|
233
233
|
|
|
234
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-pop {
|
|
235
|
-
overflow: auto;
|
|
236
|
-
}
|
|
237
|
-
|
|
238
234
|
.e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
|
|
239
235
|
cursor: pointer;
|
|
240
236
|
font-size: 14px;
|
|
@@ -256,7 +252,6 @@
|
|
|
256
252
|
|
|
257
253
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-icon-right.e-btn-icon.e-icon-down-arrow {
|
|
258
254
|
font-size: 18px;
|
|
259
|
-
padding-top: 0;
|
|
260
255
|
}
|
|
261
256
|
|
|
262
257
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:focus, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:hover {
|
|
@@ -300,10 +295,6 @@
|
|
|
300
295
|
text-transform: initial;
|
|
301
296
|
}
|
|
302
297
|
|
|
303
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
304
|
-
padding: 0 12px;
|
|
305
|
-
}
|
|
306
|
-
|
|
307
298
|
.e-schedule .e-schedule-toolbar.e-rtl .e-hor-nav {
|
|
308
299
|
background: #282d31;
|
|
309
300
|
border-left: 0;
|
|
@@ -367,6 +358,10 @@
|
|
|
367
358
|
font-size: 16px;
|
|
368
359
|
}
|
|
369
360
|
|
|
361
|
+
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-pop {
|
|
362
|
+
overflow: auto;
|
|
363
|
+
}
|
|
364
|
+
|
|
370
365
|
.e-schedule.e-device .e-content-wrap.e-scroll-hidden {
|
|
371
366
|
overflow: hidden;
|
|
372
367
|
}
|
|
@@ -446,10 +441,10 @@
|
|
|
446
441
|
|
|
447
442
|
.e-schedule .e-resource-tree-popup {
|
|
448
443
|
background: #282d31;
|
|
444
|
+
box-shadow: 0 0.8px 16px rgba(0, 0, 0, 0.15);
|
|
449
445
|
height: 100%;
|
|
450
446
|
position: absolute;
|
|
451
447
|
width: 250px;
|
|
452
|
-
box-shadow: 0 0.8px 16px rgba(0, 0, 0, 0.15);
|
|
453
448
|
color: #fff;
|
|
454
449
|
}
|
|
455
450
|
|
|
@@ -1368,7 +1363,6 @@
|
|
|
1368
1363
|
cursor: default;
|
|
1369
1364
|
font-weight: 400;
|
|
1370
1365
|
height: 34px;
|
|
1371
|
-
padding: 3px;
|
|
1372
1366
|
padding: 8px;
|
|
1373
1367
|
}
|
|
1374
1368
|
|
|
@@ -1549,6 +1543,7 @@
|
|
|
1549
1543
|
|
|
1550
1544
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-content span.e-day {
|
|
1551
1545
|
display: block;
|
|
1546
|
+
margin: 0 auto;
|
|
1552
1547
|
}
|
|
1553
1548
|
|
|
1554
1549
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-other-month {
|
|
@@ -1567,9 +1562,8 @@
|
|
|
1567
1562
|
background-color: #0d6efd;
|
|
1568
1563
|
border-radius: 50%;
|
|
1569
1564
|
height: 5px;
|
|
1570
|
-
margin
|
|
1571
|
-
|
|
1572
|
-
position: absolute;
|
|
1565
|
+
margin: -6px auto 0;
|
|
1566
|
+
position: relative;
|
|
1573
1567
|
width: 5px;
|
|
1574
1568
|
}
|
|
1575
1569
|
|
|
@@ -1620,10 +1614,6 @@
|
|
|
1620
1614
|
border-left-width: 0;
|
|
1621
1615
|
}
|
|
1622
1616
|
|
|
1623
|
-
.e-schedule .e-year-view .e-calendar-table td:not(.e-cell) {
|
|
1624
|
-
border-left: 1px solid #444c54;
|
|
1625
|
-
}
|
|
1626
|
-
|
|
1627
1617
|
.e-schedule .e-year-view .e-resource .e-month-calendar {
|
|
1628
1618
|
max-width: 100%;
|
|
1629
1619
|
min-width: 100%;
|
|
@@ -1667,9 +1657,8 @@
|
|
|
1667
1657
|
color: #fff;
|
|
1668
1658
|
font-size: 13px;
|
|
1669
1659
|
overflow: hidden;
|
|
1670
|
-
padding: 4px 15px;
|
|
1671
|
-
text-overflow: ellipsis;
|
|
1672
1660
|
padding: 4px 12px;
|
|
1661
|
+
text-overflow: ellipsis;
|
|
1673
1662
|
}
|
|
1674
1663
|
|
|
1675
1664
|
.e-schedule .e-timeline-year-view .e-resource-left-td {
|
|
@@ -1694,10 +1683,9 @@
|
|
|
1694
1683
|
border-width: 0 1px 1px 0;
|
|
1695
1684
|
color: #fff;
|
|
1696
1685
|
height: 75px;
|
|
1697
|
-
padding-left:
|
|
1686
|
+
padding-left: 12px;
|
|
1698
1687
|
padding-right: 0;
|
|
1699
1688
|
vertical-align: middle;
|
|
1700
|
-
padding-left: 12px;
|
|
1701
1689
|
}
|
|
1702
1690
|
|
|
1703
1691
|
.e-schedule .e-timeline-year-view .e-resource-column-wrap .e-resource-cells.e-child-node {
|
|
@@ -2012,10 +2000,9 @@
|
|
|
2012
2000
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2013
2001
|
height: 36px;
|
|
2014
2002
|
overflow: hidden;
|
|
2015
|
-
padding:
|
|
2003
|
+
padding: 8px 0 8px 8px;
|
|
2016
2004
|
text-overflow: ellipsis;
|
|
2017
2005
|
white-space: nowrap;
|
|
2018
|
-
padding: 8px 0 8px 8px;
|
|
2019
2006
|
}
|
|
2020
2007
|
|
|
2021
2008
|
.e-schedule .e-timeline-view .e-date-header-wrap table tbody td.e-time-slots,
|
|
@@ -2060,9 +2047,8 @@
|
|
|
2060
2047
|
color: #fff;
|
|
2061
2048
|
font-size: 13px;
|
|
2062
2049
|
overflow: hidden;
|
|
2063
|
-
padding: 4px 15px;
|
|
2064
|
-
text-overflow: ellipsis;
|
|
2065
2050
|
padding: 4px 12px;
|
|
2051
|
+
text-overflow: ellipsis;
|
|
2066
2052
|
}
|
|
2067
2053
|
|
|
2068
2054
|
.e-schedule .e-timeline-view .e-resource-left-td,
|
|
@@ -2084,10 +2070,9 @@
|
|
|
2084
2070
|
border-width: 0 1px 1px 0;
|
|
2085
2071
|
color: #fff;
|
|
2086
2072
|
height: 60px;
|
|
2087
|
-
padding-left:
|
|
2073
|
+
padding-left: 12px;
|
|
2088
2074
|
padding-right: 0;
|
|
2089
2075
|
vertical-align: middle;
|
|
2090
|
-
padding-left: 12px;
|
|
2091
2076
|
}
|
|
2092
2077
|
|
|
2093
2078
|
.e-schedule .e-timeline-view .e-resource-cells:focus,
|
|
@@ -2115,7 +2100,7 @@
|
|
|
2115
2100
|
.e-schedule .e-timeline-view.e-ignore-whitespace .e-resource-cells,
|
|
2116
2101
|
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-work-cells,
|
|
2117
2102
|
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-resource-cells {
|
|
2118
|
-
height:
|
|
2103
|
+
height: 60px;
|
|
2119
2104
|
}
|
|
2120
2105
|
|
|
2121
2106
|
.e-schedule .e-timeline-view.e-virtual-mask .e-work-cells,
|
|
@@ -2478,7 +2463,6 @@
|
|
|
2478
2463
|
border-left: 3px solid #0d6efd;
|
|
2479
2464
|
border-right: 0;
|
|
2480
2465
|
cursor: default;
|
|
2481
|
-
padding: 0 8px;
|
|
2482
2466
|
padding: 0 16px;
|
|
2483
2467
|
}
|
|
2484
2468
|
|
|
@@ -2576,6 +2560,10 @@
|
|
|
2576
2560
|
width: 75px;
|
|
2577
2561
|
}
|
|
2578
2562
|
|
|
2563
|
+
.e-schedule.e-rtl .e-month-agenda-view .e-resource-column .e-resource-name {
|
|
2564
|
+
white-space: normal;
|
|
2565
|
+
}
|
|
2566
|
+
|
|
2579
2567
|
.e-schedule.e-rtl .e-month-agenda-view .e-day-padding {
|
|
2580
2568
|
padding-right: 8px;
|
|
2581
2569
|
}
|
|
@@ -2798,6 +2786,10 @@
|
|
|
2798
2786
|
width: 75px;
|
|
2799
2787
|
}
|
|
2800
2788
|
|
|
2789
|
+
.e-schedule.e-rtl .e-agenda-view .e-resource-column .e-resource-name {
|
|
2790
|
+
white-space: normal;
|
|
2791
|
+
}
|
|
2792
|
+
|
|
2801
2793
|
.e-schedule.e-rtl .e-agenda-view .e-day-padding {
|
|
2802
2794
|
padding-right: 8px;
|
|
2803
2795
|
}
|
|
@@ -2909,6 +2901,7 @@
|
|
|
2909
2901
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn .e-btn-icon,
|
|
2910
2902
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-btn-icon {
|
|
2911
2903
|
height: 25px;
|
|
2904
|
+
padding-top: 3px;
|
|
2912
2905
|
}
|
|
2913
2906
|
|
|
2914
2907
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-tbar-btn-text,
|
|
@@ -3030,6 +3023,10 @@
|
|
|
3030
3023
|
font-weight: 500;
|
|
3031
3024
|
}
|
|
3032
3025
|
|
|
3026
|
+
.e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
3027
|
+
width: 485px;
|
|
3028
|
+
}
|
|
3029
|
+
|
|
3033
3030
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
3034
3031
|
width: 420px;
|
|
3035
3032
|
}
|
|
@@ -3051,6 +3048,14 @@
|
|
|
3051
3048
|
display: none;
|
|
3052
3049
|
}
|
|
3053
3050
|
|
|
3051
|
+
.e-dialog.e-quick-dialog .e-dlg-header-content {
|
|
3052
|
+
border-bottom: none;
|
|
3053
|
+
}
|
|
3054
|
+
|
|
3055
|
+
.e-dialog.e-quick-dialog .e-footer-content {
|
|
3056
|
+
border-top: none;
|
|
3057
|
+
}
|
|
3058
|
+
|
|
3054
3059
|
.e-dialog.e-quick-dialog .e-quick-dialog-cancel {
|
|
3055
3060
|
box-shadow: none;
|
|
3056
3061
|
}
|
|
@@ -3088,15 +3093,23 @@
|
|
|
3088
3093
|
|
|
3089
3094
|
.e-schedule-dialog .e-subject-container,
|
|
3090
3095
|
.e-schedule-dialog .e-start-container,
|
|
3091
|
-
.e-schedule-dialog .e-start-time-zone-container,
|
|
3092
3096
|
.e-schedule-dialog .e-description-label {
|
|
3093
3097
|
padding-right: 8px;
|
|
3094
3098
|
}
|
|
3095
3099
|
|
|
3100
|
+
.e-schedule-dialog .e-start-time-zone-container {
|
|
3101
|
+
padding-left: 4px;
|
|
3102
|
+
padding-right: 8px;
|
|
3103
|
+
}
|
|
3104
|
+
|
|
3096
3105
|
.e-schedule-dialog .e-location-container,
|
|
3097
|
-
.e-schedule-dialog .e-end-container
|
|
3106
|
+
.e-schedule-dialog .e-end-container {
|
|
3107
|
+
padding-left: 8px;
|
|
3108
|
+
}
|
|
3109
|
+
|
|
3098
3110
|
.e-schedule-dialog .e-end-time-zone-container {
|
|
3099
3111
|
padding-left: 8px;
|
|
3112
|
+
padding-right: 4px;
|
|
3100
3113
|
}
|
|
3101
3114
|
|
|
3102
3115
|
.e-schedule-dialog .e-all-day-container {
|
|
@@ -3121,7 +3134,7 @@
|
|
|
3121
3134
|
}
|
|
3122
3135
|
|
|
3123
3136
|
.e-schedule-dialog .e-time-zone-row.e-enable {
|
|
3124
|
-
height:
|
|
3137
|
+
height: 60px;
|
|
3125
3138
|
margin-bottom: 12px;
|
|
3126
3139
|
}
|
|
3127
3140
|
|
|
@@ -3149,11 +3162,9 @@
|
|
|
3149
3162
|
.e-schedule-dialog .e-all-day-time-zone-row {
|
|
3150
3163
|
display: -ms-flexbox;
|
|
3151
3164
|
display: flex;
|
|
3152
|
-
padding-bottom: 14px;
|
|
3153
|
-
padding-top: 8px;
|
|
3154
|
-
width: 100%;
|
|
3155
3165
|
padding-bottom: 12px;
|
|
3156
3166
|
padding-top: 4px;
|
|
3167
|
+
width: 100%;
|
|
3157
3168
|
}
|
|
3158
3169
|
|
|
3159
3170
|
.e-schedule-dialog .e-subject-container,
|
|
@@ -3191,19 +3202,27 @@
|
|
|
3191
3202
|
|
|
3192
3203
|
.e-schedule-dialog.e-rtl .e-subject-container,
|
|
3193
3204
|
.e-schedule-dialog.e-rtl .e-start-container,
|
|
3194
|
-
.e-schedule-dialog.e-rtl .e-start-time-zone-container,
|
|
3195
3205
|
.e-schedule-dialog.e-rtl .e-description-label {
|
|
3196
3206
|
padding-left: 8px;
|
|
3197
3207
|
padding-right: 0;
|
|
3198
3208
|
}
|
|
3199
3209
|
|
|
3210
|
+
.e-schedule-dialog.e-rtl .e-start-time-zone-container {
|
|
3211
|
+
padding-left: 8px;
|
|
3212
|
+
padding-right: 4px;
|
|
3213
|
+
}
|
|
3214
|
+
|
|
3200
3215
|
.e-schedule-dialog.e-rtl .e-location-container,
|
|
3201
|
-
.e-schedule-dialog.e-rtl .e-end-container
|
|
3202
|
-
.e-schedule-dialog.e-rtl .e-end-time-zone-container {
|
|
3216
|
+
.e-schedule-dialog.e-rtl .e-end-container {
|
|
3203
3217
|
padding-left: 0;
|
|
3204
3218
|
padding-right: 8px;
|
|
3205
3219
|
}
|
|
3206
3220
|
|
|
3221
|
+
.e-schedule-dialog.e-rtl .e-end-time-zone-container {
|
|
3222
|
+
padding-left: 4px;
|
|
3223
|
+
padding-right: 8px;
|
|
3224
|
+
}
|
|
3225
|
+
|
|
3207
3226
|
.e-schedule-dialog.e-rtl .e-event-delete {
|
|
3208
3227
|
float: right;
|
|
3209
3228
|
}
|
|
@@ -3279,7 +3298,7 @@
|
|
|
3279
3298
|
.e-bigger .e-schedule-dialog .e-time-zone-row.e-enable {
|
|
3280
3299
|
display: -ms-flexbox;
|
|
3281
3300
|
display: flex;
|
|
3282
|
-
height:
|
|
3301
|
+
height: 66px;
|
|
3283
3302
|
}
|
|
3284
3303
|
|
|
3285
3304
|
.e-bigger .e-schedule-dialog .e-title-location-row,
|
|
@@ -3524,7 +3543,7 @@
|
|
|
3524
3543
|
/*! schedule quick popup */
|
|
3525
3544
|
.e-quick-popup-wrapper {
|
|
3526
3545
|
background-color: #212529;
|
|
3527
|
-
border-radius:
|
|
3546
|
+
border-radius: 6px;
|
|
3528
3547
|
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.175), 0 16px 48px rgba(0, 0, 0, 0.175), 0 16px 48px rgba(0, 0, 0, 0.175);
|
|
3529
3548
|
color: #fff;
|
|
3530
3549
|
max-width: 365px;
|
|
@@ -3535,7 +3554,6 @@
|
|
|
3535
3554
|
user-select: none;
|
|
3536
3555
|
width: 100%;
|
|
3537
3556
|
border: 1px solid #444c54;
|
|
3538
|
-
border-radius: 6px;
|
|
3539
3557
|
}
|
|
3540
3558
|
|
|
3541
3559
|
.e-quick-popup-wrapper .e-hidden {
|
|
@@ -3560,8 +3578,6 @@
|
|
|
3560
3578
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-delete:hover,
|
|
3561
3579
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close:focus,
|
|
3562
3580
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close:hover {
|
|
3563
|
-
background: #343a40;
|
|
3564
|
-
color: #adb5bd;
|
|
3565
3581
|
background: #212529;
|
|
3566
3582
|
color: #0d6efd;
|
|
3567
3583
|
}
|
|
@@ -3569,7 +3585,6 @@
|
|
|
3569
3585
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-edit .e-close-icon,
|
|
3570
3586
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-delete .e-close-icon,
|
|
3571
3587
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close .e-close-icon {
|
|
3572
|
-
font-size: 11px;
|
|
3573
3588
|
font-size: 14px;
|
|
3574
3589
|
}
|
|
3575
3590
|
|
|
@@ -3626,7 +3641,6 @@
|
|
|
3626
3641
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit-icon,
|
|
3627
3642
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete-icon,
|
|
3628
3643
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-close-icon {
|
|
3629
|
-
font-size: 11px;
|
|
3630
3644
|
font-size: 14px;
|
|
3631
3645
|
}
|
|
3632
3646
|
|
|
@@ -3784,6 +3798,10 @@
|
|
|
3784
3798
|
margin-right: 10px;
|
|
3785
3799
|
}
|
|
3786
3800
|
|
|
3801
|
+
.e-quick-popup-wrapper.e-rtl .e-event-details {
|
|
3802
|
+
margin-left: 8px;
|
|
3803
|
+
}
|
|
3804
|
+
|
|
3787
3805
|
.e-quick-popup-wrapper.e-rtl .e-popup-footer {
|
|
3788
3806
|
padding: 8px 8px 8px 18px;
|
|
3789
3807
|
}
|
|
@@ -3796,10 +3814,6 @@
|
|
|
3796
3814
|
padding: 0 13px;
|
|
3797
3815
|
}
|
|
3798
3816
|
|
|
3799
|
-
.e-quick-popup-wrapper.e-rtl .e-event-details {
|
|
3800
|
-
margin-left: 8px;
|
|
3801
|
-
}
|
|
3802
|
-
|
|
3803
3817
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3804
3818
|
margin-left: 8px;
|
|
3805
3819
|
}
|
|
@@ -3917,10 +3931,6 @@
|
|
|
3917
3931
|
padding: 48px 24px 16px;
|
|
3918
3932
|
}
|
|
3919
3933
|
|
|
3920
|
-
.e-bigger .e-quick-popup-wrapper .e-popup-footer {
|
|
3921
|
-
padding: 0 24px 12px 0;
|
|
3922
|
-
}
|
|
3923
|
-
|
|
3924
3934
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-date-time-icon,
|
|
3925
3935
|
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-date-time-icon {
|
|
3926
3936
|
padding-right: 16px;
|
|
@@ -4078,32 +4088,36 @@
|
|
|
4078
4088
|
width: 26px;
|
|
4079
4089
|
}
|
|
4080
4090
|
|
|
4091
|
+
.e-bigger .e-more-popup-wrapper,
|
|
4081
4092
|
.e-more-popup-wrapper {
|
|
4082
4093
|
background-color: #212529;
|
|
4083
4094
|
border: 1px solid #444c54;
|
|
4084
|
-
border-radius:
|
|
4095
|
+
border-radius: 6px;
|
|
4096
|
+
box-shadow: none;
|
|
4085
4097
|
opacity: 1;
|
|
4086
4098
|
padding: 8px 0;
|
|
4087
4099
|
width: 225px;
|
|
4088
|
-
border-radius: 6px;
|
|
4089
|
-
box-shadow: none;
|
|
4090
4100
|
}
|
|
4091
4101
|
|
|
4102
|
+
.e-bigger .e-more-popup-wrapper .e-more-appointment-wrapper,
|
|
4092
4103
|
.e-more-popup-wrapper .e-more-appointment-wrapper {
|
|
4093
4104
|
margin: 0 4px;
|
|
4094
4105
|
}
|
|
4095
4106
|
|
|
4107
|
+
.e-bigger .e-more-popup-wrapper .e-more-event-popup,
|
|
4096
4108
|
.e-more-popup-wrapper .e-more-event-popup {
|
|
4097
4109
|
height: 100%;
|
|
4098
4110
|
position: relative;
|
|
4099
4111
|
width: 100%;
|
|
4100
4112
|
}
|
|
4101
4113
|
|
|
4114
|
+
.e-bigger .e-more-popup-wrapper .e-more-event-header,
|
|
4102
4115
|
.e-more-popup-wrapper .e-more-event-header {
|
|
4103
4116
|
height: 35px;
|
|
4104
4117
|
margin: 0 8px 4px 14px;
|
|
4105
4118
|
}
|
|
4106
4119
|
|
|
4120
|
+
.e-bigger .e-more-popup-wrapper .e-more-event-content,
|
|
4107
4121
|
.e-more-popup-wrapper .e-more-event-content {
|
|
4108
4122
|
height: calc(100% - 35px);
|
|
4109
4123
|
max-height: 300px;
|
|
@@ -4113,20 +4127,24 @@
|
|
|
4113
4127
|
padding: 10px 10px 0;
|
|
4114
4128
|
}
|
|
4115
4129
|
|
|
4130
|
+
.e-bigger .e-more-popup-wrapper .e-more-event-content .e-appointment-border,
|
|
4116
4131
|
.e-more-popup-wrapper .e-more-event-content .e-appointment-border {
|
|
4117
4132
|
border: 0;
|
|
4118
4133
|
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15), 0 8px 12px rgba(0, 0, 0, 0.15), 0 8px 12px rgba(0, 0, 0, 0.15);
|
|
4119
4134
|
}
|
|
4120
4135
|
|
|
4136
|
+
.e-bigger .e-more-popup-wrapper .e-more-event-date-header,
|
|
4121
4137
|
.e-more-popup-wrapper .e-more-event-date-header {
|
|
4122
4138
|
height: 100%;
|
|
4123
4139
|
width: calc(100% - 25px);
|
|
4124
4140
|
}
|
|
4125
4141
|
|
|
4142
|
+
.e-bigger .e-more-popup-wrapper .e-more-event-date-header .e-current-date,
|
|
4126
4143
|
.e-more-popup-wrapper .e-more-event-date-header .e-current-date {
|
|
4127
4144
|
color: #0d6efd;
|
|
4128
4145
|
}
|
|
4129
4146
|
|
|
4147
|
+
.e-bigger .e-more-popup-wrapper .e-header-day,
|
|
4130
4148
|
.e-more-popup-wrapper .e-header-day {
|
|
4131
4149
|
color: #fff;
|
|
4132
4150
|
font-size: 14px;
|
|
@@ -4134,6 +4152,7 @@
|
|
|
4134
4152
|
padding-bottom: 2px;
|
|
4135
4153
|
}
|
|
4136
4154
|
|
|
4155
|
+
.e-bigger .e-more-popup-wrapper .e-header-date,
|
|
4137
4156
|
.e-more-popup-wrapper .e-header-date {
|
|
4138
4157
|
color: #fff;
|
|
4139
4158
|
font-size: 16px;
|
|
@@ -4141,15 +4160,18 @@
|
|
|
4141
4160
|
max-width: 15%;
|
|
4142
4161
|
}
|
|
4143
4162
|
|
|
4163
|
+
.e-bigger .e-more-popup-wrapper .e-header-date:hover,
|
|
4144
4164
|
.e-more-popup-wrapper .e-header-date:hover {
|
|
4145
4165
|
cursor: pointer;
|
|
4146
4166
|
text-decoration: underline;
|
|
4147
4167
|
}
|
|
4148
4168
|
|
|
4169
|
+
.e-bigger .e-more-popup-wrapper .e-header-date:focus,
|
|
4149
4170
|
.e-more-popup-wrapper .e-header-date:focus {
|
|
4150
4171
|
text-decoration: underline;
|
|
4151
4172
|
}
|
|
4152
4173
|
|
|
4174
|
+
.e-bigger .e-more-popup-wrapper .e-more-event-close,
|
|
4153
4175
|
.e-more-popup-wrapper .e-more-event-close {
|
|
4154
4176
|
background-color: transparent;
|
|
4155
4177
|
border: 0;
|
|
@@ -4162,23 +4184,26 @@
|
|
|
4162
4184
|
width: 25px;
|
|
4163
4185
|
}
|
|
4164
4186
|
|
|
4187
|
+
.e-bigger .e-more-popup-wrapper .e-more-event-close .e-close-icon,
|
|
4165
4188
|
.e-more-popup-wrapper .e-more-event-close .e-close-icon {
|
|
4166
4189
|
font-size: 9px;
|
|
4167
4190
|
font-size: 14px;
|
|
4168
4191
|
}
|
|
4169
4192
|
|
|
4193
|
+
.e-bigger .e-more-popup-wrapper .e-more-event-close .e-btn-icon,
|
|
4170
4194
|
.e-more-popup-wrapper .e-more-event-close .e-btn-icon {
|
|
4171
4195
|
margin-top: 8px;
|
|
4172
4196
|
}
|
|
4173
4197
|
|
|
4174
|
-
.e-more-popup-wrapper .e-more-event-close:focus, .e-more-popup-wrapper .e-more-event-close:hover
|
|
4175
|
-
|
|
4198
|
+
.e-bigger .e-more-popup-wrapper .e-more-event-close:focus, .e-bigger .e-more-popup-wrapper .e-more-event-close:hover,
|
|
4199
|
+
.e-more-popup-wrapper .e-more-event-close:focus,
|
|
4200
|
+
.e-more-popup-wrapper .e-more-event-close:hover {
|
|
4201
|
+
background-color: #212529;
|
|
4176
4202
|
border-radius: 50%;
|
|
4177
|
-
color: #adb5bd;
|
|
4178
|
-
background: #212529;
|
|
4179
4203
|
color: #0d6efd;
|
|
4180
4204
|
}
|
|
4181
4205
|
|
|
4206
|
+
.e-bigger .e-more-popup-wrapper .e-appointment,
|
|
4182
4207
|
.e-more-popup-wrapper .e-appointment {
|
|
4183
4208
|
background: #0d6efd;
|
|
4184
4209
|
border-radius: 2px;
|
|
@@ -4192,6 +4217,7 @@
|
|
|
4192
4217
|
width: 100%;
|
|
4193
4218
|
}
|
|
4194
4219
|
|
|
4220
|
+
.e-bigger .e-more-popup-wrapper .e-appointment .e-subject,
|
|
4195
4221
|
.e-more-popup-wrapper .e-appointment .e-subject {
|
|
4196
4222
|
color: #fff;
|
|
4197
4223
|
-ms-flex: auto;
|
|
@@ -4204,17 +4230,22 @@
|
|
|
4204
4230
|
white-space: nowrap;
|
|
4205
4231
|
}
|
|
4206
4232
|
|
|
4233
|
+
.e-bigger .e-more-popup-wrapper .e-appointment .e-recurrence-icon,
|
|
4234
|
+
.e-bigger .e-more-popup-wrapper .e-appointment .e-recurrence-edit-icon,
|
|
4207
4235
|
.e-more-popup-wrapper .e-appointment .e-recurrence-icon,
|
|
4208
4236
|
.e-more-popup-wrapper .e-appointment .e-recurrence-edit-icon {
|
|
4209
4237
|
line-height: 26px;
|
|
4210
4238
|
padding: 0 2px;
|
|
4211
4239
|
}
|
|
4212
4240
|
|
|
4213
|
-
.e-more-popup-wrapper .e-appointment.e-appointment-border, .e-more-popup-wrapper .e-appointment:focus
|
|
4241
|
+
.e-bigger .e-more-popup-wrapper .e-appointment.e-appointment-border, .e-bigger .e-more-popup-wrapper .e-appointment:focus,
|
|
4242
|
+
.e-more-popup-wrapper .e-appointment.e-appointment-border,
|
|
4243
|
+
.e-more-popup-wrapper .e-appointment:focus {
|
|
4214
4244
|
border: 0;
|
|
4215
4245
|
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15), 0 8px 12px rgba(0, 0, 0, 0.15), 0 8px 12px rgba(0, 0, 0, 0.15);
|
|
4216
4246
|
}
|
|
4217
4247
|
|
|
4248
|
+
.e-bigger .e-more-popup-wrapper.e-device,
|
|
4218
4249
|
.e-more-popup-wrapper.e-device {
|
|
4219
4250
|
bottom: 0;
|
|
4220
4251
|
height: 100%;
|
|
@@ -4228,18 +4259,22 @@
|
|
|
4228
4259
|
z-index: 1002;
|
|
4229
4260
|
}
|
|
4230
4261
|
|
|
4262
|
+
.e-bigger .e-more-popup-wrapper.e-device .e-more-event-content,
|
|
4231
4263
|
.e-more-popup-wrapper.e-device .e-more-event-content {
|
|
4232
4264
|
max-height: unset;
|
|
4233
4265
|
}
|
|
4234
4266
|
|
|
4267
|
+
.e-bigger .e-more-popup-wrapper.e-rtl .e-header-date,
|
|
4235
4268
|
.e-more-popup-wrapper.e-rtl .e-header-date {
|
|
4236
4269
|
padding-right: 10px;
|
|
4237
4270
|
}
|
|
4238
4271
|
|
|
4272
|
+
.e-bigger .e-more-popup-wrapper.e-rtl .e-header-day,
|
|
4239
4273
|
.e-more-popup-wrapper.e-rtl .e-header-day {
|
|
4240
4274
|
padding-right: 10px;
|
|
4241
4275
|
}
|
|
4242
4276
|
|
|
4277
|
+
.e-bigger .e-more-popup-wrapper.e-rtl .e-more-event-close,
|
|
4243
4278
|
.e-more-popup-wrapper.e-rtl .e-more-event-close {
|
|
4244
4279
|
left: 6px;
|
|
4245
4280
|
right: auto;
|
|
@@ -4728,8 +4763,13 @@
|
|
|
4728
4763
|
}
|
|
4729
4764
|
|
|
4730
4765
|
.e-recurrenceeditor .e-recurrence-table .e-week-position {
|
|
4766
|
+
min-width: 98px;
|
|
4731
4767
|
position: relative;
|
|
4732
|
-
right:
|
|
4768
|
+
right: 27px;
|
|
4769
|
+
}
|
|
4770
|
+
|
|
4771
|
+
.e-recurrenceeditor .e-recurrence-table .e-day-position {
|
|
4772
|
+
min-width: 120px;
|
|
4733
4773
|
}
|
|
4734
4774
|
|
|
4735
4775
|
.e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
@@ -4779,12 +4819,13 @@
|
|
|
4779
4819
|
}
|
|
4780
4820
|
|
|
4781
4821
|
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
4782
|
-
|
|
4822
|
+
position: relative;
|
|
4823
|
+
right: 10px;
|
|
4783
4824
|
}
|
|
4784
4825
|
|
|
4785
4826
|
.e-recurrenceeditor.e-rtl .e-week-position {
|
|
4786
|
-
|
|
4787
|
-
right:
|
|
4827
|
+
position: relative;
|
|
4828
|
+
right: -27px;
|
|
4788
4829
|
}
|
|
4789
4830
|
|
|
4790
4831
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
@@ -4921,15 +4962,25 @@
|
|
|
4921
4962
|
}
|
|
4922
4963
|
|
|
4923
4964
|
.e-bigger .e-recurrenceeditor .e-week-position {
|
|
4965
|
+
min-width: 162px;
|
|
4924
4966
|
padding-left: 55px;
|
|
4925
4967
|
padding-right: 0;
|
|
4926
4968
|
}
|
|
4927
4969
|
|
|
4970
|
+
.e-bigger .e-recurrenceeditor .e-day-position {
|
|
4971
|
+
min-width: 190px;
|
|
4972
|
+
padding-left: 54px;
|
|
4973
|
+
}
|
|
4974
|
+
|
|
4928
4975
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
4929
4976
|
font-size: 16px;
|
|
4930
4977
|
margin-bottom: 0;
|
|
4931
4978
|
}
|
|
4932
4979
|
|
|
4980
|
+
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4981
|
+
padding-right: 16px;
|
|
4982
|
+
}
|
|
4983
|
+
|
|
4933
4984
|
.e-bigger .e-recurrenceeditor .e-end-on-label {
|
|
4934
4985
|
margin-bottom: 0;
|
|
4935
4986
|
}
|