@syncfusion/ej2-gantt 20.4.54 → 21.1.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/README.md +1 -1
- package/dist/ej2-gantt.min.js +2 -2
- package/dist/ej2-gantt.umd.min.js +2 -2
- package/dist/ej2-gantt.umd.min.js.map +1 -1
- package/dist/es6/ej2-gantt.es2015.js +1086 -419
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +1064 -397
- package/dist/es6/ej2-gantt.es5.js.map +1 -1
- package/dist/global/ej2-gantt.min.js +2 -2
- package/dist/global/ej2-gantt.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +20 -20
- package/src/gantt/actions/cell-edit.js +8 -6
- package/src/gantt/actions/chart-scroll.d.ts +1 -0
- package/src/gantt/actions/chart-scroll.js +15 -4
- package/src/gantt/actions/connector-line-edit.js +39 -28
- package/src/gantt/actions/context-menu.js +5 -5
- package/src/gantt/actions/dependency.js +28 -12
- package/src/gantt/actions/dialog-edit.js +41 -21
- package/src/gantt/actions/edit.js +51 -30
- package/src/gantt/actions/filter.d.ts +2 -1
- package/src/gantt/actions/filter.js +88 -2
- package/src/gantt/actions/keyboard.js +0 -1
- package/src/gantt/actions/pdf-export.d.ts +3 -1
- package/src/gantt/actions/pdf-export.js +12 -6
- package/src/gantt/actions/rowdragdrop.js +2 -2
- package/src/gantt/actions/selection.js +5 -2
- package/src/gantt/actions/taskbar-edit.d.ts +5 -0
- package/src/gantt/actions/taskbar-edit.js +114 -10
- package/src/gantt/base/date-processor.js +78 -52
- package/src/gantt/base/gantt-chart.js +20 -4
- package/src/gantt/base/gantt-model.d.ts +43 -0
- package/src/gantt/base/gantt.d.ts +39 -1
- package/src/gantt/base/gantt.js +78 -33
- package/src/gantt/base/interface.d.ts +2 -0
- package/src/gantt/base/task-processor.js +135 -98
- package/src/gantt/base/tree-grid.js +31 -1
- package/src/gantt/base/utils.js +1 -1
- package/src/gantt/renderer/chart-rows.d.ts +2 -0
- package/src/gantt/renderer/chart-rows.js +156 -24
- package/src/gantt/renderer/connector-line.js +50 -20
- package/src/gantt/renderer/edit-tooltip.js +0 -3
- package/src/gantt/renderer/event-marker.js +4 -1
- package/src/gantt/renderer/nonworking-day.js +4 -1
- package/src/gantt/renderer/timeline.js +3 -3
- package/src/gantt/renderer/tooltip.js +101 -33
- package/styles/bootstrap-dark.css +33 -10
- package/styles/bootstrap.css +31 -10
- package/styles/bootstrap4.css +28 -7
- package/styles/bootstrap5-dark.css +30 -9
- package/styles/bootstrap5.css +30 -9
- package/styles/fabric-dark.css +28 -7
- package/styles/fabric.css +28 -7
- package/styles/fluent-dark.css +56 -29
- package/styles/fluent.css +56 -29
- package/styles/gantt/_bootstrap-dark-definition.scss +5 -4
- package/styles/gantt/_bootstrap-definition.scss +5 -4
- package/styles/gantt/_bootstrap4-definition.scss +3 -2
- package/styles/gantt/_bootstrap5-definition.scss +15 -14
- package/styles/gantt/_fabric-dark-definition.scss +3 -2
- package/styles/gantt/_fabric-definition.scss +3 -2
- package/styles/gantt/_fluent-definition.scss +18 -17
- package/styles/gantt/_fusionnew-definition.scss +5 -4
- package/styles/gantt/_highcontrast-definition.scss +3 -2
- package/styles/gantt/_highcontrast-light-definition.scss +3 -2
- package/styles/gantt/_layout.scss +45 -13
- package/styles/gantt/_material-dark-definition.scss +3 -2
- package/styles/gantt/_material-definition.scss +3 -2
- package/styles/gantt/_tailwind-definition.scss +9 -8
- package/styles/gantt/_theme.scss +25 -6
- package/styles/gantt/bootstrap-dark.css +33 -10
- package/styles/gantt/bootstrap.css +31 -10
- package/styles/gantt/bootstrap4.css +28 -7
- package/styles/gantt/bootstrap5-dark.css +30 -9
- package/styles/gantt/bootstrap5.css +30 -9
- package/styles/gantt/fabric-dark.css +28 -7
- package/styles/gantt/fabric.css +28 -7
- package/styles/gantt/fluent-dark.css +56 -29
- package/styles/gantt/fluent.css +56 -29
- package/styles/gantt/highcontrast-light.css +28 -9
- package/styles/gantt/highcontrast.css +28 -7
- package/styles/gantt/material-dark.css +31 -14
- package/styles/gantt/material.css +28 -7
- package/styles/gantt/tailwind-dark.css +28 -7
- package/styles/gantt/tailwind.css +28 -7
- package/styles/highcontrast-light.css +28 -9
- package/styles/highcontrast.css +28 -7
- package/styles/material-dark.css +31 -14
- package/styles/material.css +28 -7
- package/styles/tailwind-dark.css +28 -7
- package/styles/tailwind.css +28 -7
- package/styles/gantt/_material3-definition.scss +0 -218
package/styles/fluent.css
CHANGED
|
@@ -324,7 +324,7 @@
|
|
|
324
324
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
|
|
325
325
|
background-color: #005ba1;
|
|
326
326
|
border-color: #fff;
|
|
327
|
-
outline: 2px solid #
|
|
327
|
+
outline: 2px solid #fff;
|
|
328
328
|
}
|
|
329
329
|
.e-bigger .e-gantt .e-tab .e-content {
|
|
330
330
|
height: 254px !important;
|
|
@@ -332,6 +332,14 @@
|
|
|
332
332
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
333
333
|
height: 63px !important; /* stylelint-disable-line declaration-no-important */
|
|
334
334
|
}
|
|
335
|
+
.e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
336
|
+
padding-left: 0px;
|
|
337
|
+
}
|
|
338
|
+
.e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
339
|
+
display: block;
|
|
340
|
+
bottom: 0;
|
|
341
|
+
height: 3px;
|
|
342
|
+
}
|
|
335
343
|
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
336
344
|
padding: 16px 4px 16px 28px !important; /* stylelint-disable-line declaration-no-important */
|
|
337
345
|
}
|
|
@@ -364,7 +372,7 @@
|
|
|
364
372
|
border-radius: 2px !important;
|
|
365
373
|
padding: 28px 28px 0px 28px !important;
|
|
366
374
|
}
|
|
367
|
-
.e-bigger .e-grid .e-columnmenu {
|
|
375
|
+
.e-bigger .e-gantt .e-grid .e-columnmenu {
|
|
368
376
|
top: 38px;
|
|
369
377
|
}
|
|
370
378
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
@@ -450,11 +458,11 @@
|
|
|
450
458
|
min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
|
|
451
459
|
}
|
|
452
460
|
.e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
|
|
453
|
-
border-top: 8px solid #
|
|
454
|
-
border-top: 12.5px solid #
|
|
461
|
+
border-top: 8px solid #323130;
|
|
462
|
+
border-top: 12.5px solid #323130;
|
|
455
463
|
}
|
|
456
464
|
.e-bigger .e-predecessor-tooltip .e-arrow-tip-inner.e-tip-bottom {
|
|
457
|
-
color: #
|
|
465
|
+
color: #323130;
|
|
458
466
|
}
|
|
459
467
|
.e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
|
|
460
468
|
color: #a19f9d !important;
|
|
@@ -466,17 +474,17 @@
|
|
|
466
474
|
padding: 3px !important; /* stylelint-disable-line declaration-no-important */
|
|
467
475
|
}
|
|
468
476
|
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
469
|
-
background-color: #
|
|
470
|
-
border-color: #
|
|
471
|
-
color: #
|
|
477
|
+
background-color: #323130;
|
|
478
|
+
border-color: #323130;
|
|
479
|
+
color: #fff;
|
|
472
480
|
font-size: 12px;
|
|
473
481
|
line-height: 18px;
|
|
474
482
|
padding: 0 8px 0 0;
|
|
475
483
|
}
|
|
476
484
|
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
|
|
477
|
-
background-color: #
|
|
478
|
-
border-color: #
|
|
479
|
-
color: #
|
|
485
|
+
background-color: #323130;
|
|
486
|
+
border-color: #323130;
|
|
487
|
+
color: #fff;
|
|
480
488
|
font-size: 12px;
|
|
481
489
|
line-height: 18px;
|
|
482
490
|
padding: 0 0 0 8px;
|
|
@@ -578,7 +586,7 @@
|
|
|
578
586
|
border-width: 1px;
|
|
579
587
|
box-shadow: 0 0;
|
|
580
588
|
font-size: 12px;
|
|
581
|
-
font-weight:
|
|
589
|
+
font-weight: 700;
|
|
582
590
|
opacity: 1;
|
|
583
591
|
overflow: hidden;
|
|
584
592
|
padding: 2px 8px 1px;
|
|
@@ -770,7 +778,7 @@
|
|
|
770
778
|
display: -ms-inline-flexbox;
|
|
771
779
|
display: inline-flex;
|
|
772
780
|
font-size: 14px;
|
|
773
|
-
font-weight:
|
|
781
|
+
font-weight: 700;
|
|
774
782
|
margin: 0;
|
|
775
783
|
padding: 0;
|
|
776
784
|
position: static;
|
|
@@ -1293,6 +1301,9 @@
|
|
|
1293
1301
|
outline: 1px solid;
|
|
1294
1302
|
outline-offset: 2px;
|
|
1295
1303
|
}
|
|
1304
|
+
.e-gantt .e-dialog.e-filter-popup .e-footer-content {
|
|
1305
|
+
padding-top: 0;
|
|
1306
|
+
}
|
|
1296
1307
|
|
|
1297
1308
|
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1298
1309
|
padding-left: 0px;
|
|
@@ -1520,16 +1531,16 @@
|
|
|
1520
1531
|
}
|
|
1521
1532
|
|
|
1522
1533
|
.e-predecessor-tooltip {
|
|
1523
|
-
background-color: #
|
|
1524
|
-
border-color: #
|
|
1534
|
+
background-color: #323130 !important; /* stylelint-disable-line declaration-no-important */
|
|
1535
|
+
border-color: #323130 !important; /* stylelint-disable-line declaration-no-important */
|
|
1525
1536
|
visibility: hidden;
|
|
1526
1537
|
}
|
|
1527
1538
|
.e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
|
|
1528
|
-
border-top: 8px solid #
|
|
1529
|
-
border-top: 12.5px solid #
|
|
1539
|
+
border-top: 8px solid #323130;
|
|
1540
|
+
border-top: 12.5px solid #323130;
|
|
1530
1541
|
}
|
|
1531
1542
|
.e-predecessor-tooltip .e-arrow-tip-inner.e-tip-bottom {
|
|
1532
|
-
color: #
|
|
1543
|
+
color: #323130;
|
|
1533
1544
|
}
|
|
1534
1545
|
.e-predecessor-tooltip .e-left-btn:disabled {
|
|
1535
1546
|
color: #a19f9d !important;
|
|
@@ -1541,17 +1552,17 @@
|
|
|
1541
1552
|
padding: 3px !important; /* stylelint-disable-line declaration-no-important */
|
|
1542
1553
|
}
|
|
1543
1554
|
.e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
1544
|
-
background-color: #
|
|
1545
|
-
border-color: #
|
|
1546
|
-
color: #
|
|
1555
|
+
background-color: #323130;
|
|
1556
|
+
border-color: #323130;
|
|
1557
|
+
color: #fff;
|
|
1547
1558
|
font-size: 12px;
|
|
1548
1559
|
line-height: 18px;
|
|
1549
1560
|
padding: 0 8px 0 0;
|
|
1550
1561
|
}
|
|
1551
1562
|
.e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
|
|
1552
|
-
background-color: #
|
|
1553
|
-
border-color: #
|
|
1554
|
-
color: #
|
|
1563
|
+
background-color: #323130;
|
|
1564
|
+
border-color: #323130;
|
|
1565
|
+
color: #fff;
|
|
1555
1566
|
font-size: 12px;
|
|
1556
1567
|
line-height: 18px;
|
|
1557
1568
|
padding: 0 0 0 8px;
|
|
@@ -1700,7 +1711,7 @@
|
|
|
1700
1711
|
.e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
|
|
1701
1712
|
background-color: #0078d4;
|
|
1702
1713
|
border: 0px;
|
|
1703
|
-
border-radius:
|
|
1714
|
+
border-radius: 3px;
|
|
1704
1715
|
}
|
|
1705
1716
|
.e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
|
|
1706
1717
|
background-color: #dff6dd;
|
|
@@ -1711,7 +1722,7 @@
|
|
|
1711
1722
|
}
|
|
1712
1723
|
.e-gantt .e-gantt-chart .e-gantt-child-manualprogressbar {
|
|
1713
1724
|
background-color: #0b6a0b;
|
|
1714
|
-
|
|
1725
|
+
outline: 0px;
|
|
1715
1726
|
}
|
|
1716
1727
|
.e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
|
|
1717
1728
|
background-color: #0b6a0b;
|
|
@@ -1771,6 +1782,18 @@
|
|
|
1771
1782
|
.e-gantt .e-gantt-chart .e-line {
|
|
1772
1783
|
border-color: #0078d4;
|
|
1773
1784
|
}
|
|
1785
|
+
.e-gantt .e-gantt-chart .e-connector-line {
|
|
1786
|
+
stroke: #0078d4;
|
|
1787
|
+
}
|
|
1788
|
+
.e-gantt .e-gantt-chart .e-critical-line {
|
|
1789
|
+
stroke: #d13438;
|
|
1790
|
+
}
|
|
1791
|
+
.e-gantt .e-gantt-chart .e-connector-line-arrow {
|
|
1792
|
+
fill: #0078d4;
|
|
1793
|
+
}
|
|
1794
|
+
.e-gantt .e-gantt-chart .e-critical-line-arrow {
|
|
1795
|
+
fill: #d13438;
|
|
1796
|
+
}
|
|
1774
1797
|
.e-gantt .e-gantt-chart .e-connector-line-right-arrow {
|
|
1775
1798
|
border-left-color: #0078d4;
|
|
1776
1799
|
}
|
|
@@ -1822,7 +1845,10 @@
|
|
|
1822
1845
|
padding-right: 25px;
|
|
1823
1846
|
}
|
|
1824
1847
|
.e-gantt .e-gantt-chart .e-connectorpoint-right {
|
|
1825
|
-
margin-left:
|
|
1848
|
+
margin-left: 3px;
|
|
1849
|
+
}
|
|
1850
|
+
.e-gantt .e-gantt-chart .e-connectorpoint-left {
|
|
1851
|
+
margin-right: 3px;
|
|
1826
1852
|
}
|
|
1827
1853
|
.e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
|
|
1828
1854
|
.e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
|
|
@@ -2083,14 +2109,15 @@
|
|
|
2083
2109
|
|
|
2084
2110
|
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
2085
2111
|
background-color: #fed9cc;
|
|
2086
|
-
|
|
2112
|
+
outline: 1px solid #fed9cc;
|
|
2087
2113
|
border-radius: 4px;
|
|
2088
2114
|
}
|
|
2089
2115
|
|
|
2090
2116
|
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
2091
2117
|
background-color: #d13438;
|
|
2092
2118
|
border: 0px;
|
|
2093
|
-
|
|
2119
|
+
position: absolute;
|
|
2120
|
+
border-radius: 3px;
|
|
2094
2121
|
}
|
|
2095
2122
|
|
|
2096
2123
|
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
|
@@ -48,8 +48,8 @@ $gantt-unscheduled-milestone-top-border: #dadada !default;
|
|
|
48
48
|
$gantt-unscheduled-milestone-bottom-border: #dadada !default;
|
|
49
49
|
$gantt-child-task-bar: lighten($brand-primary, 10%) !default;
|
|
50
50
|
$gantt-child-progress-bar: $brand-primary !default;
|
|
51
|
-
$gantt-child-progress-bar-border:
|
|
52
|
-
$gantt-child-progress-bar-border-
|
|
51
|
+
$gantt-child-progress-bar-border: 0px solid $brand-primary !default;
|
|
52
|
+
$gantt-child-progress-bar-border-radius:3px;
|
|
53
53
|
$gantt-empty-taskbar-background-color: rgba(0, 112, 240, .15);
|
|
54
54
|
$gantt-empty-taskbar-border-color: rgba(0, 112, 240, .65) !important;
|
|
55
55
|
$gantt-child-task-bar-border: 1px solid $brand-primary !default;
|
|
@@ -65,10 +65,11 @@ $gantt-parent-progress-bar: #4cc7ba !default;
|
|
|
65
65
|
$gantt-milestone-border-color: #dadada !default;
|
|
66
66
|
$gantt-critical-milestone-border-color: #D13438 !default;
|
|
67
67
|
$gantt-parent-milestone-border-color: #4cc7ba !default;
|
|
68
|
-
$gantt-parent-progress-bar-border:
|
|
68
|
+
$gantt-parent-progress-bar-border: 0px solid #4cc7ba !default;
|
|
69
69
|
$gantt-parent-task-bar-border: 1px solid #4cc7ba !default;
|
|
70
70
|
$gantt-unscheduled-taskbar-border-radius: 4px !default;
|
|
71
|
-
$gantt-connector-point-right-margin-left:
|
|
71
|
+
$gantt-connector-point-right-margin-left: 3px !default;
|
|
72
|
+
$gantt-connector-point-left-margin-right: 3px !default;
|
|
72
73
|
$gantt-right-label-container-margin-left: 25px !default;
|
|
73
74
|
$gantt-task-label-font-size: 12px !default;
|
|
74
75
|
$gantt-label-font-size: 14px !default;
|
|
@@ -48,10 +48,10 @@ $gantt-unscheduled-milestone-top-border: $grey !default;
|
|
|
48
48
|
$gantt-unscheduled-milestone-bottom-border: $grey !default;
|
|
49
49
|
$gantt-child-task-bar: $brand-primary !default;
|
|
50
50
|
$gantt-child-progress-bar: darken($brand-primary, 15%) !default;
|
|
51
|
-
$gantt-child-progress-bar-border:
|
|
51
|
+
$gantt-child-progress-bar-border: 0px solid darken($brand-primary, 15%) !default;
|
|
52
52
|
$gantt-empty-taskbar-background-color: rgba(33, 82, 125, .15);
|
|
53
53
|
$gantt-empty-taskbar-border-color: rgba(33, 82, 125, .65) !important;
|
|
54
|
-
$gantt-child-progress-bar-border-
|
|
54
|
+
$gantt-child-progress-bar-border-radius:3px;
|
|
55
55
|
$gantt-child-task-bar-border: 1px solid darken($brand-primary, 15%) !default;
|
|
56
56
|
$gantt-manualchild-task-bar: #7538C9;
|
|
57
57
|
$gantt-manualchild-task-bar-border: 1px solid #572A96;
|
|
@@ -65,10 +65,11 @@ $gantt-parent-progress-bar: $grey !default;
|
|
|
65
65
|
$gantt-milestone-border-color: $gray !default;
|
|
66
66
|
$gantt-critical-milestone-border-color: #D13438 !default;
|
|
67
67
|
$gantt-parent-milestone-border-color: $grey !default;
|
|
68
|
-
$gantt-parent-progress-bar-border:
|
|
68
|
+
$gantt-parent-progress-bar-border: 0px solid $grey !default;
|
|
69
69
|
$gantt-parent-task-bar-border: 1px solid $grey !default;
|
|
70
70
|
$gantt-unscheduled-taskbar-border-radius: 4px !default;
|
|
71
|
-
$gantt-connector-point-right-margin-left:
|
|
71
|
+
$gantt-connector-point-right-margin-left: 3px !default;
|
|
72
|
+
$gantt-connector-point-left-margin-right: 3px !default;
|
|
72
73
|
$gantt-right-label-container-margin-left: 25px !default;
|
|
73
74
|
$gantt-task-label-font-size: 12px !default;
|
|
74
75
|
$gantt-label-font-size: 14px !default;
|
|
@@ -51,7 +51,7 @@ $gantt-child-progress-bar: darken($primary, 15%) !default;
|
|
|
51
51
|
$gantt-child-progress-bar-border: 0px !default;
|
|
52
52
|
$gantt-empty-taskbar-background-color: rgba(0,120,222,.15);
|
|
53
53
|
$gantt-empty-taskbar-border-color: rgba(0,120,222,.65) !important;
|
|
54
|
-
$gantt-child-progress-bar-border-
|
|
54
|
+
$gantt-child-progress-bar-border-radius:3px;
|
|
55
55
|
$gantt-child-task-bar-border: 1px solid darken($primary, 15%) !default;
|
|
56
56
|
$gantt-manualchild-task-bar: #8553F1;
|
|
57
57
|
$gantt-manualchild-task-bar-border: 1px solid #6628EE;
|
|
@@ -67,7 +67,8 @@ $gantt-critical-milestone-border-color: #D13438 !default;
|
|
|
67
67
|
$gantt-parent-milestone-border-color: $gray-700 !default;
|
|
68
68
|
$gantt-parent-progress-bar-border: 0px !default;
|
|
69
69
|
$gantt-parent-task-bar-border: 1px solid $gray-700 !default;
|
|
70
|
-
$gantt-connector-point-right-margin-left:
|
|
70
|
+
$gantt-connector-point-right-margin-left: 3px !default;
|
|
71
|
+
$gantt-connector-point-left-margin-right: 3px !default;
|
|
71
72
|
$gantt-right-label-container-margin-left: 25px !default;
|
|
72
73
|
$gantt-task-label-font-size: 12px !default;
|
|
73
74
|
$gantt-task-label-font-color: $primary-font !default;
|
|
@@ -92,8 +92,8 @@ $gantt-active-container-border: $border !default;
|
|
|
92
92
|
$rangecontainer-border-color: $border-warning;
|
|
93
93
|
|
|
94
94
|
// Layout
|
|
95
|
-
$holiday-label-font-size:
|
|
96
|
-
$event-marker-label-font-size:
|
|
95
|
+
$holiday-label-font-size: $font-icon-13 !default;
|
|
96
|
+
$event-marker-label-font-size: $text-sm !default;
|
|
97
97
|
$event-marker-label-padding: 3px 12px !default;
|
|
98
98
|
$event-marker-label-height: 28px !default;
|
|
99
99
|
$event-marker-label-arrow-top: 56px !default;
|
|
@@ -106,16 +106,17 @@ $gantt-unscheduled-taskbar-curved-radius: 0 !default;
|
|
|
106
106
|
$gantt-label-size: 13px !default;
|
|
107
107
|
$gantt-header-border-spacing: 0 !default;
|
|
108
108
|
$gantt-child-progress-bar-border: 0px !default;
|
|
109
|
-
$gantt-child-progress-bar-border-
|
|
109
|
+
$gantt-child-progress-bar-border-radius:3px;
|
|
110
110
|
$gantt-child-task-bar-border: 1px solid $primary !default;
|
|
111
111
|
$gantt-manualchild-progress-bar-border: 0px !default;
|
|
112
112
|
$gantt-parent-progress-bar-border: 0px !default;
|
|
113
113
|
$gantt-parent-task-bar-border: 1px solid $border-dark !default;
|
|
114
|
-
$gantt-connector-point-right-margin-left:
|
|
114
|
+
$gantt-connector-point-right-margin-left: 3px !default;
|
|
115
|
+
$gantt-connector-point-left-margin-right: 3px !default;
|
|
115
116
|
$gantt-right-label-container-margin-left: 25px !default;
|
|
116
|
-
$gantt-task-label-font-size:
|
|
117
|
-
$gantt-label-font-size:
|
|
118
|
-
$gantt-bigger-label-font-size:
|
|
117
|
+
$gantt-task-label-font-size: $text-xs !default;
|
|
118
|
+
$gantt-label-font-size: $text-sm !default;
|
|
119
|
+
$gantt-bigger-label-font-size: $text-base !default;
|
|
119
120
|
$gantt-unscheduled-taskbar-border: 0px !default;
|
|
120
121
|
$gantt-unscheduled-taskbar-border-radius: 4px !default;
|
|
121
122
|
$gantt-dialog-general-height: 241px !default;
|
|
@@ -134,7 +135,7 @@ $gantt-bigger-dialog-close-button-size: 14px !important;
|
|
|
134
135
|
$gantt-bigger-dialog-header-padding: 16px 4px 16px 16px !important;
|
|
135
136
|
$gantt-bigger-add-dialog-content-height: 250px !important;
|
|
136
137
|
$gantt-bigger-event-arrow-color: $warning-light;
|
|
137
|
-
$gantt-bigger-event-arrow-font-size:
|
|
138
|
+
$gantt-bigger-event-arrow-font-size: $text-xs !important;
|
|
138
139
|
$gantt-bigger-event-markers-border-radius: 4px !important;
|
|
139
140
|
$gantt-bigger-event-markers-height: 26px !important;
|
|
140
141
|
$gantt-bigger-event-arrow-bottom: 6px solid transparent;
|
|
@@ -156,8 +157,8 @@ $gantt-bigger-filter-dialog-width: 350px !important;
|
|
|
156
157
|
$gantt-dialog-bigger-input-field: 38px !default;
|
|
157
158
|
$gantt-dialog-bigger-input-padding-field: 32px 16px 16px !important;
|
|
158
159
|
$gantt-bigger-predecessor-dialog-padding: 10px 9px 9px 14px !important;
|
|
159
|
-
$gantt-bigger-predecessor-dialog-font-size:
|
|
160
|
-
$gantt-bigger-predecessor-dialog-font-weight:
|
|
160
|
+
$gantt-bigger-predecessor-dialog-font-size: $text-xs;
|
|
161
|
+
$gantt-bigger-predecessor-dialog-font-weight: $font-weight-normal !default;
|
|
161
162
|
$gantt-bigger-predecessor-dialog-line-height: 1.8 !default;
|
|
162
163
|
$gantt-bigger-dialog-input-field-height: 36px !important;
|
|
163
164
|
$gantt-bigger-dialog-input-icon: 36px !important;
|
|
@@ -180,8 +181,8 @@ $gantt-connector-point-width: 12px !default;
|
|
|
180
181
|
$gantt-connector-point-height: 8px !default;
|
|
181
182
|
$gantt-connector-left-point-left: -12px !default;
|
|
182
183
|
$gantt-parent-progress-bar-border-radius: 4px !default;
|
|
183
|
-
$gantt-timeline-top-headercell-font-size:
|
|
184
|
-
$gantt-timeline-top-headercell-font-weight: bold !default;
|
|
184
|
+
$gantt-timeline-top-headercell-font-size: $text-sm !default;
|
|
185
|
+
$gantt-timeline-top-headercell-font-weight: $font-weight-bold !default;
|
|
185
186
|
$gantt-active-color-opacity: 0.9 !default;
|
|
186
187
|
$gantt-child-progress-margin-left: 0.5px !default;
|
|
187
188
|
$gantt-timeline-single-header-outer-div: 45px !default;
|
|
@@ -204,8 +205,8 @@ $event-marker-line-height: 1.5 !default;
|
|
|
204
205
|
$gantt-clone-padding: 2px 8px 1px !default;
|
|
205
206
|
$gantt-bigger-clone-padding: $gantt-clone-padding !default;
|
|
206
207
|
$gantt-group-clone-box-shadow: 0 0 !default;
|
|
207
|
-
$gantt-header-font-size:
|
|
208
|
-
$gantt-header-font-weight: bold !default;
|
|
208
|
+
$gantt-header-font-size: $text-xs !default;
|
|
209
|
+
$gantt-header-font-weight: $font-weight-bold !default;
|
|
209
210
|
$gantt-drag-clone-font-weight: $gantt-header-font-weight !default;
|
|
210
211
|
$gantt-drag-clone-opacity: 1 !default;
|
|
211
212
|
$gantt-group-clone-text-align: center !default;
|
|
@@ -57,7 +57,7 @@ $gantt-manualparent-background-color: #989A9C;
|
|
|
57
57
|
$gantt-unscheduledmanualparent-background-color: linear-gradient(to right, rgba(63, 81, 181, 0.2), #989A9C 30%, #989A9C 70%, #989A9C 70%, rgba(63, 81, 181, 0.2) 100%) !default;
|
|
58
58
|
$gantt-unscheduled-manualtaskbar-background: linear-gradient(to right, rgba(63,81,181, 0.2), #8dd1c4 30%, #8dd1c4 70%, #8dd1c4 70%, rgba(63,81,181, 0.2) 100%) !default;
|
|
59
59
|
$gantt-child-progress-bar-border: 0px !default;
|
|
60
|
-
$gantt-child-progress-bar-border-
|
|
60
|
+
$gantt-child-progress-bar-border-radius:3px;
|
|
61
61
|
$gantt-parent-task-bar: #029f90 !default;
|
|
62
62
|
$gantt-parent-progress-bar: #4cc7ba !default;
|
|
63
63
|
$gantt-milestone-border-color: $neutral-secondary !default;
|
|
@@ -65,7 +65,8 @@ $gantt-critical-milestone-border-color: #d13438 !default;
|
|
|
65
65
|
$gantt-parent-milestone-border-color: #4cc7ba !default;
|
|
66
66
|
$gantt-parent-task-bar-border: 1px solid #4cc7ba !default;
|
|
67
67
|
$gantt-parent-progress-bar-border: 0px !default;
|
|
68
|
-
$gantt-connector-point-right-margin-left:
|
|
68
|
+
$gantt-connector-point-right-margin-left: 3px !default;
|
|
69
|
+
$gantt-connector-point-left-margin-right: 3px !default;
|
|
69
70
|
$gantt-right-label-container-margin-left: 25px !default;
|
|
70
71
|
$gantt-task-label-font-size: 12px !default;
|
|
71
72
|
$gantt-task-label-font-color: $theme-primary-font !default;
|
|
@@ -57,7 +57,7 @@ $gantt-manualparent-background-color: #989A9C;
|
|
|
57
57
|
$gantt-unscheduledmanualparent-background-color: linear-gradient(to right, rgba(63, 81, 181, 0.2), #989A9C 30%, #989A9C 70%, #989A9C 70%, rgba(63, 81, 181, 0.2) 100%) !default;
|
|
58
58
|
$gantt-unscheduled-manualtaskbar-background: linear-gradient(to right, rgba(63,81,181, 0.2), #9A38BA 30%, #9A38BA 70%, #9A38BA 70%, rgba(63,81,181, 0.2) 100%) !default;
|
|
59
59
|
$gantt-child-progress-bar-border: 0px !default;
|
|
60
|
-
$gantt-child-progress-bar-border-
|
|
60
|
+
$gantt-child-progress-bar-border-radius:3px;
|
|
61
61
|
$gantt-parent-task-bar: $neutral-secondary-alt !default;
|
|
62
62
|
$gantt-parent-progress-bar: darken($neutral-secondary-alt, 15%) !default;
|
|
63
63
|
$gantt-milestone-border-color: darken($neutral-secondary-alt, 15%) !default;
|
|
@@ -65,7 +65,8 @@ $gantt-critical-milestone-border-color: #D13438 !default;
|
|
|
65
65
|
$gantt-parent-milestone-border-color: darken($neutral-secondary-alt, 15%) !default;
|
|
66
66
|
$gantt-parent-task-bar-border: 1px solid darken($neutral-secondary-alt, 15%) !default;
|
|
67
67
|
$gantt-parent-progress-bar-border: 0px !default;
|
|
68
|
-
$gantt-connector-point-right-margin-left:
|
|
68
|
+
$gantt-connector-point-right-margin-left: 3px !default;
|
|
69
|
+
$gantt-connector-point-left-margin-right: 3px !default;
|
|
69
70
|
$gantt-right-label-container-margin-left: 25px !default;
|
|
70
71
|
$gantt-task-label-font-size: 12px !default;
|
|
71
72
|
$gantt-task-label-font-color: $theme-primary-font !default;
|
|
@@ -34,7 +34,7 @@ $gantt-critical-child-progress-bar: $danger !default;
|
|
|
34
34
|
$gantt-critical-child-task-bar-border: 1px solid $danger-light !default;
|
|
35
35
|
$gantt-unscheduled-milestone-top-border: $content-bg-color-alt5 !default;
|
|
36
36
|
$gantt-unscheduled-milestone-bottom-border: $content-bg-color-alt5 !default;
|
|
37
|
-
$connector-point-hover-outerline-color: $
|
|
37
|
+
$connector-point-hover-outerline-color: $connector-point-border-color !default;
|
|
38
38
|
$gantt-child-task-bar: lighten($primary, 30%) !default;
|
|
39
39
|
$gantt-child-progress-bar: $primary !default;
|
|
40
40
|
$gantt-manualchild-task-bar: $success-light !default;
|
|
@@ -92,8 +92,8 @@ $gantt-active-container-border: $border !default;
|
|
|
92
92
|
$rangecontainer-border-color: $border-warning;
|
|
93
93
|
|
|
94
94
|
// Layout
|
|
95
|
-
$holiday-label-font-size:
|
|
96
|
-
$event-marker-label-font-size:
|
|
95
|
+
$holiday-label-font-size: $font-icon-13 !default;
|
|
96
|
+
$event-marker-label-font-size: $text-sm !default;
|
|
97
97
|
$event-marker-label-padding: 3px 12px !default;
|
|
98
98
|
$event-marker-label-height: 28px !default;
|
|
99
99
|
$event-marker-label-arrow-top: 59px !default;
|
|
@@ -106,16 +106,17 @@ $gantt-unscheduled-taskbar-curved-radius: 0 !default;
|
|
|
106
106
|
$gantt-label-size: 13px !default;
|
|
107
107
|
$gantt-header-border-spacing: 0 !default;
|
|
108
108
|
$gantt-child-progress-bar-border: 0px !default;
|
|
109
|
-
$gantt-child-progress-bar-border-
|
|
109
|
+
$gantt-child-progress-bar-border-radius:3px;
|
|
110
110
|
$gantt-child-task-bar-border: 1px solid $primary !default;
|
|
111
111
|
$gantt-manualchild-progress-bar-border: 0px !default;
|
|
112
112
|
$gantt-parent-progress-bar-border: 0px !default;
|
|
113
113
|
$gantt-parent-task-bar-border: 1px solid $border-dark !default;
|
|
114
|
-
$gantt-connector-point-right-margin-left:
|
|
114
|
+
$gantt-connector-point-right-margin-left: 3px !default;
|
|
115
|
+
$gantt-connector-point-left-margin-right: 3px !default;
|
|
115
116
|
$gantt-right-label-container-margin-left: 25px !default;
|
|
116
|
-
$gantt-task-label-font-size:
|
|
117
|
-
$gantt-label-font-size:
|
|
118
|
-
$gantt-bigger-label-font-size:
|
|
117
|
+
$gantt-task-label-font-size: $text-xs !default;
|
|
118
|
+
$gantt-label-font-size: $text-sm !default;
|
|
119
|
+
$gantt-bigger-label-font-size: $text-base !default;
|
|
119
120
|
$gantt-unscheduled-taskbar-border: 0px !default;
|
|
120
121
|
$gantt-unscheduled-taskbar-border-radius: 4px !default;
|
|
121
122
|
$gantt-dialog-general-height: 241px !default;
|
|
@@ -123,12 +124,12 @@ $gantt-dialog-edit-form-odd-padding: 12px 18px 0 18px !default;
|
|
|
123
124
|
$gantt-dialog-edit-form-even-padding: 12px 18px 0 0 !default;
|
|
124
125
|
$gantt-dialog-edit-form-scroll-padding: 12px 18px 0 0 !default;
|
|
125
126
|
$gantt-bigger-predecessor-dialog-padding: 10px 9px 9px 14px !important;
|
|
126
|
-
$gantt-bigger-predecessor-dialog-font-size:
|
|
127
|
-
$gantt-bigger-predecessor-dialog-font-weight:
|
|
127
|
+
$gantt-bigger-predecessor-dialog-font-size: $text-xs;
|
|
128
|
+
$gantt-bigger-predecessor-dialog-font-weight: $font-weight-normal !default;
|
|
128
129
|
$gantt-bigger-predecessor-dialog-line-height: 1.8 !default;
|
|
129
|
-
$gantt-bigger-tooltip-button-color: $
|
|
130
|
+
$gantt-bigger-tooltip-button-color: $toooltip-text-color;
|
|
130
131
|
$gantt-bigger-tooltip-dialog-color: $content-bg-color-alt1;
|
|
131
|
-
$gantt-bigger-tooltip-button-text-color: $
|
|
132
|
+
$gantt-bigger-tooltip-button-text-color: $tooltip-bg-color;
|
|
132
133
|
$gantt-bigger-tooltip-dialog-text-color: $content-text-color;
|
|
133
134
|
$gantt-bigger-tooltip-disabled-button-color: $content-text-color-disabled !important;
|
|
134
135
|
$gantt-bigger-dialog-edit-form-odd-padding: 16px 8px 0 28px !default;
|
|
@@ -138,7 +139,7 @@ $gantt-bigger-dialog-close-button-size: 14px !important;
|
|
|
138
139
|
$gantt-bigger-dialog-header-padding: 16px 4px 16px 28px !important;
|
|
139
140
|
$gantt-bigger-add-dialog-content-height: 254px !important;
|
|
140
141
|
$gantt-bigger-event-arrow-color: $warning-light;
|
|
141
|
-
$gantt-bigger-event-arrow-font-size:
|
|
142
|
+
$gantt-bigger-event-arrow-font-size: $text-xs !important;
|
|
142
143
|
$gantt-bigger-event-markers-border-radius: 4px !important;
|
|
143
144
|
$gantt-bigger-event-markers-top: 35px !important;
|
|
144
145
|
$gantt-bigger-event-arrow-bottom: 6px solid transparent;
|
|
@@ -180,8 +181,8 @@ $gantt-connector-point-width: 12px !default;
|
|
|
180
181
|
$gantt-connector-point-height: 8px !default;
|
|
181
182
|
$gantt-connector-left-point-left: -12px !default;
|
|
182
183
|
$gantt-parent-progress-bar-border-radius: 4px !default;
|
|
183
|
-
$gantt-timeline-top-headercell-font-size:
|
|
184
|
-
$gantt-timeline-top-headercell-font-weight: bold !default;
|
|
184
|
+
$gantt-timeline-top-headercell-font-size: $text-sm !default;
|
|
185
|
+
$gantt-timeline-top-headercell-font-weight: $font-weight-bold !default;
|
|
185
186
|
$gantt-active-color-opacity: 0.9 !default;
|
|
186
187
|
$gantt-child-progress-margin-left: 0.5px !default;
|
|
187
188
|
$gantt-timeline-single-header-outer-div: 45px !default;
|
|
@@ -204,8 +205,8 @@ $event-marker-line-height: 1.5 !default;
|
|
|
204
205
|
$gantt-clone-padding: 2px 8px 1px !default;
|
|
205
206
|
$gantt-bigger-clone-padding: $gantt-clone-padding !default;
|
|
206
207
|
$gantt-group-clone-box-shadow: 0 0 !default;
|
|
207
|
-
$gantt-header-font-size:
|
|
208
|
-
$gantt-header-font-weight: bold !default;
|
|
208
|
+
$gantt-header-font-size: $text-xs !default;
|
|
209
|
+
$gantt-header-font-weight: $font-weight-bold !default;
|
|
209
210
|
$gantt-drag-clone-font-weight: $gantt-header-font-weight !default;
|
|
210
211
|
$gantt-drag-clone-opacity: 1 !default;
|
|
211
212
|
$gantt-group-clone-text-align: center !default;
|
|
@@ -23,7 +23,7 @@ $connector-point-border-color: $content-bg-color !default;
|
|
|
23
23
|
$connector-point-hover-bg-color: $icon-color-hover !default;
|
|
24
24
|
$critical-connector-line-color: $danger !default;
|
|
25
25
|
$critical-connector-line-hover-color: $danger-light !default;
|
|
26
|
-
$connector-point-hover-outerline-color: $
|
|
26
|
+
$connector-point-hover-outerline-color: $connector-point-border-color !default;
|
|
27
27
|
$connector-point-hover-border-color: $content-bg-color !default;
|
|
28
28
|
$gantt-line-container-cell-border-color: $border-light !default;
|
|
29
29
|
/* stylelint-disable */
|
|
@@ -106,12 +106,13 @@ $gantt-unscheduled-taskbar-curved-radius: 0 !default;
|
|
|
106
106
|
$gantt-label-size: 13px !default;
|
|
107
107
|
$gantt-header-border-spacing: 0 !default;
|
|
108
108
|
$gantt-child-progress-bar-border: 0px !default;
|
|
109
|
-
$gantt-child-progress-bar-border-
|
|
109
|
+
$gantt-child-progress-bar-border-radius:3px;
|
|
110
110
|
$gantt-child-task-bar-border: 1px solid $primary !default;
|
|
111
111
|
$gantt-manualchild-progress-bar-border: 0px !default;
|
|
112
112
|
$gantt-parent-progress-bar-border: 0px !default;
|
|
113
113
|
$gantt-parent-task-bar-border: 1px solid $border-dark !default;
|
|
114
|
-
$gantt-connector-point-right-margin-left:
|
|
114
|
+
$gantt-connector-point-right-margin-left: 3px !default;
|
|
115
|
+
$gantt-connector-point-left-margin-right: 3px !default;
|
|
115
116
|
$gantt-right-label-container-margin-left: 25px !default;
|
|
116
117
|
$gantt-task-label-font-size: 12px !default;
|
|
117
118
|
$gantt-label-font-size: 14px !default;
|
|
@@ -122,7 +123,7 @@ $gantt-dialog-general-height: 241px !default;
|
|
|
122
123
|
$gantt-dialog-edit-form-odd-padding: 12px 18px 0 18px !default;
|
|
123
124
|
$gantt-dialog-edit-form-even-padding: 12px 18px 0 0 !default;
|
|
124
125
|
$gantt-dialog-edit-form-scroll-padding: 12px 18px 0 0 !default;
|
|
125
|
-
$gantt-bigger-tooltip-button-color: $
|
|
126
|
+
$gantt-bigger-tooltip-button-color: $tooltip-bg-color;
|
|
126
127
|
$gantt-bigger-tooltip-button-text-color: $toooltip-text-color;
|
|
127
128
|
$gantt-bigger-tooltip-dialog-text-color: $warnig-text;
|
|
128
129
|
$gantt-bigger-tooltip-disabled-button-color: $content-text-color-disabled !important;
|
|
@@ -57,7 +57,7 @@ $gantt-manualparent-background-color: #989A9C;
|
|
|
57
57
|
$gantt-unscheduledmanualparent-background-color: linear-gradient(to right, rgba(63, 81, 181, 0.2), #989A9C 30%, #989A9C 70%, #989A9C 70%, rgba(63, 81, 181, 0.2) 100%) !default;
|
|
58
58
|
$gantt-unscheduled-manualtaskbar-background: linear-gradient(to right, rgba(63,81,181, 0.2), #6e06f1 30%, #6e06f1 70%, #6e06f1 70%, rgba(63,81,181, 0.2) 100%) !default;
|
|
59
59
|
$gantt-child-progress-bar-border: 0px !default;
|
|
60
|
-
$gantt-child-progress-bar-border-
|
|
60
|
+
$gantt-child-progress-bar-border-radius:3px;
|
|
61
61
|
$gantt-parent-task-bar: #007d01 !default;
|
|
62
62
|
$gantt-parent-progress-bar: #005201 !default;
|
|
63
63
|
$gantt-milestone-border-color: $bg-base-100 !default;
|
|
@@ -65,7 +65,8 @@ $gantt-critical-milestone-border-color: #D13438 !default;
|
|
|
65
65
|
$gantt-parent-milestone-border-color: #005201 !default;
|
|
66
66
|
$gantt-parent-task-bar-border: 1px solid $hover-border !default;
|
|
67
67
|
$gantt-parent-progress-bar-border: 0px !default;
|
|
68
|
-
$gantt-connector-point-right-margin-left:
|
|
68
|
+
$gantt-connector-point-right-margin-left: 3px !default;
|
|
69
|
+
$gantt-connector-point-left-margin-right: 3px !default;
|
|
69
70
|
$gantt-right-label-container-margin-left: 25px !default;
|
|
70
71
|
$gantt-task-label-font-size: 12px !default;
|
|
71
72
|
$gantt-task-label-font-color: $hover-font !default;
|
|
@@ -57,7 +57,7 @@ $gantt-manualparent-background-color: #989A9C;
|
|
|
57
57
|
$gantt-unscheduledmanualparent-background-color: linear-gradient(to right, rgba(63, 81, 181, 0.2), #989A9C 30%, #989A9C 70%, #989A9C 70%, rgba(63, 81, 181, 0.2) 100%) !default;
|
|
58
58
|
$gantt-unscheduled-manualtaskbar-background: linear-gradient(to right, rgba(63,81,181, 0.2), #8dd1c4 30%, #8dd1c4 70%, #8dd1c4 70%, rgba(63,81,181, 0.2) 100%) !default;
|
|
59
59
|
$gantt-child-progress-bar-border: 0px !default;
|
|
60
|
-
$gantt-child-progress-bar-border-
|
|
60
|
+
$gantt-child-progress-bar-border-radius:3px;
|
|
61
61
|
$gantt-parent-task-bar: #007d01 !default;
|
|
62
62
|
$gantt-parent-progress-bar: #005201 !default;
|
|
63
63
|
$gantt-milestone-border-color: $bg-base-100 !default;
|
|
@@ -65,7 +65,8 @@ $gantt-critical-milestone-border-color: #D13438 !default;
|
|
|
65
65
|
$gantt-parent-milestone-border-color: #005201 !default;
|
|
66
66
|
$gantt-parent-task-bar-border: 1px solid $hover-border !default;
|
|
67
67
|
$gantt-parent-progress-bar-border: 0px !default;
|
|
68
|
-
$gantt-connector-point-right-margin-left:
|
|
68
|
+
$gantt-connector-point-right-margin-left: 3px !default;
|
|
69
|
+
$gantt-connector-point-left-margin-right: 3px !default;
|
|
69
70
|
$gantt-right-label-container-margin-left: 25px !default;
|
|
70
71
|
$gantt-task-label-font-size: 12px !default;
|
|
71
72
|
$gantt-task-label-font-color: $hover-font;
|
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
.e-bigger {
|
|
4
4
|
.e-gantt {
|
|
5
|
+
@if ($theme-name == 'material-dark'){
|
|
6
|
+
.e-grid{
|
|
7
|
+
.e-row{
|
|
8
|
+
.e-input-group{
|
|
9
|
+
margin: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
5
14
|
.e-gantt-chart {
|
|
6
15
|
.e-timeline-header-container {
|
|
7
16
|
height: $gantt-bigger-header-border-height;
|
|
@@ -85,7 +94,22 @@
|
|
|
85
94
|
}
|
|
86
95
|
}
|
|
87
96
|
}
|
|
97
|
+
.e-gantt-dialog .e-tab .e-tab-header {
|
|
98
|
+
padding-left: $gantt-dialog-tab-padding-left;
|
|
88
99
|
|
|
100
|
+
@if ($skin-name == 'FluentUI') {
|
|
101
|
+
.e-indicator {
|
|
102
|
+
display: block;
|
|
103
|
+
bottom: 0;
|
|
104
|
+
height: 3px;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
@else {
|
|
108
|
+
.e-indicator {
|
|
109
|
+
display: block;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
89
113
|
.e-dialog {
|
|
90
114
|
.e-dlg-header-content {
|
|
91
115
|
padding: $gantt-bigger-dialog-header-padding; /* stylelint-disable-line declaration-no-important */
|
|
@@ -137,17 +161,17 @@
|
|
|
137
161
|
padding: $gantt-dialog-bigger-input-padding-field;
|
|
138
162
|
}
|
|
139
163
|
}
|
|
140
|
-
}
|
|
141
164
|
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
165
|
+
.e-grid .e-columnmenu {
|
|
166
|
+
@if $skin-name == 'bootstrap5-dark' or $skin-name == 'tailwind-dark' {
|
|
167
|
+
top: 35px;
|
|
168
|
+
}
|
|
169
|
+
@else if $skin-name == 'fluent-dark' {
|
|
170
|
+
top: 38px;
|
|
171
|
+
}
|
|
172
|
+
@else {
|
|
173
|
+
top: $bigger-column-menu-size;
|
|
174
|
+
}
|
|
151
175
|
}
|
|
152
176
|
}
|
|
153
177
|
|
|
@@ -157,7 +181,7 @@
|
|
|
157
181
|
width: $gantt-bigger-dialog-width;
|
|
158
182
|
}
|
|
159
183
|
.e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
160
|
-
padding: 0 16px !important;
|
|
184
|
+
padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
161
185
|
}
|
|
162
186
|
|
|
163
187
|
.e-edit-form-column:nth-child(odd) {
|
|
@@ -1296,8 +1320,16 @@
|
|
|
1296
1320
|
outline-offset: 2px;
|
|
1297
1321
|
}
|
|
1298
1322
|
}
|
|
1323
|
+
.e-dialog.e-filter-popup {
|
|
1324
|
+
.e-footer-content {
|
|
1325
|
+
|
|
1326
|
+
@if ($skin-name =='FluentUI') {
|
|
1327
|
+
padding-top: 0;
|
|
1328
|
+
}
|
|
1329
|
+
}
|
|
1330
|
+
}
|
|
1299
1331
|
}
|
|
1300
|
-
|
|
1332
|
+
|
|
1301
1333
|
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1302
1334
|
padding-left: $gantt-dialog-tab-padding-left;
|
|
1303
1335
|
|
|
@@ -1326,7 +1358,7 @@
|
|
|
1326
1358
|
|
|
1327
1359
|
.e-gantt-dialog {
|
|
1328
1360
|
border: 0;
|
|
1329
|
-
|
|
1361
|
+
|
|
1330
1362
|
.e-gridform .e-table {
|
|
1331
1363
|
border-spacing: 0;
|
|
1332
1364
|
}
|