@syncfusion/ej2-gantt 20.4.54 → 21.1.37
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 +23 -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 +1094 -421
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +1072 -399
- 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 +84 -34
- 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/export/pdf-gantt.js +1 -1
- package/src/gantt/export/pdf-taskbar.js +1 -0
- 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/material-dark.css
CHANGED
|
@@ -251,6 +251,9 @@
|
|
|
251
251
|
content: "\e85f";
|
|
252
252
|
}
|
|
253
253
|
|
|
254
|
+
.e-bigger .e-gantt .e-grid .e-row .e-input-group {
|
|
255
|
+
margin: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
256
|
+
}
|
|
254
257
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
255
258
|
height: 64px;
|
|
256
259
|
}
|
|
@@ -308,6 +311,12 @@
|
|
|
308
311
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
309
312
|
height: 63px !important; /* stylelint-disable-line declaration-no-important */
|
|
310
313
|
}
|
|
314
|
+
.e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
315
|
+
padding-left: 0px;
|
|
316
|
+
}
|
|
317
|
+
.e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
318
|
+
display: block;
|
|
319
|
+
}
|
|
311
320
|
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
312
321
|
padding: 16px 4px 17px 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
313
322
|
}
|
|
@@ -337,7 +346,7 @@
|
|
|
337
346
|
border-radius: 6px !important;
|
|
338
347
|
padding: 20px 16px 6px 16px !important;
|
|
339
348
|
}
|
|
340
|
-
.e-bigger .e-grid .e-columnmenu {
|
|
349
|
+
.e-bigger .e-gantt .e-grid .e-columnmenu {
|
|
341
350
|
top: 38px;
|
|
342
351
|
}
|
|
343
352
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
@@ -407,7 +416,6 @@
|
|
|
407
416
|
}
|
|
408
417
|
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
|
|
409
418
|
height: 27px !important;
|
|
410
|
-
padding: 5px 0 11px !important; /* stylelint-disable-line declaration-no-important */
|
|
411
419
|
}
|
|
412
420
|
.e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
413
421
|
min-height: 26px !important;
|
|
@@ -423,12 +431,6 @@
|
|
|
423
431
|
.e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
|
|
424
432
|
min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
|
|
425
433
|
}
|
|
426
|
-
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-input-group-icon.e-time-icon {
|
|
427
|
-
margin: 5px 0 6px !important; /* stylelint-disable-line declaration-no-important */
|
|
428
|
-
}
|
|
429
|
-
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper .e-input-group-icon {
|
|
430
|
-
margin-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
431
|
-
}
|
|
432
434
|
.e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
|
|
433
435
|
border-top: 8px solid #000;
|
|
434
436
|
}
|
|
@@ -1271,7 +1273,6 @@
|
|
|
1271
1273
|
outline: 1px solid;
|
|
1272
1274
|
outline-offset: 2px;
|
|
1273
1275
|
}
|
|
1274
|
-
|
|
1275
1276
|
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1276
1277
|
padding-left: 0px;
|
|
1277
1278
|
}
|
|
@@ -1674,7 +1675,7 @@
|
|
|
1674
1675
|
.e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
|
|
1675
1676
|
background-color: #7280ce;
|
|
1676
1677
|
border: 0px;
|
|
1677
|
-
border-radius:
|
|
1678
|
+
border-radius: 3px;
|
|
1678
1679
|
}
|
|
1679
1680
|
.e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
|
|
1680
1681
|
background-color: #8dd1c4;
|
|
@@ -1685,7 +1686,7 @@
|
|
|
1685
1686
|
}
|
|
1686
1687
|
.e-gantt .e-gantt-chart .e-gantt-child-manualprogressbar {
|
|
1687
1688
|
background-color: #67c1b2;
|
|
1688
|
-
|
|
1689
|
+
outline: #4fb29f;
|
|
1689
1690
|
}
|
|
1690
1691
|
.e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
|
|
1691
1692
|
background-color: #67c1b2;
|
|
@@ -1745,6 +1746,18 @@
|
|
|
1745
1746
|
.e-gantt .e-gantt-chart .e-line {
|
|
1746
1747
|
border-color: #7280ce;
|
|
1747
1748
|
}
|
|
1749
|
+
.e-gantt .e-gantt-chart .e-connector-line {
|
|
1750
|
+
stroke: #7280ce;
|
|
1751
|
+
}
|
|
1752
|
+
.e-gantt .e-gantt-chart .e-critical-line {
|
|
1753
|
+
stroke: #d13438;
|
|
1754
|
+
}
|
|
1755
|
+
.e-gantt .e-gantt-chart .e-connector-line-arrow {
|
|
1756
|
+
fill: #7280ce;
|
|
1757
|
+
}
|
|
1758
|
+
.e-gantt .e-gantt-chart .e-critical-line-arrow {
|
|
1759
|
+
fill: #d13438;
|
|
1760
|
+
}
|
|
1748
1761
|
.e-gantt .e-gantt-chart .e-connector-line-right-arrow {
|
|
1749
1762
|
border-left-color: #7280ce;
|
|
1750
1763
|
}
|
|
@@ -1796,7 +1809,10 @@
|
|
|
1796
1809
|
padding-right: 25px;
|
|
1797
1810
|
}
|
|
1798
1811
|
.e-gantt .e-gantt-chart .e-connectorpoint-right {
|
|
1799
|
-
margin-left:
|
|
1812
|
+
margin-left: 3px;
|
|
1813
|
+
}
|
|
1814
|
+
.e-gantt .e-gantt-chart .e-connectorpoint-left {
|
|
1815
|
+
margin-right: 3px;
|
|
1800
1816
|
}
|
|
1801
1817
|
.e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
|
|
1802
1818
|
.e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
|
|
@@ -2057,14 +2073,15 @@
|
|
|
2057
2073
|
|
|
2058
2074
|
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
2059
2075
|
background-color: #F3D8DA;
|
|
2060
|
-
|
|
2076
|
+
outline: 1px solid #F3D8DA;
|
|
2061
2077
|
border-radius: 4px;
|
|
2062
2078
|
}
|
|
2063
2079
|
|
|
2064
2080
|
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
2065
2081
|
background-color: #D13438;
|
|
2066
2082
|
border: 0px;
|
|
2067
|
-
|
|
2083
|
+
position: absolute;
|
|
2084
|
+
border-radius: 3px;
|
|
2068
2085
|
}
|
|
2069
2086
|
|
|
2070
2087
|
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
package/styles/material.css
CHANGED
|
@@ -348,6 +348,12 @@
|
|
|
348
348
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
349
349
|
height: 63px !important; /* stylelint-disable-line declaration-no-important */
|
|
350
350
|
}
|
|
351
|
+
.e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
352
|
+
padding-left: 0px;
|
|
353
|
+
}
|
|
354
|
+
.e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
355
|
+
display: block;
|
|
356
|
+
}
|
|
351
357
|
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
352
358
|
padding: 16px 14px 17px 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
353
359
|
}
|
|
@@ -377,7 +383,7 @@
|
|
|
377
383
|
border-radius: 6px !important;
|
|
378
384
|
padding: 20px 16px 6px 16px !important;
|
|
379
385
|
}
|
|
380
|
-
.e-bigger .e-grid .e-columnmenu {
|
|
386
|
+
.e-bigger .e-gantt .e-grid .e-columnmenu {
|
|
381
387
|
top: 38px;
|
|
382
388
|
}
|
|
383
389
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
@@ -1311,7 +1317,6 @@
|
|
|
1311
1317
|
outline: 1px solid;
|
|
1312
1318
|
outline-offset: 2px;
|
|
1313
1319
|
}
|
|
1314
|
-
|
|
1315
1320
|
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1316
1321
|
padding-left: 0px;
|
|
1317
1322
|
}
|
|
@@ -1714,7 +1719,7 @@
|
|
|
1714
1719
|
.e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
|
|
1715
1720
|
background-color: #3f51b5;
|
|
1716
1721
|
border: 0px;
|
|
1717
|
-
border-radius:
|
|
1722
|
+
border-radius: 3px;
|
|
1718
1723
|
}
|
|
1719
1724
|
.e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
|
|
1720
1725
|
background-color: rgba(0, 135, 134, 0.85);
|
|
@@ -1725,7 +1730,7 @@
|
|
|
1725
1730
|
}
|
|
1726
1731
|
.e-gantt .e-gantt-chart .e-gantt-child-manualprogressbar {
|
|
1727
1732
|
background-color: #008786;
|
|
1728
|
-
|
|
1733
|
+
outline: 0px;
|
|
1729
1734
|
}
|
|
1730
1735
|
.e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
|
|
1731
1736
|
background-color: #008786;
|
|
@@ -1785,6 +1790,18 @@
|
|
|
1785
1790
|
.e-gantt .e-gantt-chart .e-line {
|
|
1786
1791
|
border-color: #3f51b5;
|
|
1787
1792
|
}
|
|
1793
|
+
.e-gantt .e-gantt-chart .e-connector-line {
|
|
1794
|
+
stroke: #3f51b5;
|
|
1795
|
+
}
|
|
1796
|
+
.e-gantt .e-gantt-chart .e-critical-line {
|
|
1797
|
+
stroke: #d13438;
|
|
1798
|
+
}
|
|
1799
|
+
.e-gantt .e-gantt-chart .e-connector-line-arrow {
|
|
1800
|
+
fill: #3f51b5;
|
|
1801
|
+
}
|
|
1802
|
+
.e-gantt .e-gantt-chart .e-critical-line-arrow {
|
|
1803
|
+
fill: #d13438;
|
|
1804
|
+
}
|
|
1788
1805
|
.e-gantt .e-gantt-chart .e-connector-line-right-arrow {
|
|
1789
1806
|
border-left-color: #3f51b5;
|
|
1790
1807
|
}
|
|
@@ -1836,7 +1853,10 @@
|
|
|
1836
1853
|
padding-right: 25px;
|
|
1837
1854
|
}
|
|
1838
1855
|
.e-gantt .e-gantt-chart .e-connectorpoint-right {
|
|
1839
|
-
margin-left:
|
|
1856
|
+
margin-left: 3px;
|
|
1857
|
+
}
|
|
1858
|
+
.e-gantt .e-gantt-chart .e-connectorpoint-left {
|
|
1859
|
+
margin-right: 3px;
|
|
1840
1860
|
}
|
|
1841
1861
|
.e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
|
|
1842
1862
|
.e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
|
|
@@ -2097,14 +2117,15 @@
|
|
|
2097
2117
|
|
|
2098
2118
|
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
2099
2119
|
background-color: #F3D8DA;
|
|
2100
|
-
|
|
2120
|
+
outline: 1px solid #F3D8DA;
|
|
2101
2121
|
border-radius: 4px;
|
|
2102
2122
|
}
|
|
2103
2123
|
|
|
2104
2124
|
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
2105
2125
|
background-color: #D13438;
|
|
2106
2126
|
border: 0px;
|
|
2107
|
-
|
|
2127
|
+
position: absolute;
|
|
2128
|
+
border-radius: 3px;
|
|
2108
2129
|
}
|
|
2109
2130
|
|
|
2110
2131
|
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
package/styles/tailwind-dark.css
CHANGED
|
@@ -317,6 +317,12 @@
|
|
|
317
317
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
318
318
|
height: 63px !important; /* stylelint-disable-line declaration-no-important */
|
|
319
319
|
}
|
|
320
|
+
.e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
321
|
+
padding-left: 0px;
|
|
322
|
+
}
|
|
323
|
+
.e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
324
|
+
display: block;
|
|
325
|
+
}
|
|
320
326
|
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
321
327
|
padding: 16px 4px 16px 24px !important; /* stylelint-disable-line declaration-no-important */
|
|
322
328
|
}
|
|
@@ -349,7 +355,7 @@
|
|
|
349
355
|
border-radius: 6px !important;
|
|
350
356
|
padding: 23px 24px 15px 24px !important;
|
|
351
357
|
}
|
|
352
|
-
.e-bigger .e-grid .e-columnmenu {
|
|
358
|
+
.e-bigger .e-gantt .e-grid .e-columnmenu {
|
|
353
359
|
top: 35px;
|
|
354
360
|
}
|
|
355
361
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
@@ -1282,7 +1288,6 @@
|
|
|
1282
1288
|
outline: 1px solid;
|
|
1283
1289
|
outline-offset: 2px;
|
|
1284
1290
|
}
|
|
1285
|
-
|
|
1286
1291
|
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1287
1292
|
padding-left: 0px;
|
|
1288
1293
|
}
|
|
@@ -1686,7 +1691,7 @@
|
|
|
1686
1691
|
.e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
|
|
1687
1692
|
background-color: #22d3ee;
|
|
1688
1693
|
border: 0px;
|
|
1689
|
-
border-radius:
|
|
1694
|
+
border-radius: 3px;
|
|
1690
1695
|
}
|
|
1691
1696
|
.e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
|
|
1692
1697
|
background-color: #dcfce7;
|
|
@@ -1697,7 +1702,7 @@
|
|
|
1697
1702
|
}
|
|
1698
1703
|
.e-gantt .e-gantt-chart .e-gantt-child-manualprogressbar {
|
|
1699
1704
|
background-color: #22c55e;
|
|
1700
|
-
|
|
1705
|
+
outline: 0px;
|
|
1701
1706
|
}
|
|
1702
1707
|
.e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
|
|
1703
1708
|
background-color: #22c55e;
|
|
@@ -1757,6 +1762,18 @@
|
|
|
1757
1762
|
.e-gantt .e-gantt-chart .e-line {
|
|
1758
1763
|
border-color: #22d3ee;
|
|
1759
1764
|
}
|
|
1765
|
+
.e-gantt .e-gantt-chart .e-connector-line {
|
|
1766
|
+
stroke: #22d3ee;
|
|
1767
|
+
}
|
|
1768
|
+
.e-gantt .e-gantt-chart .e-critical-line {
|
|
1769
|
+
stroke: #f87171;
|
|
1770
|
+
}
|
|
1771
|
+
.e-gantt .e-gantt-chart .e-connector-line-arrow {
|
|
1772
|
+
fill: #22d3ee;
|
|
1773
|
+
}
|
|
1774
|
+
.e-gantt .e-gantt-chart .e-critical-line-arrow {
|
|
1775
|
+
fill: #f87171;
|
|
1776
|
+
}
|
|
1760
1777
|
.e-gantt .e-gantt-chart .e-connector-line-right-arrow {
|
|
1761
1778
|
border-left-color: #22d3ee;
|
|
1762
1779
|
}
|
|
@@ -1808,7 +1825,10 @@
|
|
|
1808
1825
|
padding-right: 25px;
|
|
1809
1826
|
}
|
|
1810
1827
|
.e-gantt .e-gantt-chart .e-connectorpoint-right {
|
|
1811
|
-
margin-left:
|
|
1828
|
+
margin-left: 3px;
|
|
1829
|
+
}
|
|
1830
|
+
.e-gantt .e-gantt-chart .e-connectorpoint-left {
|
|
1831
|
+
margin-right: 3px;
|
|
1812
1832
|
}
|
|
1813
1833
|
.e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
|
|
1814
1834
|
.e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
|
|
@@ -2069,14 +2089,15 @@
|
|
|
2069
2089
|
|
|
2070
2090
|
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
2071
2091
|
background-color: #fee2e2;
|
|
2072
|
-
|
|
2092
|
+
outline: 1px solid #fee2e2;
|
|
2073
2093
|
border-radius: 4px;
|
|
2074
2094
|
}
|
|
2075
2095
|
|
|
2076
2096
|
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
2077
2097
|
background-color: #f87171;
|
|
2078
2098
|
border: 0px;
|
|
2079
|
-
|
|
2099
|
+
position: absolute;
|
|
2100
|
+
border-radius: 3px;
|
|
2080
2101
|
}
|
|
2081
2102
|
|
|
2082
2103
|
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
package/styles/tailwind.css
CHANGED
|
@@ -317,6 +317,12 @@
|
|
|
317
317
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
318
318
|
height: 63px !important; /* stylelint-disable-line declaration-no-important */
|
|
319
319
|
}
|
|
320
|
+
.e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
321
|
+
padding-left: 0px;
|
|
322
|
+
}
|
|
323
|
+
.e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
324
|
+
display: block;
|
|
325
|
+
}
|
|
320
326
|
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
321
327
|
padding: 16px 4px 16px 24px !important; /* stylelint-disable-line declaration-no-important */
|
|
322
328
|
}
|
|
@@ -349,7 +355,7 @@
|
|
|
349
355
|
border-radius: 6px !important;
|
|
350
356
|
padding: 23px 24px 15px 24px !important;
|
|
351
357
|
}
|
|
352
|
-
.e-bigger .e-grid .e-columnmenu {
|
|
358
|
+
.e-bigger .e-gantt .e-grid .e-columnmenu {
|
|
353
359
|
top: 35px;
|
|
354
360
|
}
|
|
355
361
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
@@ -1282,7 +1288,6 @@
|
|
|
1282
1288
|
outline: 1px solid;
|
|
1283
1289
|
outline-offset: 2px;
|
|
1284
1290
|
}
|
|
1285
|
-
|
|
1286
1291
|
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1287
1292
|
padding-left: 0px;
|
|
1288
1293
|
}
|
|
@@ -1686,7 +1691,7 @@
|
|
|
1686
1691
|
.e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
|
|
1687
1692
|
background-color: #4f46e5;
|
|
1688
1693
|
border: 0px;
|
|
1689
|
-
border-radius:
|
|
1694
|
+
border-radius: 3px;
|
|
1690
1695
|
}
|
|
1691
1696
|
.e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
|
|
1692
1697
|
background-color: #dcfce7;
|
|
@@ -1697,7 +1702,7 @@
|
|
|
1697
1702
|
}
|
|
1698
1703
|
.e-gantt .e-gantt-chart .e-gantt-child-manualprogressbar {
|
|
1699
1704
|
background-color: #15803d;
|
|
1700
|
-
|
|
1705
|
+
outline: 0px;
|
|
1701
1706
|
}
|
|
1702
1707
|
.e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
|
|
1703
1708
|
background-color: #15803d;
|
|
@@ -1757,6 +1762,18 @@
|
|
|
1757
1762
|
.e-gantt .e-gantt-chart .e-line {
|
|
1758
1763
|
border-color: #4f46e5;
|
|
1759
1764
|
}
|
|
1765
|
+
.e-gantt .e-gantt-chart .e-connector-line {
|
|
1766
|
+
stroke: #4f46e5;
|
|
1767
|
+
}
|
|
1768
|
+
.e-gantt .e-gantt-chart .e-critical-line {
|
|
1769
|
+
stroke: #dc2626;
|
|
1770
|
+
}
|
|
1771
|
+
.e-gantt .e-gantt-chart .e-connector-line-arrow {
|
|
1772
|
+
fill: #4f46e5;
|
|
1773
|
+
}
|
|
1774
|
+
.e-gantt .e-gantt-chart .e-critical-line-arrow {
|
|
1775
|
+
fill: #dc2626;
|
|
1776
|
+
}
|
|
1760
1777
|
.e-gantt .e-gantt-chart .e-connector-line-right-arrow {
|
|
1761
1778
|
border-left-color: #4f46e5;
|
|
1762
1779
|
}
|
|
@@ -1808,7 +1825,10 @@
|
|
|
1808
1825
|
padding-right: 25px;
|
|
1809
1826
|
}
|
|
1810
1827
|
.e-gantt .e-gantt-chart .e-connectorpoint-right {
|
|
1811
|
-
margin-left:
|
|
1828
|
+
margin-left: 3px;
|
|
1829
|
+
}
|
|
1830
|
+
.e-gantt .e-gantt-chart .e-connectorpoint-left {
|
|
1831
|
+
margin-right: 3px;
|
|
1812
1832
|
}
|
|
1813
1833
|
.e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
|
|
1814
1834
|
.e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
|
|
@@ -2069,14 +2089,15 @@
|
|
|
2069
2089
|
|
|
2070
2090
|
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
2071
2091
|
background-color: #fee2e2;
|
|
2072
|
-
|
|
2092
|
+
outline: 1px solid #fee2e2;
|
|
2073
2093
|
border-radius: 4px;
|
|
2074
2094
|
}
|
|
2075
2095
|
|
|
2076
2096
|
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
2077
2097
|
background-color: #dc2626;
|
|
2078
2098
|
border: 0px;
|
|
2079
|
-
|
|
2099
|
+
position: absolute;
|
|
2100
|
+
border-radius: 3px;
|
|
2080
2101
|
}
|
|
2081
2102
|
|
|
2082
2103
|
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
|
@@ -1,218 +0,0 @@
|
|
|
1
|
-
// color
|
|
2
|
-
|
|
3
|
-
$gantt-header-bg-color: $content-bg-color !default;
|
|
4
|
-
$gantt-header-border-color: $border-light !default;
|
|
5
|
-
$gantt-header-color: $content-text-color !default;
|
|
6
|
-
$gantt-context-menu-icon-color: $icon-color !default;
|
|
7
|
-
$gantt-grid-line-color: $border-light !default;
|
|
8
|
-
$gantt-label-color: $content-text-color-alt2 !default;
|
|
9
|
-
$gantt-content-color: $content-text-color-alt2 !default;
|
|
10
|
-
$holiday-background: $content-bg-color-alt1 !default;
|
|
11
|
-
$progress-handler-outline: $primary-text-color !default;
|
|
12
|
-
$progress-handler-background: $content-text-color !default;
|
|
13
|
-
$holiday-label-color: $content-text-color-alt2 !default;
|
|
14
|
-
$weekend-background: $content-bg-color-alt1 !default;
|
|
15
|
-
$event-marker-line-color: $primary !default;
|
|
16
|
-
$event-marker-label-color: $warning-light !default;
|
|
17
|
-
$event-marker-label-font-color: $warning-dark !default;
|
|
18
|
-
$connector-line-color: $primary !default;
|
|
19
|
-
$connector-line-hover-color: $primary !default;
|
|
20
|
-
$connector-false-line-color: $primary !default;
|
|
21
|
-
$connector-point-hover-color: $icon-color !default;
|
|
22
|
-
$connector-point-border-color: $content-bg-color !default;
|
|
23
|
-
$connector-point-hover-bg-color: $icon-color-hover !default;
|
|
24
|
-
$connector-point-hover-outerline-color: $theme-light !default;
|
|
25
|
-
$critical-connector-line-color: $danger !default;
|
|
26
|
-
$critical-connector-line-hover-color: $danger-light !default;
|
|
27
|
-
$connector-point-hover-border-color: $content-bg-color !default;
|
|
28
|
-
$gantt-line-container-cell-border-color: $border-light !default;
|
|
29
|
-
/* stylelint-disable */
|
|
30
|
-
$gantt-unscheduled-taskbar-background: linear-gradient(to right, $primary-light, $primary 30%, $primary 70%, $primary 70%, $primary-light 100%) !default;
|
|
31
|
-
$gantt-unscheduled-critical-taskbar-background: linear-gradient(to right, rgba(285,85,85, 0.2), #D13438 30%, #D13438 70%, #D13438 70%, rgba(285,85,85, 0.2) 100%) !default;
|
|
32
|
-
$gantt-unscheduled-critical-taskbar-background-color: rgba(285,85,85, .2) !default;
|
|
33
|
-
$gantt-critical-child-task-bar: $danger-light !default;
|
|
34
|
-
$gantt-critical-child-progress-bar: $danger !default;
|
|
35
|
-
$gantt-critical-child-task-bar-border: 1px solid $danger-light !default;
|
|
36
|
-
$gantt-unscheduled-milestone-top-border: $content-bg-color-alt5 !default;
|
|
37
|
-
$gantt-unscheduled-milestone-bottom-border: $content-bg-color-alt5 !default;
|
|
38
|
-
$gantt-child-task-bar: $primary-light !default;
|
|
39
|
-
$gantt-child-progress-bar: $primary !default;
|
|
40
|
-
$gantt-manualchild-task-bar: $success-light !default;
|
|
41
|
-
$gantt-manualchild-task-bar-border: 1px solid $success;
|
|
42
|
-
$gantt-manualchild-progress-bar: $success;
|
|
43
|
-
$gantt-manualparent-background-color: $content-bg-color-alt5;
|
|
44
|
-
$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;
|
|
45
|
-
$gantt-unscheduled-manualtaskbar-background: linear-gradient(to right, $success-light, $success 30%, $success 70%, $success 70%, $success-light 100%) !default;
|
|
46
|
-
$gantt-parent-task-bar: $content-bg-color-alt4 !default;
|
|
47
|
-
$gantt-parent-progress-bar: $content-bg-color-alt5 !default;
|
|
48
|
-
$gantt-milestone-border-color: $content-bg-color-alt5 !default;
|
|
49
|
-
$gantt-critical-milestone-border-color: $danger !default;
|
|
50
|
-
$gantt-parent-milestone-border-color: $content-bg-color-alt5 !default;
|
|
51
|
-
$gantt-empty-taskbar-background-color: rgba(0,120,222,.15);
|
|
52
|
-
$gantt-empty-taskbar-border-color: rgba(0,120,222,.65) !important;
|
|
53
|
-
$gantt-label-font-color: $content-text-color-alt2 !default;
|
|
54
|
-
$gantt-task-label-font-color: $primary-text-color !default;
|
|
55
|
-
$gantt-tab-header-active-font-color: $primary !default;
|
|
56
|
-
$gantt-tab-header-font-color: $content-text-color-alt2 !default;
|
|
57
|
-
$gantt-edit-icon-color: $primary-text-color !default;
|
|
58
|
-
$gantt-icons-color: $icon-color !default;
|
|
59
|
-
$gantt-cell-border-color: $border !default;
|
|
60
|
-
$gantt-dialog-active-tab-background: $transparent !default;
|
|
61
|
-
$gantt-dialog-tab-background: $content-bg-color-alt1 !default;
|
|
62
|
-
$gantt-dialog-header-font-color: $content-text-color !default;
|
|
63
|
-
$gantt-dialog-icon-color: $icon-color !default;
|
|
64
|
-
$gantt-dialog-icon-hover-color: $content-bg-color-alt1 !default;
|
|
65
|
-
$gantt-dialog-close-icon-hover-color: $icon-color !default;
|
|
66
|
-
$gantt-dialog-tab-hover-border-color: $transparent !default;
|
|
67
|
-
$gantt-dialog-tab-header-border-no-color: $transparent !default;
|
|
68
|
-
$gantt-tab-selection-indicator-color: $primary !default;
|
|
69
|
-
$gantt-tab-header-hover-color: $transparent !default;
|
|
70
|
-
$gantt-tab-header-hover-font-color: $content-text-color-alt2 !default;
|
|
71
|
-
$gantt-active-background: $table-bg-color-selected;
|
|
72
|
-
$gantt-active-color: $table-text-color-selected !default;
|
|
73
|
-
$gantt-table-background: $content-bg-color !default;
|
|
74
|
-
$gantt-baseline-color: $warning !default;
|
|
75
|
-
$gantt-inactive-parent: $content-bg-color-alt4 !default;
|
|
76
|
-
$gantt-inactive-child: $primary-light !default;
|
|
77
|
-
$gantt-connected-task: lighten($primary, 20%) !default;
|
|
78
|
-
$gantt-active-parent-task: lighten($warning-text, 10%) !default;
|
|
79
|
-
$gantt-uptail-border: $border-light !default;
|
|
80
|
-
$gantt-gridpopup-span: $warning-text !default;
|
|
81
|
-
$gantt-active-parent-shadow: rgba($gantt-gridpopup-span, 0.5) !default;
|
|
82
|
-
$gantt-left-resize-gripper-border: $content-bg-color-alt4 !default;
|
|
83
|
-
$gantt-left-resize-gripper-color: $primary-text-color !default;
|
|
84
|
-
$gantt-drag-clone-bg-color: $content-bg-color !default;
|
|
85
|
-
$gantt-drag-clone-border-color: $border-light !default;
|
|
86
|
-
$gantt-drag-clone-color: $content-text-color !default;
|
|
87
|
-
$gantt-content-font-color: $content-text-color !default;
|
|
88
|
-
$gantt-table-background-color: $content-bg-color !default;
|
|
89
|
-
$gantt-clone-dragdrop-bg-color: $gantt-table-background-color !default;
|
|
90
|
-
$error-elem-color: $danger;
|
|
91
|
-
$gantt-active-container-border: $border !default;
|
|
92
|
-
$rangecontainer-border-color: $border-warning;
|
|
93
|
-
|
|
94
|
-
// Layout
|
|
95
|
-
$holiday-label-font-size: 13px !default;
|
|
96
|
-
$event-marker-label-font-size: 14px !default;
|
|
97
|
-
$event-marker-label-padding: 3px 12px !default;
|
|
98
|
-
$event-marker-label-height: 28px !default;
|
|
99
|
-
$event-marker-label-arrow-top: 56px !default;
|
|
100
|
-
$gantt-connector-point-margin-top: 7.5px !default;
|
|
101
|
-
$gantt-connector-point-margin-radius: 4px !default;
|
|
102
|
-
$gantt-connector-point-left: 8px !default;
|
|
103
|
-
$gantt-unscheduled-taskbar-left: 3px !default;
|
|
104
|
-
$gantt-unscheduled-taskbar-straight-radius: 2px !default;
|
|
105
|
-
$gantt-unscheduled-taskbar-curved-radius: 0 !default;
|
|
106
|
-
$gantt-label-size: 13px !default;
|
|
107
|
-
$gantt-header-border-spacing: 0 !default;
|
|
108
|
-
$gantt-child-progress-bar-border: 0px !default;
|
|
109
|
-
$gantt-child-progress-bar-border-radious:4px;
|
|
110
|
-
$gantt-child-task-bar-border: 1px solid $primary !default;
|
|
111
|
-
$gantt-manualchild-progress-bar-border: 0px !default;
|
|
112
|
-
$gantt-parent-progress-bar-border: 0px !default;
|
|
113
|
-
$gantt-parent-task-bar-border: 1px solid $border-dark !default;
|
|
114
|
-
$gantt-connector-point-right-margin-left: 2px !default;
|
|
115
|
-
$gantt-right-label-container-margin-left: 25px !default;
|
|
116
|
-
$gantt-task-label-font-size: 12px !default;
|
|
117
|
-
$gantt-label-font-size: 14px !default;
|
|
118
|
-
$gantt-bigger-label-font-size: 16px !default;
|
|
119
|
-
$gantt-unscheduled-taskbar-border: 0px !default;
|
|
120
|
-
$gantt-unscheduled-taskbar-border-radius: 4px !default;
|
|
121
|
-
$gantt-dialog-general-height: 241px !default;
|
|
122
|
-
$gantt-dialog-edit-form-odd-padding: 12px 18px 0 18px !default;
|
|
123
|
-
$gantt-dialog-edit-form-even-padding: 12px 18px 0 0 !default;
|
|
124
|
-
$gantt-dialog-edit-form-scroll-padding: 12px 18px 0 0 !default;
|
|
125
|
-
$gantt-bigger-tooltip-button-color: $warning-text;
|
|
126
|
-
$gantt-bigger-tooltip-dialog-color: $content-bg-color-alt1;
|
|
127
|
-
$gantt-bigger-tooltip-button-text-color: $toooltip-text-color;
|
|
128
|
-
$gantt-bigger-tooltip-dialog-text-color: $warning-text;
|
|
129
|
-
$gantt-bigger-tooltip-disabled-button-color: $content-bg-color-alt5 !important;
|
|
130
|
-
$gantt-bigger-dialog-edit-form-odd-padding: 16px 12px 0 16px !default;
|
|
131
|
-
$gantt-bigger-dialog-edit-form-even-padding: 16px 16px 0 12px !default;
|
|
132
|
-
$gantt-bigger-dialog-close-button-left: 2px !important;
|
|
133
|
-
$gantt-bigger-dialog-close-button-size: 14px !important;
|
|
134
|
-
$gantt-bigger-dialog-header-padding: 16px 4px 16px 16px !important;
|
|
135
|
-
$gantt-bigger-add-dialog-content-height: 250px !important;
|
|
136
|
-
$gantt-bigger-event-arrow-color: $warning-light;
|
|
137
|
-
$gantt-bigger-event-arrow-font-size: 12px !important;
|
|
138
|
-
$gantt-bigger-event-markers-border-radius: 4px !important;
|
|
139
|
-
$gantt-bigger-event-markers-height: 26px !important;
|
|
140
|
-
$gantt-bigger-event-arrow-bottom: 6px solid transparent;
|
|
141
|
-
$gantt-bigger-event-arrow-right: 6px solid transparent;
|
|
142
|
-
$gantt-bigger-event-arrow-top: 6px solid transparent;
|
|
143
|
-
$gantt-bigger-event-arrow-top-value: 73px !important;
|
|
144
|
-
$gantt-bigger-event-markers-top: 65px !important;
|
|
145
|
-
$gantt-bigger-event-markers-padding: 4px 11px 4px 9px !important;
|
|
146
|
-
$gantt-bigger-add-dialog-input-height: 78px !important;
|
|
147
|
-
$gantt-bigger-add-dialog-input-width: 250px !important;
|
|
148
|
-
$gantt-bigger-add-dialog-input-field-width: 175px !default;
|
|
149
|
-
$gantt-bigger-filter-dialog-footer-padding: 16px !important;
|
|
150
|
-
$gantt-bigger-add-dialog-footer-padding: 16px !important;
|
|
151
|
-
$gantt-bigger-filter-dialog-input-padding: 16px 0 0 !important;
|
|
152
|
-
$gantt-bigger-filter-dialog-footer-height: 70px !important;
|
|
153
|
-
$gantt-bigger-add-dialog-footer-height: 70px !important;
|
|
154
|
-
$gantt-bigger-dialog-width: 556px !important;
|
|
155
|
-
$gantt-bigger-filter-dialog-width: 350px !important;
|
|
156
|
-
$gantt-dialog-bigger-input-field: 38px !default;
|
|
157
|
-
$gantt-dialog-bigger-input-padding-field: 32px 16px 16px !important;
|
|
158
|
-
$gantt-bigger-predecessor-dialog-padding: 10px 9px 9px 14px !important;
|
|
159
|
-
$gantt-bigger-predecessor-dialog-font-size: 12px;
|
|
160
|
-
$gantt-bigger-predecessor-dialog-font-weight: 400 !default;
|
|
161
|
-
$gantt-bigger-predecessor-dialog-line-height: 1.8 !default;
|
|
162
|
-
$gantt-bigger-dialog-input-field-height: 36px !important;
|
|
163
|
-
$gantt-bigger-dialog-input-icon: 36px !important;
|
|
164
|
-
$gantt-dialog-bigger-border-radius: 6px !important;
|
|
165
|
-
$gantt-bigger-dialog-tab-padding-left: 5px !important;
|
|
166
|
-
$gantt-bigger-dialog-border-radius: 6px 6px 0px 0px !default;
|
|
167
|
-
$gantt-bigger-dialog-edit-form-scroll-padding: 16px 18px 0 9px !default;
|
|
168
|
-
$gantt-dialog-dependent-height: 161px !default;
|
|
169
|
-
$gantt-dialog-resource-height: 202px !default;
|
|
170
|
-
$gantt-dialog-rte-height: 241px !default;
|
|
171
|
-
$gantt-dialog-rte-content-height: 200px !default;
|
|
172
|
-
$gantt-dialog-padding-bottom: 12px !default;
|
|
173
|
-
$gantt-dialog-tab-padding-left: 12px !default;
|
|
174
|
-
$gantt-tab-header-border-width: 1px;
|
|
175
|
-
$gantt-depedent-div-border-bottom: 0px !default;
|
|
176
|
-
$gantt-resource-div-border-bottom: 0px !default;
|
|
177
|
-
$gantt-richtext-border-bottom: 0px !default;
|
|
178
|
-
$gantt-richtext-content-border-bottom: 0px !default;
|
|
179
|
-
$gantt-connector-point-width: 12px !default;
|
|
180
|
-
$gantt-connector-point-height: 8px !default;
|
|
181
|
-
$gantt-connector-left-point-left: -12px !default;
|
|
182
|
-
$gantt-parent-progress-bar-border-radius: 4px !default;
|
|
183
|
-
$gantt-timeline-top-headercell-font-size: 14px !default;
|
|
184
|
-
$gantt-timeline-top-headercell-font-weight: bold !default;
|
|
185
|
-
$gantt-active-color-opacity: 0.9 !default;
|
|
186
|
-
$gantt-child-progress-margin-left: 0.5px !default;
|
|
187
|
-
$gantt-timeline-single-header-outer-div: 45px !default;
|
|
188
|
-
$gantt-chart-timeline-single-header-outer-div: 46px !default;
|
|
189
|
-
$gantt-header-border-height: 52px !default;
|
|
190
|
-
$gantt-bigger-header-border-height: 64px !default;
|
|
191
|
-
$gantt-treegrid-header-border-height: 51px !default;
|
|
192
|
-
$gantt-bigger-treegrid-header-border-height: 63px !default;
|
|
193
|
-
$gantt-header-border-bottom-width: 1px !default;
|
|
194
|
-
$gantt-timeline-top-header-cell-height: 26px !default;
|
|
195
|
-
$gantt-bigger-timeline-top-header-cell-height: 32px !default;
|
|
196
|
-
$gantt-header-border-radius: 0px !default;
|
|
197
|
-
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
198
|
-
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
199
|
-
$gantt-filter-menu-value-div-padding: 16px !default;
|
|
200
|
-
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
201
|
-
$gantt-dialog-tab-hover-border-bottom-radius: 0px !default;
|
|
202
|
-
$gantt-dialog-border-radius: 3px 3px 0px 0px !default;
|
|
203
|
-
$event-marker-line-height: 1.5 !default;
|
|
204
|
-
$gantt-clone-padding: 2px 8px 1px !default;
|
|
205
|
-
$gantt-bigger-clone-padding: $gantt-clone-padding !default;
|
|
206
|
-
$gantt-group-clone-box-shadow: 0 0 !default;
|
|
207
|
-
$gantt-header-font-size: 12px !default;
|
|
208
|
-
$gantt-header-font-weight: bold !default;
|
|
209
|
-
$gantt-drag-clone-font-weight: $gantt-header-font-weight !default;
|
|
210
|
-
$gantt-drag-clone-opacity: 1 !default;
|
|
211
|
-
$gantt-group-clone-text-align: center !default;
|
|
212
|
-
$gantt-clone-prop-box-shadow: 0 6px 12px rgba($warning-text, .175) !default;
|
|
213
|
-
$gantt-border-size: 1px !default;
|
|
214
|
-
$grid-active-container-border: 0 0 0 1px $border inset !default;
|
|
215
|
-
$gantt-collapse-progress-width: 0px !important;
|
|
216
|
-
$gantt-range-container-arc-radius: 2px !default;
|
|
217
|
-
$bigger-column-menu-size: 35px !default;
|
|
218
|
-
$gantt-masked-table-background-color: rgb(225,223,221);
|