@syncfusion/ej2-schedule 19.3.55 → 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/.github/PULL_REQUEST_TEMPLATE/Bug.md +63 -0
- package/.github/PULL_REQUEST_TEMPLATE/Feature.md +39 -0
- package/CHANGELOG.md +24 -1
- 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 +423 -101
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +427 -108
- 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 +15 -15
- package/src/recurrence-editor/recurrence-editor.js +2 -2
- package/src/schedule/actions/drag.js +12 -4
- package/src/schedule/actions/keyboard.d.ts +7 -0
- package/src/schedule/actions/keyboard.js +197 -28
- package/src/schedule/base/interface.d.ts +12 -0
- package/src/schedule/base/resource.js +1 -0
- package/src/schedule/base/schedule-model.d.ts +89 -20
- package/src/schedule/base/schedule.d.ts +88 -19
- package/src/schedule/base/schedule.js +14 -3
- package/src/schedule/base/util.d.ts +1 -0
- package/src/schedule/base/util.js +1 -0
- package/src/schedule/event-renderer/event-base.d.ts +1 -0
- package/src/schedule/event-renderer/event-base.js +18 -2
- package/src/schedule/event-renderer/inline-edit.js +8 -5
- package/src/schedule/event-renderer/month.js +1 -1
- package/src/schedule/event-renderer/timeline-view.js +4 -0
- package/src/schedule/event-renderer/vertical-view.js +9 -6
- package/src/schedule/event-renderer/year.js +1 -1
- package/src/schedule/exports/excel-export.d.ts +2 -1
- package/src/schedule/exports/excel-export.js +21 -18
- package/src/schedule/models/event-settings-model.d.ts +17 -9
- package/src/schedule/models/event-settings.d.ts +15 -8
- package/src/schedule/models/event-settings.js +6 -3
- package/src/schedule/models/views-model.d.ts +19 -0
- package/src/schedule/models/views.d.ts +17 -0
- package/src/schedule/models/views.js +6 -0
- package/src/schedule/popups/quick-popups.js +3 -0
- package/src/schedule/renderer/agenda.js +2 -1
- package/src/schedule/renderer/header-renderer.d.ts +1 -0
- package/src/schedule/renderer/header-renderer.js +22 -8
- package/src/schedule/renderer/month.d.ts +4 -0
- package/src/schedule/renderer/month.js +68 -19
- package/src/schedule/renderer/timeline-year.js +3 -0
- package/src/schedule/renderer/view-base.js +9 -0
- package/src/schedule/renderer/year.d.ts +2 -2
- package/src/schedule/renderer/year.js +24 -6
- 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-definition.scss +7 -0
- package/styles/recurrence-editor/_bootstrap-definition.scss +7 -0
- package/styles/recurrence-editor/_bootstrap4-definition.scss +7 -0
- package/styles/recurrence-editor/_bootstrap5-definition.scss +7 -0
- package/styles/recurrence-editor/_fabric-dark-definition.scss +8 -0
- package/styles/recurrence-editor/_fabric-definition.scss +7 -0
- package/styles/recurrence-editor/_fluent-definition.scss +15 -0
- package/styles/recurrence-editor/_highcontrast-definition.scss +7 -0
- package/styles/recurrence-editor/_highcontrast-light-definition.scss +7 -0
- package/styles/recurrence-editor/_layout.scss +20 -4
- package/styles/recurrence-editor/_material-dark-definition.scss +7 -0
- package/styles/recurrence-editor/_material-definition.scss +7 -0
- package/styles/recurrence-editor/_tailwind-definition.scss +15 -8
- 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-definition.scss +22 -1
- package/styles/schedule/_bootstrap-definition.scss +22 -1
- package/styles/schedule/_bootstrap4-definition.scss +23 -1
- package/styles/schedule/_bootstrap5-definition.scss +145 -119
- package/styles/schedule/_fabric-dark-definition.scss +22 -1
- package/styles/schedule/_fabric-definition.scss +22 -1
- package/styles/schedule/_fluent-definition.scss +218 -0
- package/styles/schedule/_highcontrast-definition.scss +22 -1
- package/styles/schedule/_highcontrast-light-definition.scss +22 -1
- package/styles/schedule/_layout.scss +95 -158
- package/styles/schedule/_material-dark-definition.scss +22 -1
- package/styles/schedule/_material-definition.scss +21 -0
- package/styles/schedule/_tailwind-definition.scss +216 -195
- package/styles/schedule/_theme.scss +1 -1
- 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/icons/_fluent.scss +231 -0
- package/styles/schedule/icons/_tailwind.scss +231 -231
- 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
|
@@ -40,10 +40,6 @@
|
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
-
.e-toolbar-pop {
|
|
44
|
-
overflow: auto;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
43
|
.e-tbar-btn {
|
|
48
44
|
.e-tbar-btn-text {
|
|
49
45
|
cursor: pointer;
|
|
@@ -74,7 +70,9 @@
|
|
|
74
70
|
&.e-tbtn-txt {
|
|
75
71
|
.e-icons.e-icon-right.e-btn-icon.e-icon-down-arrow {
|
|
76
72
|
font-size: $schedule-tbar-down-arrow-font-size;
|
|
77
|
-
|
|
73
|
+
@if ($schedule-skin != 'bootstrap5') {
|
|
74
|
+
padding-top: $schedule-tbar-down-arrow-padding-top;
|
|
75
|
+
}
|
|
78
76
|
}
|
|
79
77
|
}
|
|
80
78
|
}
|
|
@@ -127,11 +125,7 @@
|
|
|
127
125
|
}
|
|
128
126
|
|
|
129
127
|
.e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
130
|
-
@if $schedule-skin == '
|
|
131
|
-
padding-right: 0;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
128
|
+
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'fabric' or $schedule-skin == 'bootstrap-dark' or $schedule-skin == 'fabric-dark' or $schedule-skin == 'highcontrast') {
|
|
135
129
|
padding: 0 12px;
|
|
136
130
|
}
|
|
137
131
|
}
|
|
@@ -206,6 +200,10 @@
|
|
|
206
200
|
.e-date-range .e-tbar-btn .e-tbar-btn-text {
|
|
207
201
|
font-size: $schedule-header-device-font-size;
|
|
208
202
|
}
|
|
203
|
+
|
|
204
|
+
.e-toolbar-pop {
|
|
205
|
+
overflow: auto;
|
|
206
|
+
}
|
|
209
207
|
}
|
|
210
208
|
|
|
211
209
|
.e-content-wrap.e-scroll-hidden {
|
|
@@ -290,17 +288,14 @@
|
|
|
290
288
|
|
|
291
289
|
.e-resource-tree-popup {
|
|
292
290
|
background: $schedule-tree-bg-color;
|
|
291
|
+
box-shadow: $schedule-more-indicator-shadow-color-res-tree-popup;
|
|
293
292
|
height: 100%;
|
|
294
293
|
position: absolute;
|
|
295
294
|
width: 250px;
|
|
296
295
|
|
|
297
296
|
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
298
|
-
box-shadow: $schedule-more-indicator-shadow-color;
|
|
299
297
|
color: $schedule-primary-content-font-color;
|
|
300
298
|
}
|
|
301
|
-
@else {
|
|
302
|
-
box-shadow: 0 3px 4px .2px $schedule-more-indicator-shadow-color;
|
|
303
|
-
}
|
|
304
299
|
|
|
305
300
|
.e-resource-tree {
|
|
306
301
|
height: 100%;
|
|
@@ -1270,10 +1265,7 @@
|
|
|
1270
1265
|
cursor: default;
|
|
1271
1266
|
font-weight: 400;
|
|
1272
1267
|
height: $schedule-month-header-cells-nrml-height;
|
|
1273
|
-
padding:
|
|
1274
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
1275
|
-
padding: 8px;
|
|
1276
|
-
}
|
|
1268
|
+
padding: $schedule-month-header-cells-padding;
|
|
1277
1269
|
}
|
|
1278
1270
|
|
|
1279
1271
|
.e-content-table {
|
|
@@ -1458,6 +1450,7 @@
|
|
|
1458
1450
|
|
|
1459
1451
|
.e-content span.e-day {
|
|
1460
1452
|
display: block;
|
|
1453
|
+
margin: 0 auto;
|
|
1461
1454
|
}
|
|
1462
1455
|
|
|
1463
1456
|
.e-other-month {
|
|
@@ -1475,9 +1468,8 @@
|
|
|
1475
1468
|
background-color: $schedule-appointment-bg-color;
|
|
1476
1469
|
border-radius: 50%;
|
|
1477
1470
|
height: 5px;
|
|
1478
|
-
margin
|
|
1479
|
-
|
|
1480
|
-
position: absolute;
|
|
1471
|
+
margin: -6px auto 0;
|
|
1472
|
+
position: relative;
|
|
1481
1473
|
width: 5px;
|
|
1482
1474
|
}
|
|
1483
1475
|
}
|
|
@@ -1534,10 +1526,6 @@
|
|
|
1534
1526
|
border-left-width: 0;
|
|
1535
1527
|
}
|
|
1536
1528
|
|
|
1537
|
-
.e-calendar-table td:not(.e-cell) {
|
|
1538
|
-
border-left: $border-size $border-type $schedule-content-border-color;
|
|
1539
|
-
}
|
|
1540
|
-
|
|
1541
1529
|
.e-resource .e-month-calendar {
|
|
1542
1530
|
max-width: 100%;
|
|
1543
1531
|
min-width: 100%;
|
|
@@ -1584,12 +1572,8 @@
|
|
|
1584
1572
|
color: $schedule-primary-content-font-color;
|
|
1585
1573
|
font-size: 13px;
|
|
1586
1574
|
overflow: hidden;
|
|
1587
|
-
padding:
|
|
1575
|
+
padding: $schedule-timeline-year-resource-text-padding;
|
|
1588
1576
|
text-overflow: ellipsis;
|
|
1589
|
-
|
|
1590
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
1591
|
-
padding: 4px 12px;
|
|
1592
|
-
}
|
|
1593
1577
|
}
|
|
1594
1578
|
|
|
1595
1579
|
.e-resource-left-td {
|
|
@@ -1613,14 +1597,10 @@
|
|
|
1613
1597
|
border-width: 0 1px 1px 0;
|
|
1614
1598
|
color: $schedule-primary-content-font-color;
|
|
1615
1599
|
height: $schedule-timeline-year-work-cells-height;
|
|
1616
|
-
padding-left:
|
|
1600
|
+
padding-left: $schedule-timeline-year-resource-cells-padding-left;
|
|
1617
1601
|
padding-right: 0;
|
|
1618
1602
|
vertical-align: middle;
|
|
1619
1603
|
|
|
1620
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
1621
|
-
padding-left: 12px;
|
|
1622
|
-
}
|
|
1623
|
-
|
|
1624
1604
|
&.e-child-node {
|
|
1625
1605
|
background-color: $schedule-workhour-bg-color;
|
|
1626
1606
|
}
|
|
@@ -1676,13 +1656,9 @@
|
|
|
1676
1656
|
&.e-current-day .e-date-header {
|
|
1677
1657
|
background-color: $schedule-current-date-bg-color;
|
|
1678
1658
|
border-radius: 50%;
|
|
1679
|
-
color: $schedule-active-color;
|
|
1659
|
+
color: $schedule-current-day-active-color;
|
|
1680
1660
|
margin: 2px;
|
|
1681
1661
|
width: 20px;
|
|
1682
|
-
|
|
1683
|
-
@if ($schedule-skin == 'highcontrast') {
|
|
1684
|
-
color: $schedule-active-font-color;
|
|
1685
|
-
}
|
|
1686
1662
|
}
|
|
1687
1663
|
|
|
1688
1664
|
&.e-selected-cell {
|
|
@@ -1770,12 +1746,8 @@
|
|
|
1770
1746
|
cursor: default;
|
|
1771
1747
|
font-weight: 400;
|
|
1772
1748
|
height: $schedule-month-header-cells-nrml-height;
|
|
1773
|
-
padding:
|
|
1749
|
+
padding: $schedule-timeline-year-left-indent-padding;
|
|
1774
1750
|
text-align: center;
|
|
1775
|
-
|
|
1776
|
-
@if ($schedule-skin == 'bootstrap4') {
|
|
1777
|
-
padding: 8px;
|
|
1778
|
-
}
|
|
1779
1751
|
}
|
|
1780
1752
|
|
|
1781
1753
|
.e-month-header,
|
|
@@ -1949,12 +1921,9 @@
|
|
|
1949
1921
|
.e-date-header-wrap table tbody td {
|
|
1950
1922
|
height: $schedule-timeline-header-cells-height;
|
|
1951
1923
|
overflow: hidden;
|
|
1952
|
-
padding:
|
|
1924
|
+
padding: $schedule-timeline-date-header-wrap-padding;
|
|
1953
1925
|
text-overflow: ellipsis;
|
|
1954
1926
|
white-space: nowrap;
|
|
1955
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
1956
|
-
padding: 8px 0 8px 8px;
|
|
1957
|
-
}
|
|
1958
1927
|
}
|
|
1959
1928
|
|
|
1960
1929
|
.e-date-header-wrap table tbody td.e-time-slots {
|
|
@@ -1995,11 +1964,8 @@
|
|
|
1995
1964
|
color: $schedule-primary-content-font-color;
|
|
1996
1965
|
font-size: 13px;
|
|
1997
1966
|
overflow: hidden;
|
|
1998
|
-
padding:
|
|
1967
|
+
padding: $schedule-timeline-year-resource-text-padding;
|
|
1999
1968
|
text-overflow: ellipsis;
|
|
2000
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
2001
|
-
padding: 4px 12px;
|
|
2002
|
-
}
|
|
2003
1969
|
}
|
|
2004
1970
|
|
|
2005
1971
|
.e-resource-left-td {
|
|
@@ -2019,12 +1985,9 @@
|
|
|
2019
1985
|
border-width: 0 1px 1px 0;
|
|
2020
1986
|
color: $schedule-primary-content-font-color;
|
|
2021
1987
|
height: $schedule-timeline-work-cells-height;
|
|
2022
|
-
padding-left:
|
|
1988
|
+
padding-left: $schedule-timeline-year-resource-cells-padding-left;
|
|
2023
1989
|
padding-right: 0;
|
|
2024
1990
|
vertical-align: middle;
|
|
2025
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
2026
|
-
padding-left: 12px;
|
|
2027
|
-
}
|
|
2028
1991
|
|
|
2029
1992
|
&:focus {
|
|
2030
1993
|
background-color: $schedule-hover-bg-color;
|
|
@@ -2046,7 +2009,7 @@
|
|
|
2046
2009
|
|
|
2047
2010
|
&.e-ignore-whitespace .e-work-cells,
|
|
2048
2011
|
&.e-ignore-whitespace .e-resource-cells {
|
|
2049
|
-
height:
|
|
2012
|
+
height: 60px;
|
|
2050
2013
|
}
|
|
2051
2014
|
|
|
2052
2015
|
&.e-virtual-mask .e-work-cells {
|
|
@@ -2391,11 +2354,7 @@
|
|
|
2391
2354
|
border-left: 3px solid $schedule-appointment-bg-color;
|
|
2392
2355
|
border-right: 0;
|
|
2393
2356
|
cursor: default;
|
|
2394
|
-
padding:
|
|
2395
|
-
|
|
2396
|
-
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
2397
|
-
padding: 0 16px;
|
|
2398
|
-
}
|
|
2357
|
+
padding: $schedule-month-agenda-appointment-padding;
|
|
2399
2358
|
|
|
2400
2359
|
&:hover {
|
|
2401
2360
|
background: $schedule-hover-bg-color;
|
|
@@ -2452,10 +2411,7 @@
|
|
|
2452
2411
|
}
|
|
2453
2412
|
|
|
2454
2413
|
.e-agenda-item.e-month-agenda-view {
|
|
2455
|
-
padding:
|
|
2456
|
-
@if ($schedule-skin == 'tailwind') {
|
|
2457
|
-
padding: 16px 0 0;
|
|
2458
|
-
}
|
|
2414
|
+
padding: $schedule-month-agenda-item-padding;
|
|
2459
2415
|
}
|
|
2460
2416
|
|
|
2461
2417
|
.e-agenda-parent.e-month-agenda-view {
|
|
@@ -2496,6 +2452,10 @@
|
|
|
2496
2452
|
border-right: 0;
|
|
2497
2453
|
vertical-align: top;
|
|
2498
2454
|
width: 75px;
|
|
2455
|
+
|
|
2456
|
+
.e-resource-name {
|
|
2457
|
+
white-space: normal;
|
|
2458
|
+
}
|
|
2499
2459
|
}
|
|
2500
2460
|
|
|
2501
2461
|
.e-day-padding {
|
|
@@ -2733,6 +2693,10 @@
|
|
|
2733
2693
|
border-right: 0;
|
|
2734
2694
|
vertical-align: top;
|
|
2735
2695
|
width: 75px;
|
|
2696
|
+
|
|
2697
|
+
.e-resource-name {
|
|
2698
|
+
white-space: normal;
|
|
2699
|
+
}
|
|
2736
2700
|
}
|
|
2737
2701
|
|
|
2738
2702
|
.e-day-padding {
|
|
@@ -2816,7 +2780,9 @@
|
|
|
2816
2780
|
margin: $schedule-tbar-btn-bgr-mrgn;
|
|
2817
2781
|
min-height: $schedule-tbar-btn-bgr-minheight;
|
|
2818
2782
|
min-width: $schedule-tbar-btn-bgr-minwidth;
|
|
2819
|
-
|
|
2783
|
+
@if ($schedule-skin != 'bootstrap' and $schedule-skin != 'bootstrap4' and $schedule-skin != 'bootstrap-dark') {
|
|
2784
|
+
padding: $schedule-tbar-btn-bgr-padding;
|
|
2785
|
+
}
|
|
2820
2786
|
|
|
2821
2787
|
&.e-tbtn-txt {
|
|
2822
2788
|
.e-icons {
|
|
@@ -2836,6 +2802,9 @@
|
|
|
2836
2802
|
@if ($schedule-skin == 'tailwind') {
|
|
2837
2803
|
padding-bottom: 2px;
|
|
2838
2804
|
}
|
|
2805
|
+
@if ($schedule-skin == 'bootstrap5') {
|
|
2806
|
+
padding-top: 3px;
|
|
2807
|
+
}
|
|
2839
2808
|
}
|
|
2840
2809
|
}
|
|
2841
2810
|
|
|
@@ -3018,6 +2987,10 @@
|
|
|
3018
2987
|
}
|
|
3019
2988
|
}
|
|
3020
2989
|
|
|
2990
|
+
.e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2991
|
+
width: 485px;
|
|
2992
|
+
}
|
|
2993
|
+
|
|
3021
2994
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
3022
2995
|
width: 420px;
|
|
3023
2996
|
|
|
@@ -3049,6 +3022,14 @@
|
|
|
3049
3022
|
display: none;
|
|
3050
3023
|
}
|
|
3051
3024
|
|
|
3025
|
+
.e-dlg-header-content {
|
|
3026
|
+
border-bottom: $schedule-alert-dialog-border;
|
|
3027
|
+
}
|
|
3028
|
+
|
|
3029
|
+
.e-footer-content {
|
|
3030
|
+
border-top: $schedule-alert-dialog-border;
|
|
3031
|
+
}
|
|
3032
|
+
|
|
3052
3033
|
.e-quick-dialog-cancel {
|
|
3053
3034
|
box-shadow: none;
|
|
3054
3035
|
}
|
|
@@ -3092,15 +3073,23 @@
|
|
|
3092
3073
|
|
|
3093
3074
|
.e-subject-container,
|
|
3094
3075
|
.e-start-container,
|
|
3095
|
-
.e-start-time-zone-container,
|
|
3096
3076
|
.e-description-label {
|
|
3097
3077
|
padding-right: 8px;
|
|
3098
3078
|
}
|
|
3099
3079
|
|
|
3080
|
+
.e-start-time-zone-container {
|
|
3081
|
+
padding-left: 4px;
|
|
3082
|
+
padding-right: 8px;
|
|
3083
|
+
}
|
|
3084
|
+
|
|
3100
3085
|
.e-location-container,
|
|
3101
|
-
.e-end-container
|
|
3086
|
+
.e-end-container {
|
|
3087
|
+
padding-left: 8px;
|
|
3088
|
+
}
|
|
3089
|
+
|
|
3102
3090
|
.e-end-time-zone-container {
|
|
3103
3091
|
padding-left: 8px;
|
|
3092
|
+
padding-right: 4px;
|
|
3104
3093
|
}
|
|
3105
3094
|
|
|
3106
3095
|
.e-all-day-container {
|
|
@@ -3139,12 +3128,8 @@
|
|
|
3139
3128
|
.e-start-input-container,
|
|
3140
3129
|
.e-end-input-container {
|
|
3141
3130
|
display: flex;
|
|
3142
|
-
padding-bottom:
|
|
3131
|
+
padding-bottom: $schedule-dialog-row-continer-padding-bottom;
|
|
3143
3132
|
width: 100%;
|
|
3144
|
-
|
|
3145
|
-
@if ($schedule-skin == 'bootstrap4') {
|
|
3146
|
-
padding-bottom: 14px;
|
|
3147
|
-
}
|
|
3148
3133
|
}
|
|
3149
3134
|
|
|
3150
3135
|
.e-resources {
|
|
@@ -3154,18 +3139,9 @@
|
|
|
3154
3139
|
|
|
3155
3140
|
.e-all-day-time-zone-row {
|
|
3156
3141
|
display: flex;
|
|
3157
|
-
padding-bottom:
|
|
3158
|
-
padding-top:
|
|
3142
|
+
padding-bottom: $schedule-dialog-all-day-row-padding-bottom;
|
|
3143
|
+
padding-top: $schedule-dialog-all-day-row-padding-top;
|
|
3159
3144
|
width: 100%;
|
|
3160
|
-
|
|
3161
|
-
@if ($schedule-skin == 'bootstrap4') {
|
|
3162
|
-
padding-top: 0;
|
|
3163
|
-
}
|
|
3164
|
-
|
|
3165
|
-
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
3166
|
-
padding-bottom: 12px;
|
|
3167
|
-
padding-top: 4px;
|
|
3168
|
-
}
|
|
3169
3145
|
}
|
|
3170
3146
|
|
|
3171
3147
|
.e-subject-container,
|
|
@@ -3202,19 +3178,27 @@
|
|
|
3202
3178
|
|
|
3203
3179
|
.e-subject-container,
|
|
3204
3180
|
.e-start-container,
|
|
3205
|
-
.e-start-time-zone-container,
|
|
3206
3181
|
.e-description-label {
|
|
3207
3182
|
padding-left: 8px;
|
|
3208
3183
|
padding-right: 0;
|
|
3209
3184
|
}
|
|
3210
3185
|
|
|
3186
|
+
.e-start-time-zone-container {
|
|
3187
|
+
padding-left: 8px;
|
|
3188
|
+
padding-right: 4px;
|
|
3189
|
+
}
|
|
3190
|
+
|
|
3211
3191
|
.e-location-container,
|
|
3212
|
-
.e-end-container
|
|
3213
|
-
.e-end-time-zone-container {
|
|
3192
|
+
.e-end-container {
|
|
3214
3193
|
padding-left: 0;
|
|
3215
3194
|
padding-right: 8px;
|
|
3216
3195
|
}
|
|
3217
3196
|
|
|
3197
|
+
.e-end-time-zone-container {
|
|
3198
|
+
padding-left: 4px;
|
|
3199
|
+
padding-right: 8px;
|
|
3200
|
+
}
|
|
3201
|
+
|
|
3218
3202
|
.e-event-delete {
|
|
3219
3203
|
float: right;
|
|
3220
3204
|
}
|
|
@@ -3303,12 +3287,8 @@
|
|
|
3303
3287
|
.e-end-input-container,
|
|
3304
3288
|
.e-time-zone-row {
|
|
3305
3289
|
display: flex;
|
|
3306
|
-
padding-bottom:
|
|
3290
|
+
padding-bottom: $schedule-bigger-dialog-row-continer-padding-bottom;
|
|
3307
3291
|
width: 100%;
|
|
3308
|
-
|
|
3309
|
-
@if ($schedule-skin == 'bootstrap4') {
|
|
3310
|
-
padding-bottom: 16px;
|
|
3311
|
-
}
|
|
3312
3292
|
}
|
|
3313
3293
|
|
|
3314
3294
|
.e-resources {
|
|
@@ -3345,11 +3325,7 @@
|
|
|
3345
3325
|
|
|
3346
3326
|
.e-all-day-time-zone-row {
|
|
3347
3327
|
padding-bottom: 16px;
|
|
3348
|
-
padding-top:
|
|
3349
|
-
|
|
3350
|
-
@if ($schedule-skin == 'bootstrap4') {
|
|
3351
|
-
padding-top: 0;
|
|
3352
|
-
}
|
|
3328
|
+
padding-top: $schedule-bigger-dialog-all-day-row-padding-top;
|
|
3353
3329
|
}
|
|
3354
3330
|
|
|
3355
3331
|
.e-description,
|
|
@@ -3457,11 +3433,7 @@
|
|
|
3457
3433
|
}
|
|
3458
3434
|
|
|
3459
3435
|
.e-all-day-time-zone-row {
|
|
3460
|
-
padding-top:
|
|
3461
|
-
|
|
3462
|
-
@if ($schedule-skin == 'bootstrap4') {
|
|
3463
|
-
padding-top: 0;
|
|
3464
|
-
}
|
|
3436
|
+
padding-top: $schedule-device-dialog-all-day-row-padding-top;
|
|
3465
3437
|
}
|
|
3466
3438
|
|
|
3467
3439
|
.e-resources {
|
|
@@ -3571,7 +3543,7 @@
|
|
|
3571
3543
|
/*! schedule quick popup */
|
|
3572
3544
|
.e-quick-popup-wrapper {
|
|
3573
3545
|
background-color: $schedule-popup-bg-color;
|
|
3574
|
-
border-radius:
|
|
3546
|
+
border-radius: $schedule-more-popup-wrapper-border-radius;
|
|
3575
3547
|
box-shadow: $schedule-popup-box-shadow-1, $schedule-popup-box-shadow-2, $schedule-popup-box-shadow-3;
|
|
3576
3548
|
color: $schedule-primary-content-font-color;
|
|
3577
3549
|
max-width: 365px;
|
|
@@ -3583,13 +3555,6 @@
|
|
|
3583
3555
|
@if ($schedule-skin != 'material') {
|
|
3584
3556
|
border: 1px solid $schedule-popup-border-color;
|
|
3585
3557
|
}
|
|
3586
|
-
@if ($schedule-skin != 'material' and $schedule-skin == 'tailwind' and $schedule-skin == 'bootstrap5') {
|
|
3587
|
-
box-shadow: none;
|
|
3588
|
-
}
|
|
3589
|
-
|
|
3590
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
3591
|
-
border-radius: 6px;
|
|
3592
|
-
}
|
|
3593
3558
|
|
|
3594
3559
|
.e-hidden {
|
|
3595
3560
|
display: none;
|
|
@@ -3611,24 +3576,12 @@
|
|
|
3611
3576
|
|
|
3612
3577
|
&:focus,
|
|
3613
3578
|
&:hover {
|
|
3614
|
-
background: $schedule-popup-icon-
|
|
3615
|
-
color: $schedule-popup-icon-
|
|
3616
|
-
@if ($schedule-skin == 'bootstrap5') {
|
|
3617
|
-
background: $schedule-active-color;
|
|
3618
|
-
color: $schedule-popup-header-icon-hover-color;
|
|
3619
|
-
}
|
|
3579
|
+
background: $schedule-popup-header-icon-focus-bg-color;
|
|
3580
|
+
color: $schedule-popup-header-icon-focus-color;
|
|
3620
3581
|
}
|
|
3621
3582
|
|
|
3622
3583
|
.e-close-icon {
|
|
3623
|
-
font-size:
|
|
3624
|
-
|
|
3625
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'bootstrap5') {
|
|
3626
|
-
font-size: 14px;
|
|
3627
|
-
}
|
|
3628
|
-
|
|
3629
|
-
@if ($schedule-skin == 'tailwind') {
|
|
3630
|
-
font-size: 18px;
|
|
3631
|
-
}
|
|
3584
|
+
font-size: $schedule-popup-header-icon-font-size;
|
|
3632
3585
|
}
|
|
3633
3586
|
}
|
|
3634
3587
|
}
|
|
@@ -3707,14 +3660,7 @@
|
|
|
3707
3660
|
.e-edit-icon,
|
|
3708
3661
|
.e-delete-icon,
|
|
3709
3662
|
.e-close-icon {
|
|
3710
|
-
font-size:
|
|
3711
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'bootstrap5') {
|
|
3712
|
-
font-size: 14px;
|
|
3713
|
-
}
|
|
3714
|
-
|
|
3715
|
-
@if ($schedule-skin == 'tailwind') {
|
|
3716
|
-
font-size: 18px;
|
|
3717
|
-
}
|
|
3663
|
+
font-size: $schedule-popup-header-icon-font-size;
|
|
3718
3664
|
}
|
|
3719
3665
|
|
|
3720
3666
|
.e-edit:disabled,
|
|
@@ -3850,6 +3796,10 @@
|
|
|
3850
3796
|
margin-right: 10px;
|
|
3851
3797
|
}
|
|
3852
3798
|
|
|
3799
|
+
@if ($schedule-skin == 'fabric' or $schedule-skin == 'bootstrap') {
|
|
3800
|
+
margin-right: 8px;
|
|
3801
|
+
}
|
|
3802
|
+
|
|
3853
3803
|
&:disabled {
|
|
3854
3804
|
color: $schedule-disable-font-color;
|
|
3855
3805
|
}
|
|
@@ -3897,6 +3847,11 @@
|
|
|
3897
3847
|
margin-right: 10px;
|
|
3898
3848
|
}
|
|
3899
3849
|
}
|
|
3850
|
+
|
|
3851
|
+
.e-event-details {
|
|
3852
|
+
margin-left: 8px;
|
|
3853
|
+
}
|
|
3854
|
+
|
|
3900
3855
|
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
3901
3856
|
.e-popup-footer {
|
|
3902
3857
|
padding: 8px 8px 8px 18px;
|
|
@@ -3912,10 +3867,6 @@
|
|
|
3912
3867
|
}
|
|
3913
3868
|
}
|
|
3914
3869
|
|
|
3915
|
-
.e-event-details {
|
|
3916
|
-
margin-left: 8px;
|
|
3917
|
-
}
|
|
3918
|
-
|
|
3919
3870
|
.e-event-edit {
|
|
3920
3871
|
margin-left: 8px;
|
|
3921
3872
|
}
|
|
@@ -4085,10 +4036,6 @@
|
|
|
4085
4036
|
padding: 48px 24px 16px;
|
|
4086
4037
|
}
|
|
4087
4038
|
|
|
4088
|
-
.e-popup-footer {
|
|
4089
|
-
padding: 0 24px 12px 0;
|
|
4090
|
-
}
|
|
4091
|
-
|
|
4092
4039
|
.e-cell-popup .e-date-time-icon,
|
|
4093
4040
|
.e-event-popup .e-date-time-icon {
|
|
4094
4041
|
padding-right: 16px;
|
|
@@ -4284,22 +4231,16 @@
|
|
|
4284
4231
|
}
|
|
4285
4232
|
}
|
|
4286
4233
|
|
|
4234
|
+
.e-bigger .e-more-popup-wrapper,
|
|
4287
4235
|
.e-more-popup-wrapper {
|
|
4288
4236
|
background-color: $schedule-popup-bg-color;
|
|
4289
4237
|
border: 1px solid $schedule-popup-border-color;
|
|
4290
|
-
border-radius:
|
|
4238
|
+
border-radius: $schedule-more-popup-wrapper-border-radius;
|
|
4239
|
+
box-shadow: $schedule-more-indicator-shadow-color-more-popup;
|
|
4291
4240
|
opacity: 1;
|
|
4292
4241
|
padding: $schedule-more-popup-padding;
|
|
4293
4242
|
width: 225px;
|
|
4294
4243
|
|
|
4295
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
4296
|
-
border-radius: 6px;
|
|
4297
|
-
box-shadow: none;
|
|
4298
|
-
}
|
|
4299
|
-
@else {
|
|
4300
|
-
box-shadow: 0 10px 10px 0 $schedule-more-indicator-shadow-color;
|
|
4301
|
-
}
|
|
4302
|
-
|
|
4303
4244
|
.e-more-appointment-wrapper {
|
|
4304
4245
|
margin: 0 4px;
|
|
4305
4246
|
}
|
|
@@ -4391,13 +4332,9 @@
|
|
|
4391
4332
|
|
|
4392
4333
|
&:focus,
|
|
4393
4334
|
&:hover {
|
|
4394
|
-
background-color: $schedule-popup-icon-
|
|
4335
|
+
background-color: $schedule-popup-header-icon-focus-bg-color;
|
|
4395
4336
|
border-radius: 50%;
|
|
4396
|
-
color: $schedule-popup-icon-
|
|
4397
|
-
@if ($schedule-skin == 'bootstrap5') {
|
|
4398
|
-
background: $schedule-active-color;
|
|
4399
|
-
color: $schedule-popup-header-icon-hover-color;
|
|
4400
|
-
}
|
|
4337
|
+
color: $schedule-popup-header-icon-focus-color;
|
|
4401
4338
|
}
|
|
4402
4339
|
}
|
|
4403
4340
|
|
|
@@ -20,6 +20,7 @@ $schedule-hover-font-color: $grey-dark-font !default;
|
|
|
20
20
|
$schedule-active-color: $accent-font !default;
|
|
21
21
|
$schedule-active-border-color: $accent !default;
|
|
22
22
|
$schedule-active-font-color: $accent !default;
|
|
23
|
+
$schedule-current-day-active-color: $schedule-active-color !default;
|
|
23
24
|
|
|
24
25
|
$schedule-alternate-cell-border: dotted !default;
|
|
25
26
|
$schedule-header-cells-height: 60px !default;
|
|
@@ -27,6 +28,7 @@ $schedule-header-cells-padding: 5px !default;
|
|
|
27
28
|
$schedule-header-cells-width: 36px !default;
|
|
28
29
|
$schedule-month-header-cells-nrml-height: 30px !default;
|
|
29
30
|
$schedule-month-header-cells-bgr-height: 35px !default;
|
|
31
|
+
$schedule-month-header-cells-padding: 3px !default;
|
|
30
32
|
$schedule-allday-cells-height: 0 !default;
|
|
31
33
|
$schedule-work-cells-height: 36px !default;
|
|
32
34
|
$schedule-work-cells-width: 36px !default;
|
|
@@ -47,7 +49,7 @@ $schedule-timezone-enable-bgr-height: 60px !default;
|
|
|
47
49
|
$schedule-appointment-bg-color: $primary !default;
|
|
48
50
|
$schedule-appointment-details-padding: 0 4px !default;
|
|
49
51
|
$schedule-appointment-font-color: $primary-font !default;
|
|
50
|
-
$schedule-appointment-border-color: $
|
|
52
|
+
$schedule-appointment-border-color: $schedule-content-border-color !default;
|
|
51
53
|
$schedule-appointment-border-radius: 2px !default;
|
|
52
54
|
$schedule-appointment-selected-border: 1px solid $grey-white !default;
|
|
53
55
|
$schedule-appointment-active-border-color: $primary-50 !default;
|
|
@@ -71,6 +73,7 @@ $schedule-time-scale-device-font-size: 11px !default;
|
|
|
71
73
|
$schedule-current-time-nrml-font-size: 11px !default;
|
|
72
74
|
$schedule-current-time-bgr-font-size: 12px !default;
|
|
73
75
|
$schedule-current-time-bgr-device-font-size: 9px !default;
|
|
76
|
+
$schedule-popup-header-icon-font-size: 11px !default;
|
|
74
77
|
$schedule-time-scale-width: 85px !default;
|
|
75
78
|
$schedule-device-time-scale-width: 35px !default;
|
|
76
79
|
|
|
@@ -88,6 +91,8 @@ $schedule-agenda-date-header-padding: 10px 32px 0 16px !default;
|
|
|
88
91
|
$schedule-recurrence-font-size: 11px !default;
|
|
89
92
|
$schedule-agenda-item-padding: 10px 0 !default;
|
|
90
93
|
$schedule-agenda-appointment-padding: 0 8px !default;
|
|
94
|
+
$schedule-month-agenda-appointment-padding: 0 8px !default;
|
|
95
|
+
$schedule-month-agenda-item-padding: 10px 0 !default;
|
|
91
96
|
$schedule-popup-content-padding: 38px 18px 12px !default;
|
|
92
97
|
$schedule-popup-footer-padding: 8px 18px 8px 22px !default;
|
|
93
98
|
$schedule-date-header-line-height: 20px !default;
|
|
@@ -125,6 +130,7 @@ $schedule-tbar-btn-icn-right-bgr-padding: 0 !default;
|
|
|
125
130
|
|
|
126
131
|
$schedule-content-nrml-font-text-transform: uppercase !default;
|
|
127
132
|
$schedule-header-hover-border-radius: 0% !default;
|
|
133
|
+
$schedule-more-popup-wrapper-border-radius: 2px !default;
|
|
128
134
|
$schedule-box-shadow: 0 1px 1px rgba($grey-black, .15) !default;
|
|
129
135
|
$schedule-popup-box-shadow-1: 0 24px 38px 3px rgba($grey-black, .14) !default;
|
|
130
136
|
$schedule-popup-box-shadow-2: 0 9px 46px 8px rgba($grey-black, .12) !default;
|
|
@@ -142,13 +148,18 @@ $schedule-event-popup-content-padding: 0 18px 16px 26px !default;
|
|
|
142
148
|
$schedule-event-popup-fields-padding: 12px !default;
|
|
143
149
|
$schedule-popup-title-color: rgba($color: $schedule-appointment-bg-color, $alpha: .3) !default;
|
|
144
150
|
$schedule-popup-btn-border: none !default;
|
|
151
|
+
$schedule-alert-dialog-border: none !default;
|
|
145
152
|
$schedule-btn-txt-bgr-padding: 5px 12px !default;
|
|
146
153
|
$schedule-icon-color: $grey-white !default;
|
|
154
|
+
$schedule-popup-header-icon-focus-bg-color: $schedule-popup-icon-hover-bg-color !default;
|
|
155
|
+
$schedule-popup-header-icon-focus-color: $schedule-popup-icon-hover-color !default;
|
|
147
156
|
|
|
148
157
|
$schedule-event-box-shadow-1: 0 6px 10px 0 rgba($grey-black, .14) !default;
|
|
149
158
|
$schedule-event-box-shadow-2: 0 1px 18px 0 rgba($grey-black, .12) !default;
|
|
150
159
|
$schedule-event-box-shadow-3: 0 3px 5px -1px rgba($grey-black, .2) !default;
|
|
151
160
|
$schedule-more-indicator-shadow-color: $shadow-color !default;
|
|
161
|
+
$schedule-more-indicator-shadow-color-res-tree-popup: 0 3px 4px .2px $schedule-more-indicator-shadow-color !default;
|
|
162
|
+
$schedule-more-indicator-shadow-color-more-popup: 0 10px 10px 0 $schedule-more-indicator-shadow-color !default;
|
|
152
163
|
$schedule-more-indicator-nrml-font-size: 11px !default;
|
|
153
164
|
$schedule-more-popup-close-margin-top: 0 !default;
|
|
154
165
|
$schedule-more-popup-padding: 8px 0 !default;
|
|
@@ -166,6 +177,16 @@ $schedule-timeline-resources-width: 200px !default;
|
|
|
166
177
|
$schedule-timeline-appointment-height: 38px !default;
|
|
167
178
|
$schedule-timeline-year-work-cells-height: 75px !default;
|
|
168
179
|
$schedule-timeline-year-work-cells-width: 100px !default;
|
|
180
|
+
$schedule-timeline-year-resource-text-padding: 4px 15px !default;
|
|
181
|
+
$schedule-timeline-year-resource-cells-padding-left: 15px !default;
|
|
182
|
+
$schedule-timeline-year-left-indent-padding: 0 !default;
|
|
183
|
+
$schedule-timeline-date-header-wrap-padding: 5px !default;
|
|
184
|
+
$schedule-dialog-row-continer-padding-bottom: 12px !default;
|
|
185
|
+
$schedule-dialog-all-day-row-padding-top: 8px !default;
|
|
186
|
+
$schedule-dialog-all-day-row-padding-bottom: 14px !default;
|
|
187
|
+
$schedule-bigger-dialog-row-continer-padding-bottom: 12px !default;
|
|
188
|
+
$schedule-bigger-dialog-all-day-row-padding-top: 10px !default;
|
|
189
|
+
$schedule-device-dialog-all-day-row-padding-top: 20px !default;
|
|
169
190
|
|
|
170
191
|
$schedule-tree-bg-color: $grey-dark !default;
|
|
171
192
|
$schedule-popup-overlay-bg-color: #383838 !default;
|