@syncfusion/ej2-schedule 32.1.25 → 33.1.44
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/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 +3 -3
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +3 -3
- 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 +11 -11
- package/src/schedule/actions/keyboard.js +1 -1
- package/src/schedule/event-renderer/month.js +1 -1
- package/src/schedule/models/event-settings-model.d.ts +2 -2
- package/src/schedule/models/event-settings.d.ts +2 -2
- package/src/schedule/models/resources-model.d.ts +2 -2
- package/src/schedule/models/resources.d.ts +2 -2
- package/src/schedule/renderer/timeline-year.js +1 -1
- package/styles/bds-lite.css +43 -1
- package/styles/bds.css +43 -1
- package/styles/bootstrap-dark-lite.css +43 -1
- package/styles/bootstrap-dark.css +43 -1
- package/styles/bootstrap-lite.css +43 -1
- package/styles/bootstrap.css +43 -1
- package/styles/bootstrap4-lite.css +43 -1
- package/styles/bootstrap4.css +43 -1
- package/styles/bootstrap5-dark-lite.css +47 -5
- package/styles/bootstrap5-dark.css +48 -6
- package/styles/bootstrap5-lite.css +47 -5
- package/styles/bootstrap5.3-lite.css +47 -5
- package/styles/bootstrap5.3.css +48 -6
- package/styles/bootstrap5.css +48 -6
- package/styles/fabric-dark-lite.css +43 -1
- package/styles/fabric-dark.css +43 -1
- package/styles/fabric-lite.css +43 -1
- package/styles/fabric.css +43 -1
- package/styles/fluent-dark-lite.css +47 -5
- package/styles/fluent-dark.css +48 -6
- package/styles/fluent-lite.css +47 -5
- package/styles/fluent.css +48 -6
- package/styles/fluent2-lite.css +47 -5
- package/styles/fluent2.css +48 -6
- package/styles/highcontrast-light-lite.css +43 -1
- package/styles/highcontrast-light.css +43 -1
- package/styles/highcontrast-lite.css +43 -1
- package/styles/highcontrast.css +43 -1
- package/styles/material-dark-lite.css +43 -1
- package/styles/material-dark.css +43 -1
- package/styles/material-lite.css +43 -1
- package/styles/material.css +43 -1
- package/styles/material3-dark-lite.css +47 -20
- package/styles/material3-dark.css +48 -22
- package/styles/material3-lite.css +47 -20
- package/styles/material3.css +48 -22
- package/styles/schedule/_bootstrap5-dark-definition.scss +1 -1
- package/styles/schedule/_bootstrap5-definition.scss +1 -1
- package/styles/schedule/_bootstrap5.3-definition.scss +1 -1
- package/styles/schedule/_fluent-dark-definition.scss +1 -1
- package/styles/schedule/_fluent-definition.scss +1 -1
- package/styles/schedule/_fluent2-definition.scss +1 -1
- package/styles/schedule/_layout.scss +54 -1
- package/styles/schedule/_material3-dark-definition.scss +1 -1
- package/styles/schedule/_material3-definition.scss +1 -1
- package/styles/schedule/_tailwind-dark-definition.scss +1 -1
- package/styles/schedule/_tailwind-definition.scss +1 -1
- package/styles/schedule/_tailwind3-definition.scss +1 -1
- package/styles/schedule/bds.css +43 -1
- package/styles/schedule/bootstrap-dark.css +43 -1
- package/styles/schedule/bootstrap.css +43 -1
- package/styles/schedule/bootstrap4.css +43 -1
- package/styles/schedule/bootstrap5-dark.css +48 -6
- package/styles/schedule/bootstrap5.3.css +48 -6
- package/styles/schedule/bootstrap5.css +48 -6
- package/styles/schedule/fabric-dark.css +43 -1
- package/styles/schedule/fabric.css +43 -1
- package/styles/schedule/fluent-dark.css +48 -6
- package/styles/schedule/fluent.css +48 -6
- package/styles/schedule/fluent2.css +48 -6
- package/styles/schedule/highcontrast-light.css +43 -1
- package/styles/schedule/highcontrast.css +43 -1
- package/styles/schedule/material-dark.css +43 -1
- package/styles/schedule/material.css +43 -1
- package/styles/schedule/material3-dark.css +48 -22
- package/styles/schedule/material3.css +48 -22
- package/styles/schedule/tailwind-dark.css +48 -6
- package/styles/schedule/tailwind.css +48 -6
- package/styles/schedule/tailwind3.css +48 -6
- package/styles/tailwind-dark-lite.css +47 -5
- package/styles/tailwind-dark.css +48 -6
- package/styles/tailwind-lite.css +47 -5
- package/styles/tailwind.css +48 -6
- package/styles/tailwind3-lite.css +47 -5
- package/styles/tailwind3.css +48 -6
|
@@ -621,6 +621,9 @@
|
|
|
621
621
|
overflow: hidden;
|
|
622
622
|
position: absolute;
|
|
623
623
|
}
|
|
624
|
+
.e-schedule .e-block-appointment.e-hidden-event {
|
|
625
|
+
display: none;
|
|
626
|
+
}
|
|
624
627
|
.e-schedule .e-block-appointment .e-subject {
|
|
625
628
|
overflow: hidden;
|
|
626
629
|
overflow-wrap: break-word;
|
|
@@ -634,6 +637,9 @@
|
|
|
634
637
|
padding: 0 5px;
|
|
635
638
|
z-index: 1;
|
|
636
639
|
}
|
|
640
|
+
.e-schedule .e-block-indicator.e-hidden-event {
|
|
641
|
+
display: none;
|
|
642
|
+
}
|
|
637
643
|
.e-schedule.e-rtl .e-block-indicator {
|
|
638
644
|
float: left;
|
|
639
645
|
}
|
|
@@ -647,6 +653,9 @@
|
|
|
647
653
|
-webkit-transition: opacity 100ms linear;
|
|
648
654
|
transition: opacity 100ms linear;
|
|
649
655
|
}
|
|
656
|
+
.e-schedule .e-appointment.e-hidden-event {
|
|
657
|
+
display: none;
|
|
658
|
+
}
|
|
650
659
|
.e-schedule .e-appointment .e-subject.e-disable {
|
|
651
660
|
display: none;
|
|
652
661
|
}
|
|
@@ -787,6 +796,9 @@
|
|
|
787
796
|
height: 54px;
|
|
788
797
|
margin-bottom: 2px;
|
|
789
798
|
}
|
|
799
|
+
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment.e-hidden-event {
|
|
800
|
+
display: none;
|
|
801
|
+
}
|
|
790
802
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-appointment-details {
|
|
791
803
|
display: -webkit-box;
|
|
792
804
|
display: -ms-flexbox;
|
|
@@ -861,6 +873,9 @@
|
|
|
861
873
|
position: absolute;
|
|
862
874
|
text-overflow: ellipsis;
|
|
863
875
|
}
|
|
876
|
+
.e-schedule .e-vertical-view.e-timescale-disable .e-more-indicator.e-hidden-event {
|
|
877
|
+
display: none;
|
|
878
|
+
}
|
|
864
879
|
.e-schedule .e-vertical-view.e-timescale-disable .e-more-indicator:focus {
|
|
865
880
|
text-decoration: underline;
|
|
866
881
|
}
|
|
@@ -931,6 +946,9 @@
|
|
|
931
946
|
text-overflow: ellipsis;
|
|
932
947
|
width: 100%;
|
|
933
948
|
}
|
|
949
|
+
.e-schedule .e-vertical-view .e-row-count-wrapper .e-more-indicator.e-hidden-event {
|
|
950
|
+
display: none;
|
|
951
|
+
}
|
|
934
952
|
.e-schedule .e-vertical-view .e-row-count-wrapper .e-more-indicator:focus {
|
|
935
953
|
text-decoration: underline;
|
|
936
954
|
}
|
|
@@ -1078,6 +1096,9 @@
|
|
|
1078
1096
|
position: absolute;
|
|
1079
1097
|
height: 26px;
|
|
1080
1098
|
}
|
|
1099
|
+
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment.e-hidden-event {
|
|
1100
|
+
display: none;
|
|
1101
|
+
}
|
|
1081
1102
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-appointment-details {
|
|
1082
1103
|
display: -webkit-box;
|
|
1083
1104
|
display: -ms-flexbox;
|
|
@@ -1397,6 +1418,9 @@
|
|
|
1397
1418
|
.e-schedule .e-month-view .e-appointment .e-disable {
|
|
1398
1419
|
display: none;
|
|
1399
1420
|
}
|
|
1421
|
+
.e-schedule .e-month-view .e-appointment.e-hidden-event {
|
|
1422
|
+
display: none;
|
|
1423
|
+
}
|
|
1400
1424
|
.e-schedule .e-month-view .e-appointment .e-appointment-details {
|
|
1401
1425
|
display: -webkit-box;
|
|
1402
1426
|
display: -ms-flexbox;
|
|
@@ -1429,7 +1453,7 @@
|
|
|
1429
1453
|
.e-schedule .e-month-view .e-appointment .e-appointment-details .e-recurrence-edit-icon,
|
|
1430
1454
|
.e-schedule .e-month-view .e-appointment .e-appointment-details .e-left-icon,
|
|
1431
1455
|
.e-schedule .e-month-view .e-appointment .e-appointment-details .e-right-icon {
|
|
1432
|
-
line-height:
|
|
1456
|
+
line-height: 22px;
|
|
1433
1457
|
padding: 0 2px;
|
|
1434
1458
|
}
|
|
1435
1459
|
.e-schedule .e-month-view .e-appointment.e-appointment-border, .e-schedule .e-month-view .e-appointment:focus {
|
|
@@ -1454,6 +1478,9 @@
|
|
|
1454
1478
|
position: absolute;
|
|
1455
1479
|
text-overflow: ellipsis;
|
|
1456
1480
|
}
|
|
1481
|
+
.e-schedule .e-month-view .e-more-indicator.e-hidden-event {
|
|
1482
|
+
display: none;
|
|
1483
|
+
}
|
|
1457
1484
|
.e-schedule .e-month-view .e-more-indicator:focus {
|
|
1458
1485
|
text-decoration: underline;
|
|
1459
1486
|
}
|
|
@@ -1725,6 +1752,9 @@
|
|
|
1725
1752
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-hidden {
|
|
1726
1753
|
display: none;
|
|
1727
1754
|
}
|
|
1755
|
+
.e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-hidden-event {
|
|
1756
|
+
display: none;
|
|
1757
|
+
}
|
|
1728
1758
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-appointment-details {
|
|
1729
1759
|
display: -webkit-box;
|
|
1730
1760
|
display: -ms-flexbox;
|
|
@@ -1757,12 +1787,12 @@
|
|
|
1757
1787
|
}
|
|
1758
1788
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-recurrence-icon,
|
|
1759
1789
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-recurrence-edit-icon {
|
|
1760
|
-
line-height:
|
|
1790
|
+
line-height: 22px;
|
|
1761
1791
|
padding: 0 5px;
|
|
1762
1792
|
}
|
|
1763
1793
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-left-icon,
|
|
1764
1794
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-right-icon {
|
|
1765
|
-
line-height:
|
|
1795
|
+
line-height: 22px;
|
|
1766
1796
|
padding: 0 2px;
|
|
1767
1797
|
}
|
|
1768
1798
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-appointment-border, .e-schedule .e-timeline-year-view .e-event-table .e-appointment:focus {
|
|
@@ -1783,6 +1813,9 @@
|
|
|
1783
1813
|
position: absolute;
|
|
1784
1814
|
text-overflow: ellipsis;
|
|
1785
1815
|
}
|
|
1816
|
+
.e-schedule .e-timeline-year-view .e-event-table .e-more-indicator.e-hidden-event {
|
|
1817
|
+
display: none;
|
|
1818
|
+
}
|
|
1786
1819
|
.e-schedule .e-timeline-year-view .e-event-table .e-more-indicator.e-hidden {
|
|
1787
1820
|
display: none;
|
|
1788
1821
|
}
|
|
@@ -1958,6 +1991,10 @@
|
|
|
1958
1991
|
cursor: default;
|
|
1959
1992
|
height: 38px;
|
|
1960
1993
|
}
|
|
1994
|
+
.e-schedule .e-timeline-view .e-appointment.e-hidden-event,
|
|
1995
|
+
.e-schedule .e-timeline-month-view .e-appointment.e-hidden-event {
|
|
1996
|
+
display: none;
|
|
1997
|
+
}
|
|
1961
1998
|
.e-schedule .e-timeline-view .e-appointment .e-appointment-details,
|
|
1962
1999
|
.e-schedule .e-timeline-month-view .e-appointment .e-appointment-details {
|
|
1963
2000
|
display: -webkit-box;
|
|
@@ -2050,6 +2087,10 @@
|
|
|
2050
2087
|
position: absolute;
|
|
2051
2088
|
text-overflow: ellipsis;
|
|
2052
2089
|
}
|
|
2090
|
+
.e-schedule .e-timeline-view .e-more-indicator.e-hidden-event,
|
|
2091
|
+
.e-schedule .e-timeline-month-view .e-more-indicator.e-hidden-event {
|
|
2092
|
+
display: none;
|
|
2093
|
+
}
|
|
2053
2094
|
.e-schedule .e-timeline-view .e-more-indicator:focus,
|
|
2054
2095
|
.e-schedule .e-timeline-month-view .e-more-indicator:focus {
|
|
2055
2096
|
text-decoration: underline;
|
|
@@ -2734,7 +2775,8 @@
|
|
|
2734
2775
|
resize: vertical;
|
|
2735
2776
|
}
|
|
2736
2777
|
.e-schedule-dialog .e-repeat-container,
|
|
2737
|
-
.e-schedule-dialog .e-input-group .e-input-group-icon.e-icon-disable
|
|
2778
|
+
.e-schedule-dialog .e-input-group .e-input-group-icon.e-icon-disable,
|
|
2779
|
+
.e-schedule-dialog .e-b-form-container .e-datetime-wrapper.disable-time .e-input-group-icon.e-time-icon {
|
|
2738
2780
|
display: none;
|
|
2739
2781
|
}
|
|
2740
2782
|
.e-schedule-dialog .e-footer-content {
|
|
@@ -3481,7 +3523,7 @@
|
|
|
3481
3523
|
}
|
|
3482
3524
|
.e-more-popup-wrapper .e-appointment .e-recurrence-icon,
|
|
3483
3525
|
.e-more-popup-wrapper .e-appointment .e-recurrence-edit-icon {
|
|
3484
|
-
line-height:
|
|
3526
|
+
line-height: 22px;
|
|
3485
3527
|
padding: 0 2px;
|
|
3486
3528
|
}
|
|
3487
3529
|
.e-more-popup-wrapper .e-appointment.e-appointment-border, .e-more-popup-wrapper .e-appointment:focus {
|
|
@@ -4585,7 +4627,7 @@
|
|
|
4585
4627
|
}
|
|
4586
4628
|
.e-bigger .e-more-popup-wrapper .e-appointment .e-recurrence-icon,
|
|
4587
4629
|
.e-bigger .e-more-popup-wrapper .e-appointment .e-recurrence-edit-icon {
|
|
4588
|
-
line-height:
|
|
4630
|
+
line-height: 22px;
|
|
4589
4631
|
padding: 0 2px;
|
|
4590
4632
|
}
|
|
4591
4633
|
.e-bigger .e-more-popup-wrapper .e-appointment.e-appointment-border, .e-bigger .e-more-popup-wrapper .e-appointment:focus {
|
|
@@ -789,6 +789,9 @@
|
|
|
789
789
|
overflow: hidden;
|
|
790
790
|
position: absolute;
|
|
791
791
|
}
|
|
792
|
+
.e-schedule .e-block-appointment.e-hidden-event {
|
|
793
|
+
display: none;
|
|
794
|
+
}
|
|
792
795
|
.e-schedule .e-block-appointment .e-subject {
|
|
793
796
|
overflow: hidden;
|
|
794
797
|
overflow-wrap: break-word;
|
|
@@ -802,6 +805,9 @@
|
|
|
802
805
|
padding: 0 5px;
|
|
803
806
|
z-index: 1;
|
|
804
807
|
}
|
|
808
|
+
.e-schedule .e-block-indicator.e-hidden-event {
|
|
809
|
+
display: none;
|
|
810
|
+
}
|
|
805
811
|
.e-schedule.e-rtl .e-block-indicator {
|
|
806
812
|
float: left;
|
|
807
813
|
}
|
|
@@ -815,6 +821,9 @@
|
|
|
815
821
|
-webkit-transition: opacity 100ms linear;
|
|
816
822
|
transition: opacity 100ms linear;
|
|
817
823
|
}
|
|
824
|
+
.e-schedule .e-appointment.e-hidden-event {
|
|
825
|
+
display: none;
|
|
826
|
+
}
|
|
818
827
|
.e-schedule .e-appointment .e-subject.e-disable {
|
|
819
828
|
display: none;
|
|
820
829
|
}
|
|
@@ -955,6 +964,9 @@
|
|
|
955
964
|
height: 54px;
|
|
956
965
|
margin-bottom: 2px;
|
|
957
966
|
}
|
|
967
|
+
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment.e-hidden-event {
|
|
968
|
+
display: none;
|
|
969
|
+
}
|
|
958
970
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-appointment-details {
|
|
959
971
|
display: -webkit-box;
|
|
960
972
|
display: -ms-flexbox;
|
|
@@ -1029,6 +1041,9 @@
|
|
|
1029
1041
|
position: absolute;
|
|
1030
1042
|
text-overflow: ellipsis;
|
|
1031
1043
|
}
|
|
1044
|
+
.e-schedule .e-vertical-view.e-timescale-disable .e-more-indicator.e-hidden-event {
|
|
1045
|
+
display: none;
|
|
1046
|
+
}
|
|
1032
1047
|
.e-schedule .e-vertical-view.e-timescale-disable .e-more-indicator:focus {
|
|
1033
1048
|
text-decoration: underline;
|
|
1034
1049
|
}
|
|
@@ -1099,6 +1114,9 @@
|
|
|
1099
1114
|
text-overflow: ellipsis;
|
|
1100
1115
|
width: 100%;
|
|
1101
1116
|
}
|
|
1117
|
+
.e-schedule .e-vertical-view .e-row-count-wrapper .e-more-indicator.e-hidden-event {
|
|
1118
|
+
display: none;
|
|
1119
|
+
}
|
|
1102
1120
|
.e-schedule .e-vertical-view .e-row-count-wrapper .e-more-indicator:focus {
|
|
1103
1121
|
text-decoration: underline;
|
|
1104
1122
|
}
|
|
@@ -1246,6 +1264,9 @@
|
|
|
1246
1264
|
position: absolute;
|
|
1247
1265
|
height: 26px;
|
|
1248
1266
|
}
|
|
1267
|
+
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment.e-hidden-event {
|
|
1268
|
+
display: none;
|
|
1269
|
+
}
|
|
1249
1270
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-appointment-details {
|
|
1250
1271
|
display: -webkit-box;
|
|
1251
1272
|
display: -ms-flexbox;
|
|
@@ -1565,6 +1586,9 @@
|
|
|
1565
1586
|
.e-schedule .e-month-view .e-appointment .e-disable {
|
|
1566
1587
|
display: none;
|
|
1567
1588
|
}
|
|
1589
|
+
.e-schedule .e-month-view .e-appointment.e-hidden-event {
|
|
1590
|
+
display: none;
|
|
1591
|
+
}
|
|
1568
1592
|
.e-schedule .e-month-view .e-appointment .e-appointment-details {
|
|
1569
1593
|
display: -webkit-box;
|
|
1570
1594
|
display: -ms-flexbox;
|
|
@@ -1597,7 +1621,7 @@
|
|
|
1597
1621
|
.e-schedule .e-month-view .e-appointment .e-appointment-details .e-recurrence-edit-icon,
|
|
1598
1622
|
.e-schedule .e-month-view .e-appointment .e-appointment-details .e-left-icon,
|
|
1599
1623
|
.e-schedule .e-month-view .e-appointment .e-appointment-details .e-right-icon {
|
|
1600
|
-
line-height:
|
|
1624
|
+
line-height: 22px;
|
|
1601
1625
|
padding: 0 2px;
|
|
1602
1626
|
}
|
|
1603
1627
|
.e-schedule .e-month-view .e-appointment.e-appointment-border, .e-schedule .e-month-view .e-appointment:focus {
|
|
@@ -1622,6 +1646,9 @@
|
|
|
1622
1646
|
position: absolute;
|
|
1623
1647
|
text-overflow: ellipsis;
|
|
1624
1648
|
}
|
|
1649
|
+
.e-schedule .e-month-view .e-more-indicator.e-hidden-event {
|
|
1650
|
+
display: none;
|
|
1651
|
+
}
|
|
1625
1652
|
.e-schedule .e-month-view .e-more-indicator:focus {
|
|
1626
1653
|
text-decoration: underline;
|
|
1627
1654
|
}
|
|
@@ -1893,6 +1920,9 @@
|
|
|
1893
1920
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-hidden {
|
|
1894
1921
|
display: none;
|
|
1895
1922
|
}
|
|
1923
|
+
.e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-hidden-event {
|
|
1924
|
+
display: none;
|
|
1925
|
+
}
|
|
1896
1926
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-appointment-details {
|
|
1897
1927
|
display: -webkit-box;
|
|
1898
1928
|
display: -ms-flexbox;
|
|
@@ -1925,12 +1955,12 @@
|
|
|
1925
1955
|
}
|
|
1926
1956
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-recurrence-icon,
|
|
1927
1957
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-recurrence-edit-icon {
|
|
1928
|
-
line-height:
|
|
1958
|
+
line-height: 22px;
|
|
1929
1959
|
padding: 0 5px;
|
|
1930
1960
|
}
|
|
1931
1961
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-left-icon,
|
|
1932
1962
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-right-icon {
|
|
1933
|
-
line-height:
|
|
1963
|
+
line-height: 22px;
|
|
1934
1964
|
padding: 0 2px;
|
|
1935
1965
|
}
|
|
1936
1966
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-appointment-border, .e-schedule .e-timeline-year-view .e-event-table .e-appointment:focus {
|
|
@@ -1951,6 +1981,9 @@
|
|
|
1951
1981
|
position: absolute;
|
|
1952
1982
|
text-overflow: ellipsis;
|
|
1953
1983
|
}
|
|
1984
|
+
.e-schedule .e-timeline-year-view .e-event-table .e-more-indicator.e-hidden-event {
|
|
1985
|
+
display: none;
|
|
1986
|
+
}
|
|
1954
1987
|
.e-schedule .e-timeline-year-view .e-event-table .e-more-indicator.e-hidden {
|
|
1955
1988
|
display: none;
|
|
1956
1989
|
}
|
|
@@ -2126,6 +2159,10 @@
|
|
|
2126
2159
|
cursor: default;
|
|
2127
2160
|
height: 38px;
|
|
2128
2161
|
}
|
|
2162
|
+
.e-schedule .e-timeline-view .e-appointment.e-hidden-event,
|
|
2163
|
+
.e-schedule .e-timeline-month-view .e-appointment.e-hidden-event {
|
|
2164
|
+
display: none;
|
|
2165
|
+
}
|
|
2129
2166
|
.e-schedule .e-timeline-view .e-appointment .e-appointment-details,
|
|
2130
2167
|
.e-schedule .e-timeline-month-view .e-appointment .e-appointment-details {
|
|
2131
2168
|
display: -webkit-box;
|
|
@@ -2218,6 +2255,10 @@
|
|
|
2218
2255
|
position: absolute;
|
|
2219
2256
|
text-overflow: ellipsis;
|
|
2220
2257
|
}
|
|
2258
|
+
.e-schedule .e-timeline-view .e-more-indicator.e-hidden-event,
|
|
2259
|
+
.e-schedule .e-timeline-month-view .e-more-indicator.e-hidden-event {
|
|
2260
|
+
display: none;
|
|
2261
|
+
}
|
|
2221
2262
|
.e-schedule .e-timeline-view .e-more-indicator:focus,
|
|
2222
2263
|
.e-schedule .e-timeline-month-view .e-more-indicator:focus {
|
|
2223
2264
|
text-decoration: underline;
|
|
@@ -2902,7 +2943,8 @@
|
|
|
2902
2943
|
resize: vertical;
|
|
2903
2944
|
}
|
|
2904
2945
|
.e-schedule-dialog .e-repeat-container,
|
|
2905
|
-
.e-schedule-dialog .e-input-group .e-input-group-icon.e-icon-disable
|
|
2946
|
+
.e-schedule-dialog .e-input-group .e-input-group-icon.e-icon-disable,
|
|
2947
|
+
.e-schedule-dialog .e-b-form-container .e-datetime-wrapper.disable-time .e-input-group-icon.e-time-icon {
|
|
2906
2948
|
display: none;
|
|
2907
2949
|
}
|
|
2908
2950
|
.e-schedule-dialog .e-footer-content {
|
|
@@ -3649,7 +3691,7 @@
|
|
|
3649
3691
|
}
|
|
3650
3692
|
.e-more-popup-wrapper .e-appointment .e-recurrence-icon,
|
|
3651
3693
|
.e-more-popup-wrapper .e-appointment .e-recurrence-edit-icon {
|
|
3652
|
-
line-height:
|
|
3694
|
+
line-height: 22px;
|
|
3653
3695
|
padding: 0 2px;
|
|
3654
3696
|
}
|
|
3655
3697
|
.e-more-popup-wrapper .e-appointment.e-appointment-border, .e-more-popup-wrapper .e-appointment:focus {
|
|
@@ -4963,7 +5005,7 @@
|
|
|
4963
5005
|
}
|
|
4964
5006
|
.e-bigger .e-more-popup-wrapper .e-appointment .e-recurrence-icon,
|
|
4965
5007
|
.e-bigger .e-more-popup-wrapper .e-appointment .e-recurrence-edit-icon {
|
|
4966
|
-
line-height:
|
|
5008
|
+
line-height: 22px;
|
|
4967
5009
|
padding: 0 2px;
|
|
4968
5010
|
}
|
|
4969
5011
|
.e-bigger .e-more-popup-wrapper .e-appointment.e-appointment-border, .e-bigger .e-more-popup-wrapper .e-appointment:focus {
|
|
@@ -621,6 +621,9 @@
|
|
|
621
621
|
overflow: hidden;
|
|
622
622
|
position: absolute;
|
|
623
623
|
}
|
|
624
|
+
.e-schedule .e-block-appointment.e-hidden-event {
|
|
625
|
+
display: none;
|
|
626
|
+
}
|
|
624
627
|
.e-schedule .e-block-appointment .e-subject {
|
|
625
628
|
overflow: hidden;
|
|
626
629
|
overflow-wrap: break-word;
|
|
@@ -634,6 +637,9 @@
|
|
|
634
637
|
padding: 0 5px;
|
|
635
638
|
z-index: 1;
|
|
636
639
|
}
|
|
640
|
+
.e-schedule .e-block-indicator.e-hidden-event {
|
|
641
|
+
display: none;
|
|
642
|
+
}
|
|
637
643
|
.e-schedule.e-rtl .e-block-indicator {
|
|
638
644
|
float: left;
|
|
639
645
|
}
|
|
@@ -647,6 +653,9 @@
|
|
|
647
653
|
-webkit-transition: opacity 100ms linear;
|
|
648
654
|
transition: opacity 100ms linear;
|
|
649
655
|
}
|
|
656
|
+
.e-schedule .e-appointment.e-hidden-event {
|
|
657
|
+
display: none;
|
|
658
|
+
}
|
|
650
659
|
.e-schedule .e-appointment .e-subject.e-disable {
|
|
651
660
|
display: none;
|
|
652
661
|
}
|
|
@@ -787,6 +796,9 @@
|
|
|
787
796
|
height: 54px;
|
|
788
797
|
margin-bottom: 2px;
|
|
789
798
|
}
|
|
799
|
+
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment.e-hidden-event {
|
|
800
|
+
display: none;
|
|
801
|
+
}
|
|
790
802
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-appointment-details {
|
|
791
803
|
display: -webkit-box;
|
|
792
804
|
display: -ms-flexbox;
|
|
@@ -861,6 +873,9 @@
|
|
|
861
873
|
position: absolute;
|
|
862
874
|
text-overflow: ellipsis;
|
|
863
875
|
}
|
|
876
|
+
.e-schedule .e-vertical-view.e-timescale-disable .e-more-indicator.e-hidden-event {
|
|
877
|
+
display: none;
|
|
878
|
+
}
|
|
864
879
|
.e-schedule .e-vertical-view.e-timescale-disable .e-more-indicator:focus {
|
|
865
880
|
text-decoration: underline;
|
|
866
881
|
}
|
|
@@ -931,6 +946,9 @@
|
|
|
931
946
|
text-overflow: ellipsis;
|
|
932
947
|
width: 100%;
|
|
933
948
|
}
|
|
949
|
+
.e-schedule .e-vertical-view .e-row-count-wrapper .e-more-indicator.e-hidden-event {
|
|
950
|
+
display: none;
|
|
951
|
+
}
|
|
934
952
|
.e-schedule .e-vertical-view .e-row-count-wrapper .e-more-indicator:focus {
|
|
935
953
|
text-decoration: underline;
|
|
936
954
|
}
|
|
@@ -1078,6 +1096,9 @@
|
|
|
1078
1096
|
position: absolute;
|
|
1079
1097
|
height: 26px;
|
|
1080
1098
|
}
|
|
1099
|
+
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment.e-hidden-event {
|
|
1100
|
+
display: none;
|
|
1101
|
+
}
|
|
1081
1102
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-appointment-details {
|
|
1082
1103
|
display: -webkit-box;
|
|
1083
1104
|
display: -ms-flexbox;
|
|
@@ -1397,6 +1418,9 @@
|
|
|
1397
1418
|
.e-schedule .e-month-view .e-appointment .e-disable {
|
|
1398
1419
|
display: none;
|
|
1399
1420
|
}
|
|
1421
|
+
.e-schedule .e-month-view .e-appointment.e-hidden-event {
|
|
1422
|
+
display: none;
|
|
1423
|
+
}
|
|
1400
1424
|
.e-schedule .e-month-view .e-appointment .e-appointment-details {
|
|
1401
1425
|
display: -webkit-box;
|
|
1402
1426
|
display: -ms-flexbox;
|
|
@@ -1429,7 +1453,7 @@
|
|
|
1429
1453
|
.e-schedule .e-month-view .e-appointment .e-appointment-details .e-recurrence-edit-icon,
|
|
1430
1454
|
.e-schedule .e-month-view .e-appointment .e-appointment-details .e-left-icon,
|
|
1431
1455
|
.e-schedule .e-month-view .e-appointment .e-appointment-details .e-right-icon {
|
|
1432
|
-
line-height:
|
|
1456
|
+
line-height: 22px;
|
|
1433
1457
|
padding: 0 2px;
|
|
1434
1458
|
}
|
|
1435
1459
|
.e-schedule .e-month-view .e-appointment.e-appointment-border, .e-schedule .e-month-view .e-appointment:focus {
|
|
@@ -1454,6 +1478,9 @@
|
|
|
1454
1478
|
position: absolute;
|
|
1455
1479
|
text-overflow: ellipsis;
|
|
1456
1480
|
}
|
|
1481
|
+
.e-schedule .e-month-view .e-more-indicator.e-hidden-event {
|
|
1482
|
+
display: none;
|
|
1483
|
+
}
|
|
1457
1484
|
.e-schedule .e-month-view .e-more-indicator:focus {
|
|
1458
1485
|
text-decoration: underline;
|
|
1459
1486
|
}
|
|
@@ -1725,6 +1752,9 @@
|
|
|
1725
1752
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-hidden {
|
|
1726
1753
|
display: none;
|
|
1727
1754
|
}
|
|
1755
|
+
.e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-hidden-event {
|
|
1756
|
+
display: none;
|
|
1757
|
+
}
|
|
1728
1758
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-appointment-details {
|
|
1729
1759
|
display: -webkit-box;
|
|
1730
1760
|
display: -ms-flexbox;
|
|
@@ -1757,12 +1787,12 @@
|
|
|
1757
1787
|
}
|
|
1758
1788
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-recurrence-icon,
|
|
1759
1789
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-recurrence-edit-icon {
|
|
1760
|
-
line-height:
|
|
1790
|
+
line-height: 22px;
|
|
1761
1791
|
padding: 0 5px;
|
|
1762
1792
|
}
|
|
1763
1793
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-left-icon,
|
|
1764
1794
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-right-icon {
|
|
1765
|
-
line-height:
|
|
1795
|
+
line-height: 22px;
|
|
1766
1796
|
padding: 0 2px;
|
|
1767
1797
|
}
|
|
1768
1798
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-appointment-border, .e-schedule .e-timeline-year-view .e-event-table .e-appointment:focus {
|
|
@@ -1783,6 +1813,9 @@
|
|
|
1783
1813
|
position: absolute;
|
|
1784
1814
|
text-overflow: ellipsis;
|
|
1785
1815
|
}
|
|
1816
|
+
.e-schedule .e-timeline-year-view .e-event-table .e-more-indicator.e-hidden-event {
|
|
1817
|
+
display: none;
|
|
1818
|
+
}
|
|
1786
1819
|
.e-schedule .e-timeline-year-view .e-event-table .e-more-indicator.e-hidden {
|
|
1787
1820
|
display: none;
|
|
1788
1821
|
}
|
|
@@ -1958,6 +1991,10 @@
|
|
|
1958
1991
|
cursor: default;
|
|
1959
1992
|
height: 38px;
|
|
1960
1993
|
}
|
|
1994
|
+
.e-schedule .e-timeline-view .e-appointment.e-hidden-event,
|
|
1995
|
+
.e-schedule .e-timeline-month-view .e-appointment.e-hidden-event {
|
|
1996
|
+
display: none;
|
|
1997
|
+
}
|
|
1961
1998
|
.e-schedule .e-timeline-view .e-appointment .e-appointment-details,
|
|
1962
1999
|
.e-schedule .e-timeline-month-view .e-appointment .e-appointment-details {
|
|
1963
2000
|
display: -webkit-box;
|
|
@@ -2050,6 +2087,10 @@
|
|
|
2050
2087
|
position: absolute;
|
|
2051
2088
|
text-overflow: ellipsis;
|
|
2052
2089
|
}
|
|
2090
|
+
.e-schedule .e-timeline-view .e-more-indicator.e-hidden-event,
|
|
2091
|
+
.e-schedule .e-timeline-month-view .e-more-indicator.e-hidden-event {
|
|
2092
|
+
display: none;
|
|
2093
|
+
}
|
|
2053
2094
|
.e-schedule .e-timeline-view .e-more-indicator:focus,
|
|
2054
2095
|
.e-schedule .e-timeline-month-view .e-more-indicator:focus {
|
|
2055
2096
|
text-decoration: underline;
|
|
@@ -2734,7 +2775,8 @@
|
|
|
2734
2775
|
resize: vertical;
|
|
2735
2776
|
}
|
|
2736
2777
|
.e-schedule-dialog .e-repeat-container,
|
|
2737
|
-
.e-schedule-dialog .e-input-group .e-input-group-icon.e-icon-disable
|
|
2778
|
+
.e-schedule-dialog .e-input-group .e-input-group-icon.e-icon-disable,
|
|
2779
|
+
.e-schedule-dialog .e-b-form-container .e-datetime-wrapper.disable-time .e-input-group-icon.e-time-icon {
|
|
2738
2780
|
display: none;
|
|
2739
2781
|
}
|
|
2740
2782
|
.e-schedule-dialog .e-footer-content {
|
|
@@ -3481,7 +3523,7 @@
|
|
|
3481
3523
|
}
|
|
3482
3524
|
.e-more-popup-wrapper .e-appointment .e-recurrence-icon,
|
|
3483
3525
|
.e-more-popup-wrapper .e-appointment .e-recurrence-edit-icon {
|
|
3484
|
-
line-height:
|
|
3526
|
+
line-height: 22px;
|
|
3485
3527
|
padding: 0 2px;
|
|
3486
3528
|
}
|
|
3487
3529
|
.e-more-popup-wrapper .e-appointment.e-appointment-border, .e-more-popup-wrapper .e-appointment:focus {
|
|
@@ -4585,7 +4627,7 @@
|
|
|
4585
4627
|
}
|
|
4586
4628
|
.e-bigger .e-more-popup-wrapper .e-appointment .e-recurrence-icon,
|
|
4587
4629
|
.e-bigger .e-more-popup-wrapper .e-appointment .e-recurrence-edit-icon {
|
|
4588
|
-
line-height:
|
|
4630
|
+
line-height: 22px;
|
|
4589
4631
|
padding: 0 2px;
|
|
4590
4632
|
}
|
|
4591
4633
|
.e-bigger .e-more-popup-wrapper .e-appointment.e-appointment-border, .e-bigger .e-more-popup-wrapper .e-appointment:focus {
|
|
@@ -546,6 +546,9 @@
|
|
|
546
546
|
overflow: hidden;
|
|
547
547
|
position: absolute;
|
|
548
548
|
}
|
|
549
|
+
.e-schedule .e-block-appointment.e-hidden-event {
|
|
550
|
+
display: none;
|
|
551
|
+
}
|
|
549
552
|
.e-schedule .e-block-appointment .e-subject {
|
|
550
553
|
overflow: hidden;
|
|
551
554
|
overflow-wrap: break-word;
|
|
@@ -559,6 +562,9 @@
|
|
|
559
562
|
padding: 0 5px;
|
|
560
563
|
z-index: 1;
|
|
561
564
|
}
|
|
565
|
+
.e-schedule .e-block-indicator.e-hidden-event {
|
|
566
|
+
display: none;
|
|
567
|
+
}
|
|
562
568
|
.e-schedule.e-rtl .e-block-indicator {
|
|
563
569
|
float: left;
|
|
564
570
|
}
|
|
@@ -572,6 +578,9 @@
|
|
|
572
578
|
-webkit-transition: opacity 100ms linear;
|
|
573
579
|
transition: opacity 100ms linear;
|
|
574
580
|
}
|
|
581
|
+
.e-schedule .e-appointment.e-hidden-event {
|
|
582
|
+
display: none;
|
|
583
|
+
}
|
|
575
584
|
.e-schedule .e-appointment .e-subject.e-disable {
|
|
576
585
|
display: none;
|
|
577
586
|
}
|
|
@@ -712,6 +721,9 @@
|
|
|
712
721
|
height: 54px;
|
|
713
722
|
margin-bottom: 2px;
|
|
714
723
|
}
|
|
724
|
+
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment.e-hidden-event {
|
|
725
|
+
display: none;
|
|
726
|
+
}
|
|
715
727
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-appointment-details {
|
|
716
728
|
display: -webkit-box;
|
|
717
729
|
display: -ms-flexbox;
|
|
@@ -786,6 +798,9 @@
|
|
|
786
798
|
position: absolute;
|
|
787
799
|
text-overflow: ellipsis;
|
|
788
800
|
}
|
|
801
|
+
.e-schedule .e-vertical-view.e-timescale-disable .e-more-indicator.e-hidden-event {
|
|
802
|
+
display: none;
|
|
803
|
+
}
|
|
789
804
|
.e-schedule .e-vertical-view.e-timescale-disable .e-more-indicator:focus {
|
|
790
805
|
text-decoration: underline;
|
|
791
806
|
}
|
|
@@ -856,6 +871,9 @@
|
|
|
856
871
|
text-overflow: ellipsis;
|
|
857
872
|
width: 100%;
|
|
858
873
|
}
|
|
874
|
+
.e-schedule .e-vertical-view .e-row-count-wrapper .e-more-indicator.e-hidden-event {
|
|
875
|
+
display: none;
|
|
876
|
+
}
|
|
859
877
|
.e-schedule .e-vertical-view .e-row-count-wrapper .e-more-indicator:focus {
|
|
860
878
|
text-decoration: underline;
|
|
861
879
|
}
|
|
@@ -1003,6 +1021,9 @@
|
|
|
1003
1021
|
position: absolute;
|
|
1004
1022
|
height: 22px;
|
|
1005
1023
|
}
|
|
1024
|
+
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment.e-hidden-event {
|
|
1025
|
+
display: none;
|
|
1026
|
+
}
|
|
1006
1027
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-appointment-details {
|
|
1007
1028
|
display: -webkit-box;
|
|
1008
1029
|
display: -ms-flexbox;
|
|
@@ -1322,6 +1343,9 @@
|
|
|
1322
1343
|
.e-schedule .e-month-view .e-appointment .e-disable {
|
|
1323
1344
|
display: none;
|
|
1324
1345
|
}
|
|
1346
|
+
.e-schedule .e-month-view .e-appointment.e-hidden-event {
|
|
1347
|
+
display: none;
|
|
1348
|
+
}
|
|
1325
1349
|
.e-schedule .e-month-view .e-appointment .e-appointment-details {
|
|
1326
1350
|
display: -webkit-box;
|
|
1327
1351
|
display: -ms-flexbox;
|
|
@@ -1379,6 +1403,9 @@
|
|
|
1379
1403
|
position: absolute;
|
|
1380
1404
|
text-overflow: ellipsis;
|
|
1381
1405
|
}
|
|
1406
|
+
.e-schedule .e-month-view .e-more-indicator.e-hidden-event {
|
|
1407
|
+
display: none;
|
|
1408
|
+
}
|
|
1382
1409
|
.e-schedule .e-month-view .e-more-indicator:focus {
|
|
1383
1410
|
text-decoration: underline;
|
|
1384
1411
|
}
|
|
@@ -1650,6 +1677,9 @@
|
|
|
1650
1677
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-hidden {
|
|
1651
1678
|
display: none;
|
|
1652
1679
|
}
|
|
1680
|
+
.e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-hidden-event {
|
|
1681
|
+
display: none;
|
|
1682
|
+
}
|
|
1653
1683
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-appointment-details {
|
|
1654
1684
|
display: -webkit-box;
|
|
1655
1685
|
display: -ms-flexbox;
|
|
@@ -1708,6 +1738,9 @@
|
|
|
1708
1738
|
position: absolute;
|
|
1709
1739
|
text-overflow: ellipsis;
|
|
1710
1740
|
}
|
|
1741
|
+
.e-schedule .e-timeline-year-view .e-event-table .e-more-indicator.e-hidden-event {
|
|
1742
|
+
display: none;
|
|
1743
|
+
}
|
|
1711
1744
|
.e-schedule .e-timeline-year-view .e-event-table .e-more-indicator.e-hidden {
|
|
1712
1745
|
display: none;
|
|
1713
1746
|
}
|
|
@@ -1883,6 +1916,10 @@
|
|
|
1883
1916
|
cursor: default;
|
|
1884
1917
|
height: 38px;
|
|
1885
1918
|
}
|
|
1919
|
+
.e-schedule .e-timeline-view .e-appointment.e-hidden-event,
|
|
1920
|
+
.e-schedule .e-timeline-month-view .e-appointment.e-hidden-event {
|
|
1921
|
+
display: none;
|
|
1922
|
+
}
|
|
1886
1923
|
.e-schedule .e-timeline-view .e-appointment .e-appointment-details,
|
|
1887
1924
|
.e-schedule .e-timeline-month-view .e-appointment .e-appointment-details {
|
|
1888
1925
|
display: -webkit-box;
|
|
@@ -1975,6 +2012,10 @@
|
|
|
1975
2012
|
position: absolute;
|
|
1976
2013
|
text-overflow: ellipsis;
|
|
1977
2014
|
}
|
|
2015
|
+
.e-schedule .e-timeline-view .e-more-indicator.e-hidden-event,
|
|
2016
|
+
.e-schedule .e-timeline-month-view .e-more-indicator.e-hidden-event {
|
|
2017
|
+
display: none;
|
|
2018
|
+
}
|
|
1978
2019
|
.e-schedule .e-timeline-view .e-more-indicator:focus,
|
|
1979
2020
|
.e-schedule .e-timeline-month-view .e-more-indicator:focus {
|
|
1980
2021
|
text-decoration: underline;
|
|
@@ -2659,7 +2700,8 @@
|
|
|
2659
2700
|
resize: vertical;
|
|
2660
2701
|
}
|
|
2661
2702
|
.e-schedule-dialog .e-repeat-container,
|
|
2662
|
-
.e-schedule-dialog .e-input-group .e-input-group-icon.e-icon-disable
|
|
2703
|
+
.e-schedule-dialog .e-input-group .e-input-group-icon.e-icon-disable,
|
|
2704
|
+
.e-schedule-dialog .e-b-form-container .e-datetime-wrapper.disable-time .e-input-group-icon.e-time-icon {
|
|
2663
2705
|
display: none;
|
|
2664
2706
|
}
|
|
2665
2707
|
.e-schedule-dialog .e-footer-content {
|