@syncfusion/ej2-schedule 28.2.11 → 29.1.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gitleaksignore +4 -0
- package/README.md +2 -2
- package/dist/ej2-schedule.min.js +2 -2
- package/dist/ej2-schedule.umd.min.js +2 -2
- package/dist/ej2-schedule.umd.min.js.map +1 -1
- package/dist/es6/ej2-schedule.es2015.js +518 -146
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +570 -186
- package/dist/es6/ej2-schedule.es5.js.map +1 -1
- package/dist/global/ej2-schedule.min.js +2 -2
- package/dist/global/ej2-schedule.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +24 -26
- package/src/recurrence-editor/recurrence-editor-model.d.ts +14 -0
- package/src/recurrence-editor/recurrence-editor.d.ts +12 -0
- package/src/recurrence-editor/recurrence-editor.js +8 -1
- package/src/schedule/actions/action-base.js +4 -1
- package/src/schedule/actions/crud.d.ts +3 -0
- package/src/schedule/actions/crud.js +129 -63
- package/src/schedule/actions/drag.js +3 -0
- package/src/schedule/actions/resize.js +4 -1
- package/src/schedule/actions/virtual-scroll.js +3 -1
- package/src/schedule/base/constant.d.ts +6 -0
- package/src/schedule/base/constant.js +6 -0
- package/src/schedule/base/interface.d.ts +53 -0
- package/src/schedule/base/schedule-model.d.ts +54 -1
- package/src/schedule/base/schedule.d.ts +68 -2
- package/src/schedule/base/schedule.js +67 -0
- package/src/schedule/base/type.d.ts +2 -1
- package/src/schedule/event-renderer/event-base.d.ts +5 -0
- package/src/schedule/event-renderer/event-base.js +123 -27
- package/src/schedule/event-renderer/inline-edit.d.ts +3 -1
- package/src/schedule/event-renderer/inline-edit.js +18 -6
- package/src/schedule/event-renderer/month.d.ts +1 -0
- package/src/schedule/event-renderer/month.js +25 -0
- package/src/schedule/event-renderer/timeline-view.d.ts +1 -1
- package/src/schedule/event-renderer/timeline-view.js +12 -19
- package/src/schedule/event-renderer/vertical-view.js +2 -2
- package/src/schedule/event-renderer/year.js +1 -1
- package/src/schedule/exports/excel-export.js +9 -2
- package/src/schedule/exports/print.d.ts +2 -0
- package/src/schedule/exports/print.js +90 -52
- package/src/schedule/models/views-model.d.ts +32 -0
- package/src/schedule/models/views.d.ts +30 -0
- package/src/schedule/models/views.js +6 -0
- package/src/schedule/popups/event-tooltip.js +18 -0
- package/src/schedule/popups/event-window.d.ts +1 -0
- package/src/schedule/popups/event-window.js +35 -4
- package/src/schedule/popups/quick-popups.js +11 -4
- package/src/schedule/renderer/month.js +3 -1
- package/styles/bds-lite.css +35 -6
- package/styles/bds.css +37 -21
- package/styles/bootstrap-dark-lite.css +46 -17
- package/styles/bootstrap-dark.css +49 -33
- package/styles/bootstrap-lite.css +42 -13
- package/styles/bootstrap.css +44 -28
- package/styles/bootstrap4-lite.css +55 -26
- package/styles/bootstrap4.css +57 -41
- package/styles/bootstrap5-dark-lite.css +128 -99
- package/styles/bootstrap5-dark.css +131 -115
- package/styles/bootstrap5-lite.css +50 -21
- package/styles/bootstrap5.3-lite.css +35 -6
- package/styles/bootstrap5.3.css +37 -21
- package/styles/bootstrap5.css +52 -36
- package/styles/fabric-dark-lite.css +46 -17
- package/styles/fabric-dark.css +49 -33
- package/styles/fabric-lite.css +56 -27
- package/styles/fabric.css +58 -42
- package/styles/fluent-dark-lite.css +39 -10
- package/styles/fluent-dark.css +40 -24
- package/styles/fluent-lite.css +39 -10
- package/styles/fluent.css +40 -24
- package/styles/fluent2-lite.css +35 -6
- package/styles/fluent2.css +38 -22
- package/styles/highcontrast-light-lite.css +53 -24
- package/styles/highcontrast-light.css +56 -40
- package/styles/highcontrast-lite.css +53 -24
- package/styles/highcontrast.css +56 -40
- package/styles/material-dark-lite.css +34 -5
- package/styles/material-dark.css +35 -19
- package/styles/material-lite.css +34 -5
- package/styles/material.css +35 -19
- package/styles/material3-dark-lite.css +36 -7
- package/styles/material3-dark.css +39 -23
- package/styles/material3-lite.css +36 -7
- package/styles/material3.css +39 -23
- package/styles/recurrence-editor/_layout.scss +6 -1
- package/styles/recurrence-editor/bds.css +5 -1
- package/styles/recurrence-editor/bootstrap-dark.css +5 -1
- package/styles/recurrence-editor/bootstrap.css +5 -1
- package/styles/recurrence-editor/bootstrap4.css +5 -1
- package/styles/recurrence-editor/bootstrap5-dark.css +5 -1
- package/styles/recurrence-editor/bootstrap5.3.css +5 -1
- package/styles/recurrence-editor/bootstrap5.css +5 -1
- package/styles/recurrence-editor/fabric-dark.css +5 -1
- package/styles/recurrence-editor/fabric.css +5 -1
- package/styles/recurrence-editor/fluent-dark.css +5 -1
- package/styles/recurrence-editor/fluent.css +5 -1
- package/styles/recurrence-editor/fluent2.css +5 -1
- package/styles/recurrence-editor/highcontrast-light.css +5 -1
- package/styles/recurrence-editor/highcontrast.css +5 -1
- package/styles/recurrence-editor/material-dark.css +5 -1
- package/styles/recurrence-editor/material.css +5 -1
- package/styles/recurrence-editor/material3-dark.css +5 -1
- package/styles/recurrence-editor/material3.css +5 -1
- package/styles/recurrence-editor/tailwind-dark.css +5 -1
- package/styles/recurrence-editor/tailwind.css +5 -1
- package/styles/recurrence-editor/tailwind3.css +5 -1
- package/styles/schedule/_bds-definition.scss +2 -0
- package/styles/schedule/_bigger.scss +2 -17
- package/styles/schedule/_bootstrap-dark-definition.scss +5 -1
- package/styles/schedule/_bootstrap-definition.scss +5 -1
- package/styles/schedule/_bootstrap4-definition.scss +9 -5
- package/styles/schedule/_bootstrap5-definition.scss +5 -1
- package/styles/schedule/_bootstrap5.3-definition.scss +2 -0
- package/styles/schedule/_fabric-dark-definition.scss +2 -0
- package/styles/schedule/_fabric-definition.scss +5 -1
- package/styles/schedule/_fluent-definition.scss +3 -1
- package/styles/schedule/_fluent2-definition.scss +3 -1
- package/styles/schedule/_fusionnew-definition.scss +2 -0
- package/styles/schedule/_highcontrast-definition.scss +6 -2
- package/styles/schedule/_highcontrast-light-definition.scss +6 -2
- package/styles/schedule/_layout.scss +39 -9
- package/styles/schedule/_material-dark-definition.scss +2 -0
- package/styles/schedule/_material-definition.scss +2 -0
- package/styles/schedule/_material3-definition.scss +4 -2
- package/styles/schedule/_tailwind-definition.scss +2 -0
- package/styles/schedule/_tailwind3-definition.scss +4 -2
- package/styles/schedule/bds.css +32 -20
- package/styles/schedule/bootstrap-dark.css +44 -32
- package/styles/schedule/bootstrap.css +39 -27
- package/styles/schedule/bootstrap4.css +52 -40
- package/styles/schedule/bootstrap5-dark.css +126 -114
- package/styles/schedule/bootstrap5.3.css +32 -20
- package/styles/schedule/bootstrap5.css +47 -35
- package/styles/schedule/fabric-dark.css +44 -32
- package/styles/schedule/fabric.css +53 -41
- package/styles/schedule/fluent-dark.css +35 -23
- package/styles/schedule/fluent.css +35 -23
- package/styles/schedule/fluent2.css +33 -21
- package/styles/schedule/highcontrast-light.css +51 -39
- package/styles/schedule/highcontrast.css +51 -39
- package/styles/schedule/material-dark.css +30 -18
- package/styles/schedule/material.css +30 -18
- package/styles/schedule/material3-dark.css +34 -22
- package/styles/schedule/material3.css +34 -22
- package/styles/schedule/tailwind-dark.css +49 -37
- package/styles/schedule/tailwind.css +32 -20
- package/styles/schedule/tailwind3.css +34 -22
- package/styles/tailwind-dark-lite.css +52 -23
- package/styles/tailwind-dark.css +54 -38
- package/styles/tailwind-lite.css +35 -6
- package/styles/tailwind.css +37 -21
- package/styles/tailwind3-lite.css +36 -7
- package/styles/tailwind3.css +39 -23
|
@@ -339,7 +339,10 @@
|
|
|
339
339
|
font-size: 18px;
|
|
340
340
|
}
|
|
341
341
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator {
|
|
342
|
-
border-right: 1px solid
|
|
342
|
+
border-right: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
343
|
+
}
|
|
344
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn.e-schedule-date-range-tbtn {
|
|
345
|
+
width: auto;
|
|
343
346
|
}
|
|
344
347
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn .e-tbar-btn-text {
|
|
345
348
|
font-size: 14px;
|
|
@@ -347,14 +350,14 @@
|
|
|
347
350
|
}
|
|
348
351
|
.e-schedule .e-schedule-toolbar.e-rtl .e-hor-nav {
|
|
349
352
|
border-left: 0;
|
|
350
|
-
border-right: 1px solid
|
|
353
|
+
border-right: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
351
354
|
}
|
|
352
355
|
.e-schedule .e-schedule-toolbar.e-rtl .e-hor-nav:not(.e-nav-active):hover {
|
|
353
356
|
background: #495057;
|
|
354
357
|
color: rgba(13, 110, 253, 0.87);
|
|
355
358
|
}
|
|
356
359
|
.e-schedule .e-schedule-toolbar .e-hor-nav {
|
|
357
|
-
border-left: 1px solid
|
|
360
|
+
border-left: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
358
361
|
}
|
|
359
362
|
.e-schedule .e-schedule-toolbar .e-hor-nav::after {
|
|
360
363
|
content: "";
|
|
@@ -436,7 +439,7 @@
|
|
|
436
439
|
}
|
|
437
440
|
}
|
|
438
441
|
.e-schedule .e-schedule-resource-toolbar {
|
|
439
|
-
background:
|
|
442
|
+
background: rgb(26.177027027, 29.35, 32.522972973);
|
|
440
443
|
border-bottom: 0;
|
|
441
444
|
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
|
442
445
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
|
@@ -503,7 +506,7 @@
|
|
|
503
506
|
transition: transform 0.1s ease 0s, -webkit-transform 0.1s ease 0s;
|
|
504
507
|
}
|
|
505
508
|
.e-schedule .e-resource-tree-popup {
|
|
506
|
-
background:
|
|
509
|
+
background: rgb(26.177027027, 29.35, 32.522972973);
|
|
507
510
|
-webkit-box-shadow: 0 0.8px 16px rgba(0, 0, 0, 0.15);
|
|
508
511
|
box-shadow: 0 0.8px 16px rgba(0, 0, 0, 0.15);
|
|
509
512
|
height: 100%;
|
|
@@ -769,7 +772,7 @@
|
|
|
769
772
|
}
|
|
770
773
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment {
|
|
771
774
|
background: #0d6efd;
|
|
772
|
-
border: 1px solid
|
|
775
|
+
border: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
773
776
|
border-radius: 2px;
|
|
774
777
|
color: #fff;
|
|
775
778
|
display: -webkit-box;
|
|
@@ -996,8 +999,8 @@
|
|
|
996
999
|
}
|
|
997
1000
|
.e-schedule .e-vertical-view.e-virtual-mask .e-work-cells {
|
|
998
1001
|
background: #343a40;
|
|
999
|
-
-webkit-box-shadow: inset 0 0 0 8px
|
|
1000
|
-
box-shadow: inset 0 0 0 8px
|
|
1002
|
+
-webkit-box-shadow: inset 0 0 0 8px rgb(26.177027027, 29.35, 32.522972973);
|
|
1003
|
+
box-shadow: inset 0 0 0 8px rgb(26.177027027, 29.35, 32.522972973);
|
|
1001
1004
|
}
|
|
1002
1005
|
.e-schedule .e-vertical-view.e-virtual-mask .e-work-cells:hover {
|
|
1003
1006
|
background: #343a40;
|
|
@@ -1025,7 +1028,7 @@
|
|
|
1025
1028
|
overflow: hidden;
|
|
1026
1029
|
}
|
|
1027
1030
|
.e-schedule .e-vertical-view .e-date-header-wrap.e-all-day-scroll {
|
|
1028
|
-
border-bottom: 1px solid
|
|
1031
|
+
border-bottom: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
1029
1032
|
overflow-y: auto;
|
|
1030
1033
|
}
|
|
1031
1034
|
.e-schedule .e-vertical-view .e-date-header-wrap.e-all-day-scroll .e-header-row .e-resource-cells {
|
|
@@ -1061,7 +1064,7 @@
|
|
|
1061
1064
|
}
|
|
1062
1065
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment {
|
|
1063
1066
|
background: #0d6efd;
|
|
1064
|
-
border: 1px solid
|
|
1067
|
+
border: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
1065
1068
|
border-radius: 2px;
|
|
1066
1069
|
color: #fff;
|
|
1067
1070
|
display: -webkit-box;
|
|
@@ -1116,7 +1119,7 @@
|
|
|
1116
1119
|
}
|
|
1117
1120
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment {
|
|
1118
1121
|
background: #0d6efd;
|
|
1119
|
-
border: 1px solid
|
|
1122
|
+
border: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
1120
1123
|
border-radius: 2px;
|
|
1121
1124
|
color: #fff;
|
|
1122
1125
|
overflow: hidden;
|
|
@@ -1254,7 +1257,7 @@
|
|
|
1254
1257
|
}
|
|
1255
1258
|
.e-schedule .e-month-view .e-left-indent,
|
|
1256
1259
|
.e-schedule .e-month-agenda-view .e-left-indent {
|
|
1257
|
-
border-right: 1px solid
|
|
1260
|
+
border-right: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
1258
1261
|
width: 36px;
|
|
1259
1262
|
}
|
|
1260
1263
|
.e-schedule .e-month-view .e-week-number-wrapper,
|
|
@@ -1285,6 +1288,10 @@
|
|
|
1285
1288
|
overflow: hidden;
|
|
1286
1289
|
opacity: 0;
|
|
1287
1290
|
}
|
|
1291
|
+
.e-schedule .e-month-view .e-month-event-table {
|
|
1292
|
+
position: absolute;
|
|
1293
|
+
top: 0;
|
|
1294
|
+
}
|
|
1288
1295
|
.e-schedule .e-month-view .e-content-wrap table tr:last-child td {
|
|
1289
1296
|
border-bottom-width: 0;
|
|
1290
1297
|
}
|
|
@@ -1293,8 +1300,8 @@
|
|
|
1293
1300
|
overflow: hidden;
|
|
1294
1301
|
}
|
|
1295
1302
|
.e-schedule .e-month-view .e-week-number {
|
|
1296
|
-
border-bottom: 1px solid
|
|
1297
|
-
border-right: 1px solid
|
|
1303
|
+
border-bottom: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
1304
|
+
border-right: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
1298
1305
|
height: 80px;
|
|
1299
1306
|
}
|
|
1300
1307
|
.e-schedule .e-month-view .e-content-wrap {
|
|
@@ -1342,8 +1349,8 @@
|
|
|
1342
1349
|
}
|
|
1343
1350
|
.e-schedule .e-month-view.e-virtual-mask .e-work-cells {
|
|
1344
1351
|
background: #343a40;
|
|
1345
|
-
-webkit-box-shadow: inset 0 0 0 8px
|
|
1346
|
-
box-shadow: inset 0 0 0 8px
|
|
1352
|
+
-webkit-box-shadow: inset 0 0 0 8px rgb(26.177027027, 29.35, 32.522972973);
|
|
1353
|
+
box-shadow: inset 0 0 0 8px rgb(26.177027027, 29.35, 32.522972973);
|
|
1347
1354
|
}
|
|
1348
1355
|
.e-schedule .e-month-view.e-virtual-mask .e-work-cells:hover {
|
|
1349
1356
|
background: #343a40;
|
|
@@ -1373,7 +1380,7 @@
|
|
|
1373
1380
|
}
|
|
1374
1381
|
.e-schedule .e-month-view .e-appointment {
|
|
1375
1382
|
background: #0d6efd;
|
|
1376
|
-
border: 1px solid
|
|
1383
|
+
border: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
1377
1384
|
border-radius: 2px;
|
|
1378
1385
|
color: #fff;
|
|
1379
1386
|
display: -webkit-box;
|
|
@@ -1452,7 +1459,7 @@
|
|
|
1452
1459
|
}
|
|
1453
1460
|
.e-schedule.e-rtl .e-month-view .e-left-indent,
|
|
1454
1461
|
.e-schedule.e-rtl .e-month-view .e-week-number {
|
|
1455
|
-
border-left: 1px solid
|
|
1462
|
+
border-left: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
1456
1463
|
border-right-width: 0;
|
|
1457
1464
|
}
|
|
1458
1465
|
.e-schedule .e-year-view .e-calendar-wrapper {
|
|
@@ -1471,7 +1478,7 @@
|
|
|
1471
1478
|
-ms-flex: 0 25%;
|
|
1472
1479
|
flex: 0 25%;
|
|
1473
1480
|
max-width: 100%;
|
|
1474
|
-
min-width:
|
|
1481
|
+
min-width: 300px;
|
|
1475
1482
|
padding: 10px;
|
|
1476
1483
|
}
|
|
1477
1484
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-header .e-title {
|
|
@@ -1518,7 +1525,7 @@
|
|
|
1518
1525
|
}
|
|
1519
1526
|
.e-schedule .e-year-view .e-date-header-wrap table td {
|
|
1520
1527
|
background: #212529;
|
|
1521
|
-
border-color:
|
|
1528
|
+
border-color: rgb(68.0034482759, 75.85, 83.6965517241);
|
|
1522
1529
|
border-style: solid;
|
|
1523
1530
|
border-width: 0 0 1px 1px;
|
|
1524
1531
|
color: #e9ecef;
|
|
@@ -1559,7 +1566,7 @@
|
|
|
1559
1566
|
.e-schedule .e-timeline-year-view .e-resource-left-td,
|
|
1560
1567
|
.e-schedule .e-timeline-year-view .e-date-header-wrap table td {
|
|
1561
1568
|
background: #212529;
|
|
1562
|
-
border-color:
|
|
1569
|
+
border-color: rgb(68.0034482759, 75.85, 83.6965517241);
|
|
1563
1570
|
border-style: solid;
|
|
1564
1571
|
border-width: 0 1px 1px 0;
|
|
1565
1572
|
color: #e9ecef;
|
|
@@ -1589,8 +1596,8 @@
|
|
|
1589
1596
|
position: relative;
|
|
1590
1597
|
}
|
|
1591
1598
|
.e-schedule .e-timeline-year-view .e-resource-column-wrap .e-resource-cells {
|
|
1592
|
-
background:
|
|
1593
|
-
border-color:
|
|
1599
|
+
background: rgb(26.177027027, 29.35, 32.522972973);
|
|
1600
|
+
border-color: rgb(68.0034482759, 75.85, 83.6965517241);
|
|
1594
1601
|
border-style: solid;
|
|
1595
1602
|
border-width: 0 1px 1px 0;
|
|
1596
1603
|
color: #fff;
|
|
@@ -1603,7 +1610,7 @@
|
|
|
1603
1610
|
background: #212529;
|
|
1604
1611
|
}
|
|
1605
1612
|
.e-schedule .e-timeline-year-view .e-resource-column-wrap .e-resource-cells:focus {
|
|
1606
|
-
background:
|
|
1613
|
+
background: rgb(21.6283783784, 24.25, 26.8716216216);
|
|
1607
1614
|
}
|
|
1608
1615
|
.e-schedule .e-timeline-year-view .e-resource-column-table {
|
|
1609
1616
|
height: 100%;
|
|
@@ -1630,7 +1637,7 @@
|
|
|
1630
1637
|
height: auto;
|
|
1631
1638
|
}
|
|
1632
1639
|
.e-schedule .e-timeline-year-view .e-left-indent td {
|
|
1633
|
-
border-color:
|
|
1640
|
+
border-color: rgb(68.0034482759, 75.85, 83.6965517241);
|
|
1634
1641
|
border-style: solid;
|
|
1635
1642
|
border-width: 0 1px 0 0;
|
|
1636
1643
|
vertical-align: middle;
|
|
@@ -1646,8 +1653,8 @@
|
|
|
1646
1653
|
width: 100px;
|
|
1647
1654
|
}
|
|
1648
1655
|
.e-schedule .e-timeline-year-view .e-month-header {
|
|
1649
|
-
border-bottom: 1px solid
|
|
1650
|
-
border-right: 1px solid
|
|
1656
|
+
border-bottom: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
1657
|
+
border-right: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
1651
1658
|
text-align: center;
|
|
1652
1659
|
color: #e9ecef;
|
|
1653
1660
|
}
|
|
@@ -1701,7 +1708,7 @@
|
|
|
1701
1708
|
}
|
|
1702
1709
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment {
|
|
1703
1710
|
background: #0d6efd;
|
|
1704
|
-
border: 1px solid
|
|
1711
|
+
border: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
1705
1712
|
border-radius: 2px;
|
|
1706
1713
|
color: #fff;
|
|
1707
1714
|
display: -webkit-box;
|
|
@@ -1821,7 +1828,7 @@
|
|
|
1821
1828
|
}
|
|
1822
1829
|
.e-schedule .e-timeline-view .e-date-header-wrap table tbody td.e-time-slots,
|
|
1823
1830
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table tbody td.e-time-slots {
|
|
1824
|
-
background:
|
|
1831
|
+
background: rgb(26.177027027, 29.35, 32.522972973);
|
|
1825
1832
|
overflow: inherit;
|
|
1826
1833
|
}
|
|
1827
1834
|
.e-schedule .e-timeline-view .e-date-header-wrap table tbody td > span,
|
|
@@ -1860,7 +1867,7 @@
|
|
|
1860
1867
|
.e-schedule .e-timeline-view .e-resource-left-td,
|
|
1861
1868
|
.e-schedule .e-timeline-month-view .e-resource-left-td {
|
|
1862
1869
|
background: #212529;
|
|
1863
|
-
border-color:
|
|
1870
|
+
border-color: rgb(68.0034482759, 75.85, 83.6965517241);
|
|
1864
1871
|
border-style: solid;
|
|
1865
1872
|
border-width: 0 1px 1px 0;
|
|
1866
1873
|
color: #e9ecef;
|
|
@@ -1869,8 +1876,8 @@
|
|
|
1869
1876
|
}
|
|
1870
1877
|
.e-schedule .e-timeline-view .e-resource-cells,
|
|
1871
1878
|
.e-schedule .e-timeline-month-view .e-resource-cells {
|
|
1872
|
-
background:
|
|
1873
|
-
border-color:
|
|
1879
|
+
background: rgb(26.177027027, 29.35, 32.522972973);
|
|
1880
|
+
border-color: rgb(68.0034482759, 75.85, 83.6965517241);
|
|
1874
1881
|
border-style: solid;
|
|
1875
1882
|
border-width: 0 1px 1px 0;
|
|
1876
1883
|
color: #fff;
|
|
@@ -1881,7 +1888,7 @@
|
|
|
1881
1888
|
}
|
|
1882
1889
|
.e-schedule .e-timeline-view .e-resource-cells:focus,
|
|
1883
1890
|
.e-schedule .e-timeline-month-view .e-resource-cells:focus {
|
|
1884
|
-
background:
|
|
1891
|
+
background: rgb(21.6283783784, 24.25, 26.8716216216);
|
|
1885
1892
|
}
|
|
1886
1893
|
.e-schedule .e-timeline-view .e-resource-column-wrap,
|
|
1887
1894
|
.e-schedule .e-timeline-month-view .e-resource-column-wrap {
|
|
@@ -1905,8 +1912,8 @@
|
|
|
1905
1912
|
.e-schedule .e-timeline-view.e-virtual-mask .e-work-cells,
|
|
1906
1913
|
.e-schedule .e-timeline-month-view.e-virtual-mask .e-work-cells {
|
|
1907
1914
|
background: #343a40;
|
|
1908
|
-
-webkit-box-shadow: inset 0 0 0 8px
|
|
1909
|
-
box-shadow: inset 0 0 0 8px
|
|
1915
|
+
-webkit-box-shadow: inset 0 0 0 8px rgb(26.177027027, 29.35, 32.522972973);
|
|
1916
|
+
box-shadow: inset 0 0 0 8px rgb(26.177027027, 29.35, 32.522972973);
|
|
1910
1917
|
}
|
|
1911
1918
|
.e-schedule .e-timeline-view .e-resource-tree-icon,
|
|
1912
1919
|
.e-schedule .e-timeline-month-view .e-resource-tree-icon {
|
|
@@ -1937,7 +1944,7 @@
|
|
|
1937
1944
|
.e-schedule .e-timeline-view .e-appointment,
|
|
1938
1945
|
.e-schedule .e-timeline-month-view .e-appointment {
|
|
1939
1946
|
background: #0d6efd;
|
|
1940
|
-
border: 1px solid
|
|
1947
|
+
border: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
1941
1948
|
border-radius: 2px;
|
|
1942
1949
|
color: #fff;
|
|
1943
1950
|
display: -webkit-box;
|
|
@@ -2147,7 +2154,7 @@
|
|
|
2147
2154
|
margin-top: 4px;
|
|
2148
2155
|
}
|
|
2149
2156
|
.e-schedule .e-month-agenda-view .e-week-number-wrapper .e-week-number {
|
|
2150
|
-
border-right: 1px solid
|
|
2157
|
+
border-right: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
2151
2158
|
height: 40px;
|
|
2152
2159
|
padding-top: 8px;
|
|
2153
2160
|
}
|
|
@@ -2156,16 +2163,16 @@
|
|
|
2156
2163
|
}
|
|
2157
2164
|
.e-schedule .e-month-agenda-view .e-week-number-wrapper .e-schedule-table,
|
|
2158
2165
|
.e-schedule .e-month-agenda-view .e-content-table {
|
|
2159
|
-
border-bottom: 2px solid
|
|
2166
|
+
border-bottom: 2px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
2160
2167
|
-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
|
|
2161
2168
|
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
|
|
2162
2169
|
height: 100%;
|
|
2163
2170
|
}
|
|
2164
2171
|
.e-schedule .e-month-agenda-view .e-resource-column {
|
|
2165
|
-
border-bottom: 1px solid
|
|
2172
|
+
border-bottom: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
2166
2173
|
vertical-align: top;
|
|
2167
2174
|
width: 75px;
|
|
2168
|
-
border-right: 1px solid
|
|
2175
|
+
border-right: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
2169
2176
|
}
|
|
2170
2177
|
.e-schedule .e-month-agenda-view .e-resource-name {
|
|
2171
2178
|
color: #fff;
|
|
@@ -2179,7 +2186,7 @@
|
|
|
2179
2186
|
padding-left: 8px;
|
|
2180
2187
|
}
|
|
2181
2188
|
.e-schedule .e-month-agenda-view .e-day-border {
|
|
2182
|
-
border-bottom: 1px solid
|
|
2189
|
+
border-bottom: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
2183
2190
|
}
|
|
2184
2191
|
.e-schedule .e-month-agenda-view .e-date-header-wrap {
|
|
2185
2192
|
font-size: 16px;
|
|
@@ -2228,7 +2235,7 @@
|
|
|
2228
2235
|
padding: 0 16px;
|
|
2229
2236
|
}
|
|
2230
2237
|
.e-schedule .e-month-agenda-view .e-appointment:hover {
|
|
2231
|
-
background:
|
|
2238
|
+
background: rgb(21.6283783784, 24.25, 26.8716216216);
|
|
2232
2239
|
}
|
|
2233
2240
|
.e-schedule .e-month-agenda-view .e-appointment.e-appointment-border, .e-schedule .e-month-agenda-view .e-appointment:focus {
|
|
2234
2241
|
background: #343a40;
|
|
@@ -2299,7 +2306,7 @@
|
|
|
2299
2306
|
}
|
|
2300
2307
|
.e-schedule.e-rtl .e-month-agenda-view .e-left-indent,
|
|
2301
2308
|
.e-schedule.e-rtl .e-month-agenda-view .e-week-number {
|
|
2302
|
-
border-left: 1px solid
|
|
2309
|
+
border-left: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
2303
2310
|
border-right-width: 0;
|
|
2304
2311
|
}
|
|
2305
2312
|
.e-schedule.e-rtl .e-month-agenda-view .e-appointment {
|
|
@@ -2307,8 +2314,8 @@
|
|
|
2307
2314
|
border-right: 3px solid #0d6efd;
|
|
2308
2315
|
}
|
|
2309
2316
|
.e-schedule.e-rtl .e-month-agenda-view .e-resource-column {
|
|
2310
|
-
border-bottom: 1px solid
|
|
2311
|
-
border-left: 1px solid
|
|
2317
|
+
border-bottom: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
2318
|
+
border-left: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
2312
2319
|
border-right: 0;
|
|
2313
2320
|
vertical-align: top;
|
|
2314
2321
|
width: 75px;
|
|
@@ -2328,17 +2335,20 @@
|
|
|
2328
2335
|
.e-schedule .e-agenda-view {
|
|
2329
2336
|
background: #212529;
|
|
2330
2337
|
}
|
|
2338
|
+
.e-schedule .e-agenda-view .e-agenda-load-more {
|
|
2339
|
+
font-size: 14px;
|
|
2340
|
+
}
|
|
2331
2341
|
.e-schedule .e-agenda-view .e-content-wrap table td:first-child,
|
|
2332
2342
|
.e-schedule .e-agenda-view .e-date-column {
|
|
2333
2343
|
vertical-align: top;
|
|
2334
2344
|
width: 75px;
|
|
2335
2345
|
}
|
|
2336
2346
|
.e-schedule .e-agenda-view .e-resource-column {
|
|
2337
|
-
border-bottom: 1px solid
|
|
2347
|
+
border-bottom: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
2338
2348
|
vertical-align: top;
|
|
2339
2349
|
width: 75px;
|
|
2340
2350
|
color: #e9ecef;
|
|
2341
|
-
border-right: 1px solid
|
|
2351
|
+
border-right: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
2342
2352
|
}
|
|
2343
2353
|
.e-schedule .e-agenda-view .e-month-header {
|
|
2344
2354
|
background: #0d6efd;
|
|
@@ -2365,11 +2375,11 @@
|
|
|
2365
2375
|
color: #0d6efd;
|
|
2366
2376
|
}
|
|
2367
2377
|
.e-schedule .e-agenda-view .e-day-border {
|
|
2368
|
-
border-bottom: 1px solid
|
|
2378
|
+
border-bottom: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
2369
2379
|
}
|
|
2370
2380
|
.e-schedule .e-agenda-view .e-date-border {
|
|
2371
|
-
border-bottom: 1px solid
|
|
2372
|
-
border-right: 1px solid
|
|
2381
|
+
border-bottom: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
2382
|
+
border-right: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
2373
2383
|
}
|
|
2374
2384
|
.e-schedule .e-agenda-view .e-day-padding {
|
|
2375
2385
|
padding-left: 8px;
|
|
@@ -2457,7 +2467,7 @@
|
|
|
2457
2467
|
padding: 0 14px;
|
|
2458
2468
|
}
|
|
2459
2469
|
.e-schedule .e-agenda-view .e-appointment:hover {
|
|
2460
|
-
background:
|
|
2470
|
+
background: rgb(21.6283783784, 24.25, 26.8716216216);
|
|
2461
2471
|
}
|
|
2462
2472
|
.e-schedule .e-agenda-view .e-appointment.e-appointment-border, .e-schedule .e-agenda-view .e-appointment:focus {
|
|
2463
2473
|
background: #343a40;
|
|
@@ -2501,9 +2511,9 @@
|
|
|
2501
2511
|
border-right: 3px solid #0d6efd;
|
|
2502
2512
|
}
|
|
2503
2513
|
.e-schedule.e-rtl .e-agenda-view .e-resource-column {
|
|
2504
|
-
border-left: 1px solid
|
|
2514
|
+
border-left: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
2505
2515
|
border-right: 0;
|
|
2506
|
-
border-bottom: 1px solid
|
|
2516
|
+
border-bottom: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
2507
2517
|
vertical-align: top;
|
|
2508
2518
|
width: 75px;
|
|
2509
2519
|
}
|
|
@@ -2514,8 +2524,8 @@
|
|
|
2514
2524
|
padding-right: 8px;
|
|
2515
2525
|
}
|
|
2516
2526
|
.e-schedule.e-rtl .e-agenda-view .e-date-border {
|
|
2517
|
-
border-bottom: 1px solid
|
|
2518
|
-
border-left: 1px solid
|
|
2527
|
+
border-bottom: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
2528
|
+
border-left: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
2519
2529
|
border-right: 0;
|
|
2520
2530
|
}
|
|
2521
2531
|
|
|
@@ -2524,28 +2534,28 @@
|
|
|
2524
2534
|
}
|
|
2525
2535
|
|
|
2526
2536
|
.e-schedule.e-multi-drag .e-vertical-view .e-all-day-appointment-wrapper .e-appointment.e-appointment-border, .e-schedule.e-multi-drag .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:focus {
|
|
2527
|
-
border: 1px solid rgba(68,
|
|
2537
|
+
border: 1px solid rgba(68.0034482759, 75.85, 83.6965517241, 0.5);
|
|
2528
2538
|
}
|
|
2529
2539
|
.e-schedule.e-multi-drag .e-vertical-view.e-timescale-disable .e-appointment.e-appointment-border, .e-schedule.e-multi-drag .e-vertical-view.e-timescale-disable .e-appointment:focus {
|
|
2530
|
-
border: 1px solid rgba(68,
|
|
2540
|
+
border: 1px solid rgba(68.0034482759, 75.85, 83.6965517241, 0.5);
|
|
2531
2541
|
}
|
|
2532
2542
|
.e-schedule.e-multi-drag .e-vertical-view .e-day-wrapper .e-appointment.e-appointment-border, .e-schedule.e-multi-drag .e-vertical-view .e-day-wrapper .e-appointment:focus {
|
|
2533
|
-
border: 1px solid rgba(68,
|
|
2543
|
+
border: 1px solid rgba(68.0034482759, 75.85, 83.6965517241, 0.5);
|
|
2534
2544
|
}
|
|
2535
2545
|
.e-schedule.e-multi-drag .e-month-view .e-appointment.e-appointment-border, .e-schedule.e-multi-drag .e-month-view .e-appointment:focus {
|
|
2536
|
-
border: 1px solid rgba(68,
|
|
2546
|
+
border: 1px solid rgba(68.0034482759, 75.85, 83.6965517241, 0.5);
|
|
2537
2547
|
}
|
|
2538
2548
|
.e-schedule.e-multi-drag .e-timeline-year-view .e-event-table .e-appointment.e-appointment-border, .e-schedule.e-multi-drag .e-timeline-year-view .e-event-table .e-appointment:focus {
|
|
2539
|
-
border: 1px solid rgba(68,
|
|
2549
|
+
border: 1px solid rgba(68.0034482759, 75.85, 83.6965517241, 0.5);
|
|
2540
2550
|
}
|
|
2541
2551
|
.e-schedule.e-multi-drag .e-timeline-view .e-appointment.e-appointment-border, .e-schedule.e-multi-drag .e-timeline-view .e-appointment:focus,
|
|
2542
2552
|
.e-schedule.e-multi-drag .e-timeline-month-view .e-appointment.e-appointment-border,
|
|
2543
2553
|
.e-schedule.e-multi-drag .e-timeline-month-view .e-appointment:focus {
|
|
2544
|
-
border: 1px solid rgba(68,
|
|
2554
|
+
border: 1px solid rgba(68.0034482759, 75.85, 83.6965517241, 0.5);
|
|
2545
2555
|
}
|
|
2546
2556
|
|
|
2547
2557
|
.e-more-popup-wrapper.e-multi-drag .e-appointment.e-appointment-border, .e-more-popup-wrapper.e-multi-drag .e-appointment:focus {
|
|
2548
|
-
border: 1px solid rgba(68,
|
|
2558
|
+
border: 1px solid rgba(68.0034482759, 75.85, 83.6965517241, 0.5);
|
|
2549
2559
|
}
|
|
2550
2560
|
|
|
2551
2561
|
/*! schedule event tooltip */
|
|
@@ -2557,12 +2567,19 @@
|
|
|
2557
2567
|
visibility: hidden;
|
|
2558
2568
|
}
|
|
2559
2569
|
|
|
2570
|
+
.e-field-error-message {
|
|
2571
|
+
display: block;
|
|
2572
|
+
}
|
|
2573
|
+
|
|
2560
2574
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2561
|
-
width:
|
|
2575
|
+
width: 440px;
|
|
2562
2576
|
}
|
|
2563
2577
|
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content {
|
|
2564
2578
|
padding: 12px;
|
|
2565
2579
|
}
|
|
2580
|
+
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content button {
|
|
2581
|
+
margin-bottom: 6px;
|
|
2582
|
+
}
|
|
2566
2583
|
@media screen and (max-width: 767px) {
|
|
2567
2584
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2568
2585
|
width: 289px;
|
|
@@ -2591,9 +2608,8 @@
|
|
|
2591
2608
|
.e-dialog.e-quick-dialog .e-footer-content {
|
|
2592
2609
|
border-top: none;
|
|
2593
2610
|
}
|
|
2594
|
-
.e-dialog.e-quick-dialog .e-
|
|
2595
|
-
-
|
|
2596
|
-
box-shadow: none;
|
|
2611
|
+
.e-dialog.e-quick-dialog .e-footer-content button {
|
|
2612
|
+
margin-bottom: 6px;
|
|
2597
2613
|
}
|
|
2598
2614
|
.e-dialog.e-quick-dialog.e-rtl {
|
|
2599
2615
|
text-align: right;
|
|
@@ -2736,6 +2752,11 @@
|
|
|
2736
2752
|
float: right;
|
|
2737
2753
|
}
|
|
2738
2754
|
|
|
2755
|
+
.e-editor-content-item-template {
|
|
2756
|
+
text-overflow: ellipsis;
|
|
2757
|
+
overflow: hidden;
|
|
2758
|
+
}
|
|
2759
|
+
|
|
2739
2760
|
/*! schedule event window for smaller viewports*/
|
|
2740
2761
|
@media screen and (max-width: 320px) {
|
|
2741
2762
|
.e-schedule-dialog.e-popup.e-popup-open {
|
|
@@ -2922,7 +2943,7 @@
|
|
|
2922
2943
|
-ms-user-select: none;
|
|
2923
2944
|
user-select: none;
|
|
2924
2945
|
width: 100%;
|
|
2925
|
-
border: 1px solid
|
|
2946
|
+
border: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
2926
2947
|
}
|
|
2927
2948
|
.e-quick-popup-wrapper .e-hidden {
|
|
2928
2949
|
display: none;
|
|
@@ -3024,6 +3045,10 @@
|
|
|
3024
3045
|
.e-quick-popup-wrapper .e-event-popup .e-popup-content {
|
|
3025
3046
|
padding: 0 18px 12px;
|
|
3026
3047
|
}
|
|
3048
|
+
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-popup-header-title-text,
|
|
3049
|
+
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-popup-header-title-text {
|
|
3050
|
+
display: none;
|
|
3051
|
+
}
|
|
3027
3052
|
.e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper,
|
|
3028
3053
|
.e-quick-popup-wrapper .e-event-popup .e-header-icon-wrapper {
|
|
3029
3054
|
display: -webkit-box;
|
|
@@ -3321,7 +3346,7 @@
|
|
|
3321
3346
|
}
|
|
3322
3347
|
.e-more-popup-wrapper {
|
|
3323
3348
|
background: #212529;
|
|
3324
|
-
border: 1px solid
|
|
3349
|
+
border: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
3325
3350
|
border-radius: 6px;
|
|
3326
3351
|
-webkit-box-shadow: none;
|
|
3327
3352
|
box-shadow: none;
|
|
@@ -3480,10 +3505,10 @@
|
|
|
3480
3505
|
|
|
3481
3506
|
.e-schedule {
|
|
3482
3507
|
background: #212529;
|
|
3483
|
-
border: 1px solid
|
|
3508
|
+
border: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
|
|
3484
3509
|
}
|
|
3485
3510
|
.e-schedule .e-date-header-wrap {
|
|
3486
|
-
border-color:
|
|
3511
|
+
border-color: rgb(68.0034482759, 75.85, 83.6965517241);
|
|
3487
3512
|
border-style: solid;
|
|
3488
3513
|
border-width: 0;
|
|
3489
3514
|
position: relative;
|
|
@@ -3501,11 +3526,11 @@
|
|
|
3501
3526
|
background: #212529;
|
|
3502
3527
|
}
|
|
3503
3528
|
.e-schedule .e-vertical-view .e-date-header-wrap .e-all-day-cells:hover {
|
|
3504
|
-
background:
|
|
3529
|
+
background: rgb(21.6283783784, 24.25, 26.8716216216);
|
|
3505
3530
|
}
|
|
3506
3531
|
.e-schedule .e-vertical-view .e-left-indent-wrap table tbody td {
|
|
3507
3532
|
background: #212529;
|
|
3508
|
-
border-color:
|
|
3533
|
+
border-color: rgb(68.0034482759, 75.85, 83.6965517241);
|
|
3509
3534
|
border-style: solid;
|
|
3510
3535
|
border-width: 0 1px 1px 0;
|
|
3511
3536
|
color: #e9ecef;
|
|
@@ -3525,7 +3550,7 @@
|
|
|
3525
3550
|
}
|
|
3526
3551
|
.e-schedule .e-vertical-view .e-date-header-wrap table tbody td {
|
|
3527
3552
|
background: #212529;
|
|
3528
|
-
border-color:
|
|
3553
|
+
border-color: rgb(68.0034482759, 75.85, 83.6965517241);
|
|
3529
3554
|
border-style: solid;
|
|
3530
3555
|
border-width: 0 0 1px 1px;
|
|
3531
3556
|
color: #e9ecef;
|
|
@@ -3536,7 +3561,7 @@
|
|
|
3536
3561
|
}
|
|
3537
3562
|
.e-schedule .e-vertical-view .e-time-cells-wrap table td {
|
|
3538
3563
|
background: #343a40;
|
|
3539
|
-
border-color:
|
|
3564
|
+
border-color: rgb(68.0034482759, 75.85, 83.6965517241);
|
|
3540
3565
|
border-style: solid;
|
|
3541
3566
|
border-width: 0 1px 1px 0;
|
|
3542
3567
|
color: #ced4da;
|
|
@@ -3555,14 +3580,14 @@
|
|
|
3555
3580
|
font-weight: 400;
|
|
3556
3581
|
}
|
|
3557
3582
|
.e-schedule .e-vertical-view .e-work-cells {
|
|
3558
|
-
background:
|
|
3559
|
-
border-color:
|
|
3583
|
+
background: rgb(26.177027027, 29.35, 32.522972973);
|
|
3584
|
+
border-color: rgb(68.0034482759, 75.85, 83.6965517241);
|
|
3560
3585
|
border-style: solid;
|
|
3561
3586
|
border-width: 0 0 1px 1px;
|
|
3562
3587
|
padding: 0;
|
|
3563
3588
|
}
|
|
3564
3589
|
.e-schedule .e-vertical-view .e-work-cells:hover {
|
|
3565
|
-
background:
|
|
3590
|
+
background: rgb(21.6283783784, 24.25, 26.8716216216);
|
|
3566
3591
|
color: #fff;
|
|
3567
3592
|
}
|
|
3568
3593
|
.e-schedule .e-vertical-view .e-alternate-cells {
|
|
@@ -3613,7 +3638,7 @@
|
|
|
3613
3638
|
.e-schedule .e-month-view .e-date-header-wrap table td,
|
|
3614
3639
|
.e-schedule .e-month-agenda-view .e-date-header-wrap table td {
|
|
3615
3640
|
background: #212529;
|
|
3616
|
-
border-color:
|
|
3641
|
+
border-color: rgb(68.0034482759, 75.85, 83.6965517241);
|
|
3617
3642
|
border-style: solid;
|
|
3618
3643
|
border-width: 0 0 1px 1px;
|
|
3619
3644
|
color: #e9ecef;
|
|
@@ -3628,8 +3653,8 @@
|
|
|
3628
3653
|
}
|
|
3629
3654
|
.e-schedule .e-month-view .e-work-cells,
|
|
3630
3655
|
.e-schedule .e-month-agenda-view .e-work-cells {
|
|
3631
|
-
background:
|
|
3632
|
-
border-color:
|
|
3656
|
+
background: rgb(26.177027027, 29.35, 32.522972973);
|
|
3657
|
+
border-color: rgb(68.0034482759, 75.85, 83.6965517241);
|
|
3633
3658
|
border-style: solid;
|
|
3634
3659
|
border-width: 0 0 1px 1px;
|
|
3635
3660
|
color: #fff;
|
|
@@ -3637,7 +3662,7 @@
|
|
|
3637
3662
|
}
|
|
3638
3663
|
.e-schedule .e-month-view .e-work-cells:hover,
|
|
3639
3664
|
.e-schedule .e-month-agenda-view .e-work-cells:hover {
|
|
3640
|
-
background:
|
|
3665
|
+
background: rgb(21.6283783784, 24.25, 26.8716216216);
|
|
3641
3666
|
color: #fff;
|
|
3642
3667
|
}
|
|
3643
3668
|
.e-schedule .e-month-view .e-work-days,
|
|
@@ -3698,7 +3723,7 @@
|
|
|
3698
3723
|
.e-schedule .e-timeline-view .e-date-header-wrap table td,
|
|
3699
3724
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table td {
|
|
3700
3725
|
background: #212529;
|
|
3701
|
-
border-color:
|
|
3726
|
+
border-color: rgb(68.0034482759, 75.85, 83.6965517241);
|
|
3702
3727
|
border-style: solid;
|
|
3703
3728
|
border-width: 0 0 1px 1px;
|
|
3704
3729
|
color: #e9ecef;
|
|
@@ -3710,8 +3735,8 @@
|
|
|
3710
3735
|
}
|
|
3711
3736
|
.e-schedule .e-timeline-view .e-work-cells,
|
|
3712
3737
|
.e-schedule .e-timeline-month-view .e-work-cells {
|
|
3713
|
-
background:
|
|
3714
|
-
border-color:
|
|
3738
|
+
background: rgb(26.177027027, 29.35, 32.522972973);
|
|
3739
|
+
border-color: rgb(68.0034482759, 75.85, 83.6965517241);
|
|
3715
3740
|
border-style: solid;
|
|
3716
3741
|
border-width: 0 0 1px 1px;
|
|
3717
3742
|
color: #fff;
|
|
@@ -3719,7 +3744,7 @@
|
|
|
3719
3744
|
}
|
|
3720
3745
|
.e-schedule .e-timeline-view .e-work-cells:hover:not(.e-resource-group-cells),
|
|
3721
3746
|
.e-schedule .e-timeline-month-view .e-work-cells:hover:not(.e-resource-group-cells) {
|
|
3722
|
-
background:
|
|
3747
|
+
background: rgb(21.6283783784, 24.25, 26.8716216216);
|
|
3723
3748
|
color: #fff;
|
|
3724
3749
|
}
|
|
3725
3750
|
.e-schedule .e-timeline-view.e-virtual-mask .e-work-cells:hover,
|
|
@@ -3732,7 +3757,7 @@
|
|
|
3732
3757
|
}
|
|
3733
3758
|
.e-schedule .e-timeline-view .e-resource-group-cells,
|
|
3734
3759
|
.e-schedule .e-timeline-month-view .e-resource-group-cells {
|
|
3735
|
-
background:
|
|
3760
|
+
background: rgb(26.177027027, 29.35, 32.522972973);
|
|
3736
3761
|
}
|
|
3737
3762
|
.e-schedule .e-timeline-view .e-selected-cell,
|
|
3738
3763
|
.e-schedule .e-timeline-month-view .e-selected-cell {
|
|
@@ -3747,7 +3772,7 @@
|
|
|
3747
3772
|
background: #212529;
|
|
3748
3773
|
}
|
|
3749
3774
|
.e-schedule .e-timeline-view .e-resource-group-cells {
|
|
3750
|
-
background:
|
|
3775
|
+
background: rgb(26.177027027, 29.35, 32.522972973);
|
|
3751
3776
|
}
|
|
3752
3777
|
.e-schedule .e-timeline-view .e-selected-cell {
|
|
3753
3778
|
background: #343a40;
|
|
@@ -3771,15 +3796,15 @@
|
|
|
3771
3796
|
border-left: 1px solid #0d6efd;
|
|
3772
3797
|
}
|
|
3773
3798
|
.e-schedule .e-timeline-year-view .e-work-cells {
|
|
3774
|
-
background:
|
|
3775
|
-
border-color:
|
|
3799
|
+
background: rgb(26.177027027, 29.35, 32.522972973);
|
|
3800
|
+
border-color: rgb(68.0034482759, 75.85, 83.6965517241);
|
|
3776
3801
|
border-style: solid;
|
|
3777
3802
|
border-width: 0 1px 1px 0;
|
|
3778
3803
|
color: #fff;
|
|
3779
3804
|
padding: 0;
|
|
3780
3805
|
}
|
|
3781
3806
|
.e-schedule .e-timeline-year-view .e-work-cells:hover:not(.e-other-month) {
|
|
3782
|
-
background:
|
|
3807
|
+
background: rgb(21.6283783784, 24.25, 26.8716216216);
|
|
3783
3808
|
color: #fff;
|
|
3784
3809
|
}
|
|
3785
3810
|
.e-schedule .e-timeline-year-view .e-work-cells.e-work-days {
|
|
@@ -3823,8 +3848,8 @@
|
|
|
3823
3848
|
}
|
|
3824
3849
|
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
|
|
3825
3850
|
background: #343a40;
|
|
3826
|
-
-webkit-box-shadow: inset 0 0 0 8px
|
|
3827
|
-
box-shadow: inset 0 0 0 8px
|
|
3851
|
+
-webkit-box-shadow: inset 0 0 0 8px rgb(26.177027027, 29.35, 32.522972973);
|
|
3852
|
+
box-shadow: inset 0 0 0 8px rgb(26.177027027, 29.35, 32.522972973);
|
|
3828
3853
|
}
|
|
3829
3854
|
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
|
|
3830
3855
|
background: #343a40;
|
|
@@ -3889,8 +3914,8 @@
|
|
|
3889
3914
|
}
|
|
3890
3915
|
|
|
3891
3916
|
.e-tooltip-wrap.e-schedule-error {
|
|
3892
|
-
background:
|
|
3893
|
-
border-color:
|
|
3917
|
+
background: rgb(249.5063291139, 223.2936708861, 225.8050632911);
|
|
3918
|
+
border-color: rgb(249.5063291139, 223.2936708861, 225.8050632911);
|
|
3894
3919
|
z-index: 1000;
|
|
3895
3920
|
}
|
|
3896
3921
|
.e-tooltip-wrap.e-schedule-error .e-arrow-tip.e-tip-top {
|
|
@@ -3898,13 +3923,13 @@
|
|
|
3898
3923
|
}
|
|
3899
3924
|
.e-tooltip-wrap.e-schedule-error .e-arrow-tip-inner.e-tip-top,
|
|
3900
3925
|
.e-tooltip-wrap.e-schedule-error .e-arrow-tip-outer.e-tip-top {
|
|
3901
|
-
border-bottom: 8px solid
|
|
3902
|
-
color:
|
|
3926
|
+
border-bottom: 8px solid rgb(249.5063291139, 223.2936708861, 225.8050632911);
|
|
3927
|
+
color: rgb(249.5063291139, 223.2936708861, 225.8050632911);
|
|
3903
3928
|
}
|
|
3904
3929
|
.e-tooltip-wrap.e-schedule-error .e-arrow-tip-outer.e-tip-bottom,
|
|
3905
3930
|
.e-tooltip-wrap.e-schedule-error .e-arrow-tip-inner.e-tip-bottom {
|
|
3906
|
-
border-top: 8px solid
|
|
3907
|
-
color:
|
|
3931
|
+
border-top: 8px solid rgb(249.5063291139, 223.2936708861, 225.8050632911);
|
|
3932
|
+
color: rgb(249.5063291139, 223.2936708861, 225.8050632911);
|
|
3908
3933
|
}
|
|
3909
3934
|
.e-tooltip-wrap.e-schedule-error .e-tip-content {
|
|
3910
3935
|
padding: 3px 6px;
|
|
@@ -4047,6 +4072,10 @@
|
|
|
4047
4072
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
|
|
4048
4073
|
display: none;
|
|
4049
4074
|
}
|
|
4075
|
+
.e-recurrenceeditor .e-input-wrapper.e-month-expander-checkbox-wrapper.e-repeat-on-week-selector {
|
|
4076
|
+
min-width: 30px;
|
|
4077
|
+
margin-bottom: 18px;
|
|
4078
|
+
}
|
|
4050
4079
|
.e-recurrenceeditor .e-input-wrapper-side {
|
|
4051
4080
|
float: left;
|
|
4052
4081
|
padding: 16px 20px 0;
|
|
@@ -4218,7 +4247,7 @@
|
|
|
4218
4247
|
width: 65%;
|
|
4219
4248
|
}
|
|
4220
4249
|
.e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
|
|
4221
|
-
padding-left:
|
|
4250
|
+
padding-left: 59px;
|
|
4222
4251
|
}
|
|
4223
4252
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4224
4253
|
padding-right: 0;
|