@syncfusion/ej2-gantt 23.2.5 → 24.1.41
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 +3 -0
- 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 +2980 -336
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +3034 -370
- 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 +21 -21
- package/src/gantt/actions/cell-edit.js +7 -3
- package/src/gantt/actions/chart-scroll.d.ts +9 -1
- package/src/gantt/actions/chart-scroll.js +111 -3
- package/src/gantt/actions/connector-line-edit.js +8 -1
- package/src/gantt/actions/context-menu.js +2 -2
- package/src/gantt/actions/day-markers.d.ts +2 -1
- package/src/gantt/actions/dependency.js +2 -2
- package/src/gantt/actions/dialog-edit.d.ts +24 -0
- package/src/gantt/actions/dialog-edit.js +383 -1
- package/src/gantt/actions/edit.js +104 -41
- package/src/gantt/actions/keyboard.js +5 -1
- package/src/gantt/actions/pdf-export.js +12 -4
- package/src/gantt/actions/rowdragdrop.js +24 -5
- package/src/gantt/actions/selection.js +6 -3
- package/src/gantt/actions/taskbar-edit.d.ts +14 -0
- package/src/gantt/actions/taskbar-edit.js +513 -78
- package/src/gantt/actions/toolbar.js +4 -1
- package/src/gantt/base/css-constants.d.ts +2 -0
- package/src/gantt/base/css-constants.js +2 -0
- package/src/gantt/base/enum.d.ts +22 -0
- package/src/gantt/base/gantt-chart.js +63 -21
- package/src/gantt/base/gantt-model.d.ts +9 -1
- package/src/gantt/base/gantt.d.ts +11 -1
- package/src/gantt/base/gantt.js +46 -18
- package/src/gantt/base/interface.d.ts +135 -3
- package/src/gantt/base/splitter.js +6 -0
- package/src/gantt/base/task-processor.d.ts +1 -1
- package/src/gantt/base/task-processor.js +37 -9
- package/src/gantt/base/tree-grid.js +1 -1
- package/src/gantt/export/export-helper.d.ts +12 -0
- package/src/gantt/export/export-helper.js +316 -9
- package/src/gantt/export/pdf-base/pdf-grid-table.js +14 -1
- package/src/gantt/export/pdf-base/pdf-style/gantt-theme.js +36 -0
- package/src/gantt/export/pdf-connector-line.js +137 -32
- package/src/gantt/export/pdf-event-marker.d.ts +10 -0
- package/src/gantt/export/pdf-event-marker.js +57 -0
- package/src/gantt/export/pdf-gantt.d.ts +2 -0
- package/src/gantt/export/pdf-gantt.js +30 -10
- package/src/gantt/export/pdf-taskbar.d.ts +23 -2
- package/src/gantt/export/pdf-taskbar.js +771 -43
- package/src/gantt/export/pdf-timeline.d.ts +9 -0
- package/src/gantt/export/pdf-timeline.js +98 -20
- package/src/gantt/models/column.d.ts +12 -0
- package/src/gantt/renderer/chart-rows.d.ts +1 -1
- package/src/gantt/renderer/chart-rows.js +29 -16
- package/src/gantt/renderer/connector-line.js +8 -5
- package/src/gantt/renderer/edit-tooltip.js +3 -0
- package/src/gantt/renderer/event-marker.js +4 -1
- package/src/gantt/renderer/nonworking-day.js +18 -5
- package/src/gantt/renderer/timeline.d.ts +9 -0
- package/src/gantt/renderer/timeline.js +169 -21
- package/styles/bootstrap-dark.css +77 -16
- package/styles/bootstrap.css +78 -17
- package/styles/bootstrap4.css +78 -17
- package/styles/bootstrap5-dark.css +78 -17
- package/styles/bootstrap5.css +78 -17
- package/styles/fabric-dark.css +78 -17
- package/styles/fabric.css +78 -17
- package/styles/fluent-dark.css +78 -17
- package/styles/fluent.css +78 -17
- package/styles/gantt/_bootstrap-dark-definition.scss +7 -2
- package/styles/gantt/_bootstrap-definition.scss +7 -2
- package/styles/gantt/_bootstrap4-definition.scss +7 -2
- package/styles/gantt/_bootstrap5-definition.scss +7 -2
- package/styles/gantt/_fabric-dark-definition.scss +7 -2
- package/styles/gantt/_fabric-definition.scss +7 -2
- package/styles/gantt/_fluent-definition.scss +7 -2
- package/styles/gantt/_fusionnew-definition.scss +6 -2
- package/styles/gantt/_highcontrast-definition.scss +7 -2
- package/styles/gantt/_highcontrast-light-definition.scss +7 -2
- package/styles/gantt/_layout.scss +92 -20
- package/styles/gantt/_material-dark-definition.scss +7 -2
- package/styles/gantt/_material-definition.scss +7 -2
- package/styles/gantt/_material3-definition.scss +7 -2
- package/styles/gantt/_tailwind-definition.scss +6 -1
- package/styles/gantt/_theme.scss +11 -0
- package/styles/gantt/bootstrap-dark.css +77 -16
- package/styles/gantt/bootstrap.css +78 -17
- package/styles/gantt/bootstrap4.css +78 -17
- package/styles/gantt/bootstrap5-dark.css +78 -17
- package/styles/gantt/bootstrap5.css +78 -17
- package/styles/gantt/fabric-dark.css +78 -17
- package/styles/gantt/fabric.css +78 -17
- package/styles/gantt/fluent-dark.css +78 -17
- package/styles/gantt/fluent.css +78 -17
- package/styles/gantt/highcontrast-light.css +78 -17
- package/styles/gantt/highcontrast.css +78 -17
- package/styles/gantt/material-dark.css +78 -17
- package/styles/gantt/material.css +78 -17
- package/styles/gantt/material3-dark.css +77 -16
- package/styles/gantt/material3.css +77 -16
- package/styles/gantt/tailwind-dark.css +78 -17
- package/styles/gantt/tailwind.css +78 -17
- package/styles/highcontrast-light.css +78 -17
- package/styles/highcontrast.css +78 -17
- package/styles/material-dark.css +78 -17
- package/styles/material.css +78 -17
- package/styles/material3-dark.css +77 -16
- package/styles/material3.css +77 -16
- package/styles/tailwind-dark.css +78 -17
- package/styles/tailwind.css +78 -17
package/styles/fluent-dark.css
CHANGED
|
@@ -280,6 +280,22 @@
|
|
|
280
280
|
content: "\e7f9";
|
|
281
281
|
}
|
|
282
282
|
|
|
283
|
+
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
284
|
+
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
285
|
+
display: inline-block;
|
|
286
|
+
position: absolute;
|
|
287
|
+
top: 0;
|
|
288
|
+
width: 25px;
|
|
289
|
+
z-index: 4;
|
|
290
|
+
}
|
|
291
|
+
.e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper,
|
|
292
|
+
.e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper {
|
|
293
|
+
-ms-flex-align: center;
|
|
294
|
+
align-items: center;
|
|
295
|
+
cursor: ew-resize;
|
|
296
|
+
display: -ms-inline-flexbox;
|
|
297
|
+
display: inline-flex;
|
|
298
|
+
}
|
|
283
299
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
284
300
|
height: 64px;
|
|
285
301
|
}
|
|
@@ -361,7 +377,8 @@
|
|
|
361
377
|
padding: 16px 4px 16px 28px !important; /* stylelint-disable-line declaration-no-important */
|
|
362
378
|
}
|
|
363
379
|
.e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
364
|
-
left:
|
|
380
|
+
left: -11px;
|
|
381
|
+
top: 3px;
|
|
365
382
|
}
|
|
366
383
|
.e-bigger .e-gantt .e-dialog .e-dlg-content {
|
|
367
384
|
margin-bottom: 0;
|
|
@@ -376,8 +393,8 @@
|
|
|
376
393
|
.e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
|
|
377
394
|
margin-left: 12px;
|
|
378
395
|
}
|
|
379
|
-
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
380
|
-
line-height:
|
|
396
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header:not(.e-gantt-adaptive-dialog .e-dialog .e-dlg-header) {
|
|
397
|
+
line-height: 37px;
|
|
381
398
|
}
|
|
382
399
|
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
383
400
|
padding: 28px 0 0 !important;
|
|
@@ -391,6 +408,7 @@
|
|
|
391
408
|
}
|
|
392
409
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
393
410
|
border-radius: 6px;
|
|
411
|
+
width: 580px !important;
|
|
394
412
|
}
|
|
395
413
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
396
414
|
padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -420,7 +438,7 @@
|
|
|
420
438
|
border-radius: 6px 6px 0px 0px;
|
|
421
439
|
padding-bottom: 20px;
|
|
422
440
|
}
|
|
423
|
-
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
441
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn:not(.e-gantt-adaptive-dialog .e-dialog .e-dlg-closeicon-btn) {
|
|
424
442
|
border-radius: 50%;
|
|
425
443
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
426
444
|
width: auto;
|
|
@@ -471,6 +489,16 @@
|
|
|
471
489
|
.e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
|
|
472
490
|
min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
|
|
473
491
|
}
|
|
492
|
+
.e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog {
|
|
493
|
+
position: absolute !important; /* stylelint-disable-line declaration-no-important */
|
|
494
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
495
|
+
}
|
|
496
|
+
.e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog .e-dlg-header-content {
|
|
497
|
+
padding: 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
498
|
+
}
|
|
499
|
+
.e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog td {
|
|
500
|
+
width: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
501
|
+
}
|
|
474
502
|
.e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
|
|
475
503
|
border-top: 8px solid #f3f2f1;
|
|
476
504
|
border-top: 12.5px solid #f3f2f1;
|
|
@@ -698,9 +726,6 @@
|
|
|
698
726
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
|
|
699
727
|
overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
|
|
700
728
|
}
|
|
701
|
-
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
|
|
702
|
-
overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
703
|
-
}
|
|
704
729
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
|
|
705
730
|
width: calc(100% + 17px);
|
|
706
731
|
}
|
|
@@ -823,7 +848,7 @@
|
|
|
823
848
|
box-sizing: border-box;
|
|
824
849
|
}
|
|
825
850
|
.e-gantt .e-gantt-chart .e-zero-spacing {
|
|
826
|
-
border-spacing: 0;
|
|
851
|
+
border-spacing: 0.25px;
|
|
827
852
|
}
|
|
828
853
|
.e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
|
|
829
854
|
border-top: 0;
|
|
@@ -853,9 +878,6 @@
|
|
|
853
878
|
vertical-align: middle;
|
|
854
879
|
z-index: 3;
|
|
855
880
|
}
|
|
856
|
-
.e-gantt .e-gantt-chart .e-taskbar-main-container:hover {
|
|
857
|
-
z-index: 4;
|
|
858
|
-
}
|
|
859
881
|
.e-gantt .e-gantt-chart .e-taskbar-main-container.e-gantt-multi-taskbar:hover {
|
|
860
882
|
z-index: 4;
|
|
861
883
|
}
|
|
@@ -1334,7 +1356,7 @@
|
|
|
1334
1356
|
border-spacing: 0;
|
|
1335
1357
|
}
|
|
1336
1358
|
.e-gantt-dialog .e-item {
|
|
1337
|
-
height:
|
|
1359
|
+
height: 100%;
|
|
1338
1360
|
}
|
|
1339
1361
|
.e-gantt-dialog .e-dependent-div {
|
|
1340
1362
|
border-bottom-width: 0px;
|
|
@@ -1393,6 +1415,9 @@
|
|
|
1393
1415
|
.e-gantt-dialog > .e-dlg-content {
|
|
1394
1416
|
padding: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1395
1417
|
}
|
|
1418
|
+
.e-gantt-dialog .e-dlg-header {
|
|
1419
|
+
line-height: 30px;
|
|
1420
|
+
}
|
|
1396
1421
|
.e-gantt-dialog .e-dlg-header-content {
|
|
1397
1422
|
border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1398
1423
|
}
|
|
@@ -1400,6 +1425,10 @@
|
|
|
1400
1425
|
border-radius: 3px 3px 0px 0px;
|
|
1401
1426
|
padding-bottom: 20px;
|
|
1402
1427
|
}
|
|
1428
|
+
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1429
|
+
left: -11px;
|
|
1430
|
+
top: 0 !important;
|
|
1431
|
+
}
|
|
1403
1432
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1404
1433
|
border-radius: 50%;
|
|
1405
1434
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -1464,13 +1493,14 @@
|
|
|
1464
1493
|
font-size: 16px;
|
|
1465
1494
|
}
|
|
1466
1495
|
|
|
1467
|
-
.e-bigger .e-
|
|
1468
|
-
|
|
1496
|
+
.e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
|
|
1497
|
+
.e-bigger .e-gantt .e-excelfilter .e-dialog .e-dlg-content {
|
|
1498
|
+
padding: 0 18px 0 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1469
1499
|
}
|
|
1470
1500
|
|
|
1471
|
-
.e-bigger .e-
|
|
1472
|
-
|
|
1473
|
-
|
|
1501
|
+
.e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
|
|
1502
|
+
.e-bigger .e-gantt .e-contextmenu-wrapper ul {
|
|
1503
|
+
padding: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1474
1504
|
}
|
|
1475
1505
|
|
|
1476
1506
|
.e-gantt-tooltip-label {
|
|
@@ -1587,6 +1617,29 @@
|
|
|
1587
1617
|
z-index: 1;
|
|
1588
1618
|
}
|
|
1589
1619
|
|
|
1620
|
+
.e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-droptop {
|
|
1621
|
+
border-top: 2px solid #0078d4;
|
|
1622
|
+
border-width: 2px 0 0;
|
|
1623
|
+
}
|
|
1624
|
+
|
|
1625
|
+
.e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-dropbottom {
|
|
1626
|
+
border-bottom: 2px solid #0078d4;
|
|
1627
|
+
box-shadow: #0078d4;
|
|
1628
|
+
}
|
|
1629
|
+
|
|
1630
|
+
.e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-childborder {
|
|
1631
|
+
border-bottom: 2px solid #0078d4;
|
|
1632
|
+
border-top: 2px solid #0078d4;
|
|
1633
|
+
box-shadow: #0078d4;
|
|
1634
|
+
}
|
|
1635
|
+
|
|
1636
|
+
@media (max-width: 767px) {
|
|
1637
|
+
.e-bigger .e-gantt .e-dialog .e-edit-form-column:nth-child(odd), .e-bigger .e-gantt .e-dialog .e-edit-form-column:nth-child(even) {
|
|
1638
|
+
float: none;
|
|
1639
|
+
padding: 16px 12px 0 16px;
|
|
1640
|
+
width: 100%;
|
|
1641
|
+
}
|
|
1642
|
+
}
|
|
1590
1643
|
/*! Gantt theme */
|
|
1591
1644
|
.e-gantt .e-gantt-splitter {
|
|
1592
1645
|
border-color: #292827;
|
|
@@ -1639,6 +1692,13 @@
|
|
|
1639
1692
|
background: #292827;
|
|
1640
1693
|
opacity: 0.9;
|
|
1641
1694
|
}
|
|
1695
|
+
.e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-leftfreeze,
|
|
1696
|
+
.e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-unfreeze,
|
|
1697
|
+
.e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-rightfreeze,
|
|
1698
|
+
.e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-fixedfreeze {
|
|
1699
|
+
background: #292827;
|
|
1700
|
+
opacity: 1;
|
|
1701
|
+
}
|
|
1642
1702
|
.e-gantt .e-taskbar-resize-div {
|
|
1643
1703
|
border-color: #0078d4;
|
|
1644
1704
|
}
|
|
@@ -1955,6 +2015,7 @@
|
|
|
1955
2015
|
}
|
|
1956
2016
|
.e-gantt-dialog .e-dlg-header {
|
|
1957
2017
|
color: #f3f2f1;
|
|
2018
|
+
position: relative;
|
|
1958
2019
|
}
|
|
1959
2020
|
.e-gantt-dialog .e-dlg-header-content {
|
|
1960
2021
|
background: #201f1e;
|
package/styles/fluent.css
CHANGED
|
@@ -280,6 +280,22 @@
|
|
|
280
280
|
content: "\e7f9";
|
|
281
281
|
}
|
|
282
282
|
|
|
283
|
+
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
284
|
+
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
285
|
+
display: inline-block;
|
|
286
|
+
position: absolute;
|
|
287
|
+
top: 0;
|
|
288
|
+
width: 25px;
|
|
289
|
+
z-index: 4;
|
|
290
|
+
}
|
|
291
|
+
.e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper,
|
|
292
|
+
.e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper {
|
|
293
|
+
-ms-flex-align: center;
|
|
294
|
+
align-items: center;
|
|
295
|
+
cursor: ew-resize;
|
|
296
|
+
display: -ms-inline-flexbox;
|
|
297
|
+
display: inline-flex;
|
|
298
|
+
}
|
|
283
299
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
284
300
|
height: 64px;
|
|
285
301
|
}
|
|
@@ -361,7 +377,8 @@
|
|
|
361
377
|
padding: 16px 4px 16px 28px !important; /* stylelint-disable-line declaration-no-important */
|
|
362
378
|
}
|
|
363
379
|
.e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
364
|
-
left:
|
|
380
|
+
left: -11px;
|
|
381
|
+
top: 3px;
|
|
365
382
|
}
|
|
366
383
|
.e-bigger .e-gantt .e-dialog .e-dlg-content {
|
|
367
384
|
margin-bottom: 0;
|
|
@@ -376,8 +393,8 @@
|
|
|
376
393
|
.e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
|
|
377
394
|
margin-left: 12px;
|
|
378
395
|
}
|
|
379
|
-
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
380
|
-
line-height:
|
|
396
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header:not(.e-gantt-adaptive-dialog .e-dialog .e-dlg-header) {
|
|
397
|
+
line-height: 37px;
|
|
381
398
|
}
|
|
382
399
|
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
383
400
|
padding: 28px 0 0 !important;
|
|
@@ -391,6 +408,7 @@
|
|
|
391
408
|
}
|
|
392
409
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
393
410
|
border-radius: 6px;
|
|
411
|
+
width: 580px !important;
|
|
394
412
|
}
|
|
395
413
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
396
414
|
padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -420,7 +438,7 @@
|
|
|
420
438
|
border-radius: 6px 6px 0px 0px;
|
|
421
439
|
padding-bottom: 20px;
|
|
422
440
|
}
|
|
423
|
-
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
441
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn:not(.e-gantt-adaptive-dialog .e-dialog .e-dlg-closeicon-btn) {
|
|
424
442
|
border-radius: 50%;
|
|
425
443
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
426
444
|
width: auto;
|
|
@@ -471,6 +489,16 @@
|
|
|
471
489
|
.e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
|
|
472
490
|
min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
|
|
473
491
|
}
|
|
492
|
+
.e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog {
|
|
493
|
+
position: absolute !important; /* stylelint-disable-line declaration-no-important */
|
|
494
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
495
|
+
}
|
|
496
|
+
.e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog .e-dlg-header-content {
|
|
497
|
+
padding: 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
498
|
+
}
|
|
499
|
+
.e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog td {
|
|
500
|
+
width: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
501
|
+
}
|
|
474
502
|
.e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
|
|
475
503
|
border-top: 8px solid #323130;
|
|
476
504
|
border-top: 12.5px solid #323130;
|
|
@@ -698,9 +726,6 @@
|
|
|
698
726
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
|
|
699
727
|
overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
|
|
700
728
|
}
|
|
701
|
-
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
|
|
702
|
-
overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
703
|
-
}
|
|
704
729
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
|
|
705
730
|
width: calc(100% + 17px);
|
|
706
731
|
}
|
|
@@ -823,7 +848,7 @@
|
|
|
823
848
|
box-sizing: border-box;
|
|
824
849
|
}
|
|
825
850
|
.e-gantt .e-gantt-chart .e-zero-spacing {
|
|
826
|
-
border-spacing: 0;
|
|
851
|
+
border-spacing: 0.25px;
|
|
827
852
|
}
|
|
828
853
|
.e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
|
|
829
854
|
border-top: 0;
|
|
@@ -853,9 +878,6 @@
|
|
|
853
878
|
vertical-align: middle;
|
|
854
879
|
z-index: 3;
|
|
855
880
|
}
|
|
856
|
-
.e-gantt .e-gantt-chart .e-taskbar-main-container:hover {
|
|
857
|
-
z-index: 4;
|
|
858
|
-
}
|
|
859
881
|
.e-gantt .e-gantt-chart .e-taskbar-main-container.e-gantt-multi-taskbar:hover {
|
|
860
882
|
z-index: 4;
|
|
861
883
|
}
|
|
@@ -1334,7 +1356,7 @@
|
|
|
1334
1356
|
border-spacing: 0;
|
|
1335
1357
|
}
|
|
1336
1358
|
.e-gantt-dialog .e-item {
|
|
1337
|
-
height:
|
|
1359
|
+
height: 100%;
|
|
1338
1360
|
}
|
|
1339
1361
|
.e-gantt-dialog .e-dependent-div {
|
|
1340
1362
|
border-bottom-width: 0px;
|
|
@@ -1393,6 +1415,9 @@
|
|
|
1393
1415
|
.e-gantt-dialog > .e-dlg-content {
|
|
1394
1416
|
padding: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1395
1417
|
}
|
|
1418
|
+
.e-gantt-dialog .e-dlg-header {
|
|
1419
|
+
line-height: 30px;
|
|
1420
|
+
}
|
|
1396
1421
|
.e-gantt-dialog .e-dlg-header-content {
|
|
1397
1422
|
border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1398
1423
|
}
|
|
@@ -1400,6 +1425,10 @@
|
|
|
1400
1425
|
border-radius: 3px 3px 0px 0px;
|
|
1401
1426
|
padding-bottom: 20px;
|
|
1402
1427
|
}
|
|
1428
|
+
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1429
|
+
left: -11px;
|
|
1430
|
+
top: 0 !important;
|
|
1431
|
+
}
|
|
1403
1432
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1404
1433
|
border-radius: 50%;
|
|
1405
1434
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -1464,13 +1493,14 @@
|
|
|
1464
1493
|
font-size: 16px;
|
|
1465
1494
|
}
|
|
1466
1495
|
|
|
1467
|
-
.e-bigger .e-
|
|
1468
|
-
|
|
1496
|
+
.e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
|
|
1497
|
+
.e-bigger .e-gantt .e-excelfilter .e-dialog .e-dlg-content {
|
|
1498
|
+
padding: 0 18px 0 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1469
1499
|
}
|
|
1470
1500
|
|
|
1471
|
-
.e-bigger .e-
|
|
1472
|
-
|
|
1473
|
-
|
|
1501
|
+
.e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
|
|
1502
|
+
.e-bigger .e-gantt .e-contextmenu-wrapper ul {
|
|
1503
|
+
padding: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1474
1504
|
}
|
|
1475
1505
|
|
|
1476
1506
|
.e-gantt-tooltip-label {
|
|
@@ -1587,6 +1617,29 @@
|
|
|
1587
1617
|
z-index: 1;
|
|
1588
1618
|
}
|
|
1589
1619
|
|
|
1620
|
+
.e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-droptop {
|
|
1621
|
+
border-top: 2px solid #0078d4;
|
|
1622
|
+
border-width: 2px 0 0;
|
|
1623
|
+
}
|
|
1624
|
+
|
|
1625
|
+
.e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-dropbottom {
|
|
1626
|
+
border-bottom: 2px solid #0078d4;
|
|
1627
|
+
box-shadow: #0078d4;
|
|
1628
|
+
}
|
|
1629
|
+
|
|
1630
|
+
.e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-childborder {
|
|
1631
|
+
border-bottom: 2px solid #0078d4;
|
|
1632
|
+
border-top: 2px solid #0078d4;
|
|
1633
|
+
box-shadow: #0078d4;
|
|
1634
|
+
}
|
|
1635
|
+
|
|
1636
|
+
@media (max-width: 767px) {
|
|
1637
|
+
.e-bigger .e-gantt .e-dialog .e-edit-form-column:nth-child(odd), .e-bigger .e-gantt .e-dialog .e-edit-form-column:nth-child(even) {
|
|
1638
|
+
float: none;
|
|
1639
|
+
padding: 16px 12px 0 16px;
|
|
1640
|
+
width: 100%;
|
|
1641
|
+
}
|
|
1642
|
+
}
|
|
1590
1643
|
/*! Gantt theme */
|
|
1591
1644
|
.e-gantt .e-gantt-splitter {
|
|
1592
1645
|
border-color: #edebe9;
|
|
@@ -1639,6 +1692,13 @@
|
|
|
1639
1692
|
background: #edebe9;
|
|
1640
1693
|
opacity: 0.9;
|
|
1641
1694
|
}
|
|
1695
|
+
.e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-leftfreeze,
|
|
1696
|
+
.e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-unfreeze,
|
|
1697
|
+
.e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-rightfreeze,
|
|
1698
|
+
.e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-fixedfreeze {
|
|
1699
|
+
background: #edebe9;
|
|
1700
|
+
opacity: 1;
|
|
1701
|
+
}
|
|
1642
1702
|
.e-gantt .e-taskbar-resize-div {
|
|
1643
1703
|
border-color: #0078d4;
|
|
1644
1704
|
}
|
|
@@ -1955,6 +2015,7 @@
|
|
|
1955
2015
|
}
|
|
1956
2016
|
.e-gantt-dialog .e-dlg-header {
|
|
1957
2017
|
color: #201f1e;
|
|
2018
|
+
position: relative;
|
|
1958
2019
|
}
|
|
1959
2020
|
.e-gantt-dialog .e-dlg-header-content {
|
|
1960
2021
|
background: #faf9f8;
|
|
@@ -87,6 +87,7 @@ $gantt-dialog-general-height: 241px !default;
|
|
|
87
87
|
$gantt-dialog-edit-form-odd-padding: 16px 18px 0 18px !default;
|
|
88
88
|
$gantt-dialog-edit-form-even-padding: 16px 16px 0 0 !default;
|
|
89
89
|
$gantt-dialog-edit-form-scroll-padding: 16px 16px 0 0 !default;
|
|
90
|
+
$gantt-mobile-bigger-dialog-edit-form-padding: 16px 12px 0 16px !default;
|
|
90
91
|
$gantt-bigger-predecessor-dialog-padding: 10px 9px 9px 14px !important;
|
|
91
92
|
$gantt-bigger-predecessor-dialog-font-size: 12px;
|
|
92
93
|
$gantt-bigger-predecessor-dialog-font-weight: 400 !default;
|
|
@@ -98,7 +99,6 @@ $gantt-bigger-tooltip-dialog-text-color: $shadow;
|
|
|
98
99
|
$gantt-bigger-tooltip-disabled-button-color: #adadad !important;
|
|
99
100
|
$gantt-bigger-dialog-edit-form-odd-padding: 16px 12px 0 16px !default;
|
|
100
101
|
$gantt-bigger-dialog-edit-form-even-padding: 16px 16px 0 12px !default;
|
|
101
|
-
$gantt-bigger-dialog-close-button-left: 0 !important;
|
|
102
102
|
$gantt-bigger-dialog-close-button-size: 12px !important;
|
|
103
103
|
$gantt-bigger-dialog-header-padding: 16px 4px 16px 16px !important;
|
|
104
104
|
$gantt-bigger-dialog-edit-form-scroll-padding: 16px 18px 0 9px !default;
|
|
@@ -130,6 +130,7 @@ $gantt-bigger-dialog-input-icon: 35px !important;
|
|
|
130
130
|
$gantt-dialog-bigger-border-radius: 6px !important;
|
|
131
131
|
$gantt-bigger-dialog-tab-padding-left: 5px !important;
|
|
132
132
|
$gantt-bigger-dialog-border-radius: 6px 6px 0px 0px !default;
|
|
133
|
+
$gantt-dialog-close-button-top: 2px !important;
|
|
133
134
|
$gantt-dialog-dependent-height: 161px !default;
|
|
134
135
|
$gantt-dialog-resource-height: 202px !default;
|
|
135
136
|
$gantt-dialog-rte-height: 241px !default;
|
|
@@ -157,6 +158,7 @@ $gantt-connector-point-height: 8px !default;
|
|
|
157
158
|
$gantt-connector-left-point-left: -12px !default;
|
|
158
159
|
$gantt-parent-progress-bar-border-radius: 4px !default;
|
|
159
160
|
$gantt-active-background: $grey-88 !default;
|
|
161
|
+
$gantt-active-frozen-background: $grey-88 !default;
|
|
160
162
|
$gantt-active-color: $brand-primary-font !default;
|
|
161
163
|
$gantt-active-color-opacity: 1 !default;
|
|
162
164
|
$gantt-table-background: $grey-base !default;
|
|
@@ -212,4 +214,7 @@ $gantt-collapse-progress-width: 0px !important;
|
|
|
212
214
|
$rangecontainer-border-color: #FC7A05;
|
|
213
215
|
$gantt-range-container-arc-radius: 2px !default;
|
|
214
216
|
$bigger-column-menu-size: 40px !default;
|
|
215
|
-
$gantt-masked-table-background-color: #e1dfdd;
|
|
217
|
+
$gantt-masked-table-background-color: #e1dfdd;
|
|
218
|
+
$gantt-rowdd-topbottom-border: 1px solid #0070f0 !default;
|
|
219
|
+
$gantt-rowdd-boxshadow: #0070f0 !default;
|
|
220
|
+
$gantt-rowdd-childborder-width: 1px 0 0 !default;
|
|
@@ -87,6 +87,7 @@ $gantt-dialog-general-height: 241px !default;
|
|
|
87
87
|
$gantt-dialog-edit-form-odd-padding: 16px 18px 0 18px !default;
|
|
88
88
|
$gantt-dialog-edit-form-even-padding: 16px 16px 0 0 !default;
|
|
89
89
|
$gantt-dialog-edit-form-scroll-padding: 16px 16px 0 0 !default;
|
|
90
|
+
$gantt-mobile-bigger-dialog-edit-form-padding: 16px 12px 0 16px !default;
|
|
90
91
|
$gantt-bigger-predecessor-dialog-padding: 10px 9px 9px 14px !important;
|
|
91
92
|
$gantt-bigger-predecessor-dialog-font-size: 12px;
|
|
92
93
|
$gantt-bigger-predecessor-dialog-font-weight: 400 !default;
|
|
@@ -98,7 +99,6 @@ $gantt-bigger-tooltip-dialog-text-color: $grey-base;
|
|
|
98
99
|
$gantt-bigger-tooltip-disabled-button-color: $grey-ad !important;
|
|
99
100
|
$gantt-bigger-dialog-edit-form-odd-padding: 16px 12px 0 16px !default;
|
|
100
101
|
$gantt-bigger-dialog-edit-form-even-padding: 16px 16px 0 12px !default;
|
|
101
|
-
$gantt-bigger-dialog-close-button-left: 0 !important;
|
|
102
102
|
$gantt-bigger-dialog-close-button-size: 12px !important;
|
|
103
103
|
$gantt-bigger-dialog-header-padding: 16px 4px 16px 16px !important;
|
|
104
104
|
$gantt-bigger-add-dialog-content-height: 242px !important;
|
|
@@ -130,6 +130,7 @@ $gantt-dialog-bigger-border-radius: 6px !important;
|
|
|
130
130
|
$gantt-bigger-dialog-tab-padding-left: 5px !important;
|
|
131
131
|
$gantt-bigger-dialog-border-radius: 6px 6px 0px 0px !default;
|
|
132
132
|
$gantt-bigger-dialog-edit-form-scroll-padding: 16px 18px 0 9px !default;
|
|
133
|
+
$gantt-dialog-close-button-top: 2px !important;
|
|
133
134
|
$gantt-dialog-dependent-height: 161px !default;
|
|
134
135
|
$gantt-dialog-resource-height: 202px !default;
|
|
135
136
|
$gantt-dialog-rte-height: 241px !default;
|
|
@@ -157,6 +158,7 @@ $gantt-connector-point-height: 8px !default;
|
|
|
157
158
|
$gantt-connector-left-point-left: -12px !default;
|
|
158
159
|
$gantt-parent-progress-bar-border-radius: 4px !default;
|
|
159
160
|
$gantt-active-background: lighten($brand-primary, 40%) !default;
|
|
161
|
+
$gantt-active-frozen-background:lighten($brand-primary, 40%) !default;
|
|
160
162
|
$gantt-active-color: #000 !default;
|
|
161
163
|
$gantt-active-color-opacity: 1 !default;
|
|
162
164
|
$gantt-table-background: $brand-primary-font !default;
|
|
@@ -212,4 +214,7 @@ $gantt-collapse-progress-width: 0px !important;
|
|
|
212
214
|
$rangecontainer-border-color: #FC7A05;
|
|
213
215
|
$gantt-range-container-arc-radius: 2px !default;
|
|
214
216
|
$bigger-column-menu-size: 40px !default;
|
|
215
|
-
$gantt-masked-table-background-color: #e1dfdd;
|
|
217
|
+
$gantt-masked-table-background-color: #e1dfdd;
|
|
218
|
+
$gantt-rowdd-topbottom-border: 1px solid #317ab9 !default;
|
|
219
|
+
$gantt-rowdd-boxshadow: #317ab9 !default;
|
|
220
|
+
$gantt-rowdd-childborder-width: 1px 0 0 !default;
|
|
@@ -85,6 +85,7 @@ $gantt-dialog-general-height: 241px !default;
|
|
|
85
85
|
$gantt-dialog-edit-form-odd-padding: 16px 18px 0 18px !default;
|
|
86
86
|
$gantt-dialog-edit-form-even-padding: 16px 16px 0 0 !default;
|
|
87
87
|
$gantt-dialog-edit-form-scroll-padding: 16px 16px 0 0 !default;
|
|
88
|
+
$gantt-mobile-bigger-dialog-edit-form-padding: 16px 12px 0 16px !default;
|
|
88
89
|
$gantt-bigger-predecessor-dialog-padding: 10px 9px 9px 14px !important;
|
|
89
90
|
$gantt-bigger-predecessor-dialog-font-size: 12px;
|
|
90
91
|
$gantt-bigger-predecessor-dialog-font-weight: 400 !default;
|
|
@@ -97,7 +98,6 @@ $gantt-bigger-tooltip-disabled-button-color: $gray-500 !important;
|
|
|
97
98
|
$gantt-bigger-dialog-edit-form-odd-padding: 16px 12px 0 16px !default;
|
|
98
99
|
$gantt-bigger-dialog-edit-form-even-padding: 16px 16px 0 12px !default;
|
|
99
100
|
$gantt-bigger-dialog-edit-form-scroll-padding: 16px 18px 0 9px !default;
|
|
100
|
-
$gantt-bigger-dialog-close-button-left: 1px !important;
|
|
101
101
|
$gantt-bigger-dialog-close-button-size: 14px !important;
|
|
102
102
|
$gantt-bigger-dialog-header-padding: 16px 4px 16px 16px !important;
|
|
103
103
|
$gantt-bigger-add-dialog-content-height: 250px !important;
|
|
@@ -129,6 +129,7 @@ $gantt-dialog-bigger-border-radius: 6px !important;
|
|
|
129
129
|
$gantt-bigger-dialog-tab-padding-left: 5px !important;
|
|
130
130
|
$gantt-bigger-dialog-icon-color: $primary-font !default;
|
|
131
131
|
$gantt-bigger-dialog-border-radius: 6px 6px 0px 0px !default;
|
|
132
|
+
$gantt-dialog-close-button-top: 2px !important;
|
|
132
133
|
$gantt-dialog-dependent-height: 161px !default;
|
|
133
134
|
$gantt-dialog-resource-height: 202px !default;
|
|
134
135
|
$gantt-dialog-rte-height: 241px !default;
|
|
@@ -158,6 +159,7 @@ $gantt-parent-progress-bar-border-radius: 4px !default;
|
|
|
158
159
|
$gantt-timeline-top-headercell-font-size: 14px !default;
|
|
159
160
|
$gantt-timeline-top-headercell-font-weight: bold !default;
|
|
160
161
|
$gantt-active-background: rgba($primary, .16) !default;
|
|
162
|
+
$gantt-active-frozen-background: #d6eaff !default;
|
|
161
163
|
$gantt-active-color: #333 !default;
|
|
162
164
|
$gantt-active-color-opacity: 1 !default;
|
|
163
165
|
$gantt-table-background: $primary-font !default;
|
|
@@ -214,4 +216,7 @@ $gantt-collapse-progress-width: 0px !important;
|
|
|
214
216
|
$rangecontainer-border-color: #FC7A05;
|
|
215
217
|
$gantt-range-container-arc-radius: 2px !default;
|
|
216
218
|
$bigger-column-menu-size: 38px !default;
|
|
217
|
-
$gantt-masked-table-background-color: #e1dfdd;
|
|
219
|
+
$gantt-masked-table-background-color: #e1dfdd;
|
|
220
|
+
$gantt-rowdd-topbottom-border: 1px solid #e3165b !default;
|
|
221
|
+
$gantt-rowdd-boxshadow: #e3165b !default;
|
|
222
|
+
$gantt-rowdd-childborder-width: 1px 0 0 !default;
|
|
@@ -69,6 +69,7 @@ $gantt-tab-selection-indicator-color: $primary !default;
|
|
|
69
69
|
$gantt-tab-header-hover-color: $transparent !default;
|
|
70
70
|
$gantt-tab-header-hover-font-color: $content-text-color-alt2 !default;
|
|
71
71
|
$gantt-active-background: $table-bg-color-selected;
|
|
72
|
+
$gantt-active-frozen-background: $table-bg-color-selected;
|
|
72
73
|
$gantt-active-color: $table-text-color-selected !default;
|
|
73
74
|
$gantt-table-background: $content-bg-color !default;
|
|
74
75
|
$gantt-baseline-color: $warning !default;
|
|
@@ -123,6 +124,7 @@ $gantt-dialog-general-height: 241px !default;
|
|
|
123
124
|
$gantt-dialog-edit-form-odd-padding: 12px 18px 0 18px !default;
|
|
124
125
|
$gantt-dialog-edit-form-even-padding: 12px 18px 0 0 !default;
|
|
125
126
|
$gantt-dialog-edit-form-scroll-padding: 12px 18px 0 0 !default;
|
|
127
|
+
$gantt-mobile-bigger-dialog-edit-form-padding: 16px 12px 0 16px !default;
|
|
126
128
|
$gantt-bigger-tooltip-button-color: $warning-text;
|
|
127
129
|
$gantt-bigger-tooltip-dialog-color: $content-bg-color;
|
|
128
130
|
$gantt-bigger-tooltip-button-text-color: $white;
|
|
@@ -130,7 +132,6 @@ $gantt-bigger-tooltip-dialog-text-color: $content-text-color;
|
|
|
130
132
|
$gantt-bigger-tooltip-disabled-button-color: $content-bg-color-alt5 !important;
|
|
131
133
|
$gantt-bigger-dialog-edit-form-odd-padding: 16px 12px 0 16px !default;
|
|
132
134
|
$gantt-bigger-dialog-edit-form-even-padding: 16px 16px 0 12px !default;
|
|
133
|
-
$gantt-bigger-dialog-close-button-left: 2px !important;
|
|
134
135
|
$gantt-bigger-dialog-close-button-size: 14px !important;
|
|
135
136
|
$gantt-bigger-dialog-header-padding: 16px 4px 16px 16px !important;
|
|
136
137
|
$gantt-bigger-add-dialog-content-height: 250px !important;
|
|
@@ -166,6 +167,7 @@ $gantt-dialog-bigger-border-radius: 6px !important;
|
|
|
166
167
|
$gantt-bigger-dialog-tab-padding-left: 5px !important;
|
|
167
168
|
$gantt-bigger-dialog-border-radius: 6px 6px 0px 0px !default;
|
|
168
169
|
$gantt-bigger-dialog-edit-form-scroll-padding: 16px 18px 0 9px !default;
|
|
170
|
+
$gantt-dialog-close-button-top: 0 !important;
|
|
169
171
|
$gantt-dialog-dependent-height: 161px !default;
|
|
170
172
|
$gantt-dialog-resource-height: 202px !default;
|
|
171
173
|
$gantt-dialog-rte-height: 241px !default;
|
|
@@ -216,4 +218,7 @@ $grid-active-container-border: 0 0 0 1px $border inset !default;
|
|
|
216
218
|
$gantt-collapse-progress-width: 0px !important;
|
|
217
219
|
$gantt-range-container-arc-radius: 2px !default;
|
|
218
220
|
$bigger-column-menu-size: 35px !default;
|
|
219
|
-
$gantt-masked-table-background-color: rgb(225,223,221);
|
|
221
|
+
$gantt-masked-table-background-color: rgb(225,223,221);
|
|
222
|
+
$gantt-rowdd-topbottom-border: 2px solid #4f46e5 !default;
|
|
223
|
+
$gantt-rowdd-boxshadow: $primary !default;
|
|
224
|
+
$gantt-rowdd-childborder-width: 2px 0 0 !default;
|
|
@@ -83,6 +83,7 @@ $gantt-dialog-general-height: 241px !default;
|
|
|
83
83
|
$gantt-dialog-edit-form-odd-padding: 15px 20px 0 18px !default;
|
|
84
84
|
$gantt-dialog-edit-form-even-padding: 16px 16px 0 0 !default;
|
|
85
85
|
$gantt-dialog-edit-form-scroll-padding: 16px 16px 0 0 !default;
|
|
86
|
+
$gantt-mobile-bigger-dialog-edit-form-padding: 16px 12px 0 16px !default;
|
|
86
87
|
$gantt-bigger-predecessor-dialog-padding: 10px 9px 9px 14px !important;
|
|
87
88
|
$gantt-bigger-predecessor-dialog-font-size: 12px;
|
|
88
89
|
$gantt-bigger-predecessor-dialog-font-weight: 400 !default;
|
|
@@ -94,7 +95,6 @@ $gantt-bigger-tooltip-dialog-text-color: $grey-dark-font;
|
|
|
94
95
|
$gantt-bigger-tooltip-disabled-button-color: #A6A6A6 !important;
|
|
95
96
|
$gantt-bigger-dialog-edit-form-odd-padding: 16px 12px 0 16px !default;
|
|
96
97
|
$gantt-bigger-dialog-edit-form-even-padding: 16px 16px 0 12px !default;
|
|
97
|
-
$gantt-bigger-dialog-close-button-left: 0 !important;
|
|
98
98
|
$gantt-bigger-dialog-close-button-size: 12px !important;
|
|
99
99
|
$gantt-bigger-dialog-header-padding: 16px 4px 16px 16px !important;
|
|
100
100
|
$gantt-bigger-add-dialog-content-height: 242px !important;
|
|
@@ -126,6 +126,7 @@ $gantt-dialog-bigger-border-radius: 6px !important;
|
|
|
126
126
|
$gantt-bigger-dialog-tab-padding-left: 5px !important;
|
|
127
127
|
$gantt-bigger-dialog-border-radius: 6px 6px 0px 0px !default;
|
|
128
128
|
$gantt-bigger-dialog-edit-form-scroll-padding: 16px 18px 0 0 !default;
|
|
129
|
+
$gantt-dialog-close-button-top: 0 !important;
|
|
129
130
|
$gantt-dialog-dependent-height: 161px !default;
|
|
130
131
|
$gantt-dialog-resource-height: 202px !default;
|
|
131
132
|
$gantt-dialog-rte-height: 241px !default;
|
|
@@ -155,6 +156,7 @@ $gantt-parent-progress-bar-border-radius: 0px !default;
|
|
|
155
156
|
$gantt-timeline-top-headercell-font-size: 14px !default;
|
|
156
157
|
$gantt-timeline-top-headercell-font-weight: 400 !default;
|
|
157
158
|
$gantt-active-background: $neutral-quintenary!default;
|
|
159
|
+
$gantt-active-frozen-background: $neutral-quintenary!default;
|
|
158
160
|
$gantt-active-color: $neutral-primary !default;
|
|
159
161
|
$gantt-active-color-opacity: 1 !default;
|
|
160
162
|
$gantt-table-background: $neutral-white !default;
|
|
@@ -212,4 +214,7 @@ $rangecontainer-border-color: #FC7A05;
|
|
|
212
214
|
$gantt-range-container-arc-radius: 0px !default;
|
|
213
215
|
$gantt-active-background-color: #a9a9a9;
|
|
214
216
|
$bigger-column-menu-size: 45px !default;
|
|
215
|
-
$gantt-masked-table-background-color: #e1dfdd;
|
|
217
|
+
$gantt-masked-table-background-color: #e1dfdd;
|
|
218
|
+
$gantt-rowdd-topbottom-border: 1px solid #0074cc !default;
|
|
219
|
+
$gantt-rowdd-boxshadow: #0074cc !default;
|
|
220
|
+
$gantt-rowdd-childborder-width: 1px 0 0 !default;
|
|
@@ -83,6 +83,7 @@ $gantt-dialog-general-height: 241px !default;
|
|
|
83
83
|
$gantt-dialog-edit-form-odd-padding: 15px 20px 0 18px !default;
|
|
84
84
|
$gantt-dialog-edit-form-even-padding: 16px 16px 0 0 !default;
|
|
85
85
|
$gantt-dialog-edit-form-scroll-padding: 16px 16px 0 0 !default;
|
|
86
|
+
$gantt-mobile-bigger-dialog-edit-form-padding: 16px 12px 0 16px !default;
|
|
86
87
|
$gantt-bigger-predecessor-dialog-padding: 10px 9px 9px 14px !important;
|
|
87
88
|
$gantt-bigger-predecessor-dialog-font-size: 12px;
|
|
88
89
|
$gantt-bigger-predecessor-dialog-font-weight: 400 !default;
|
|
@@ -94,7 +95,6 @@ $gantt-bigger-tooltip-dialog-text-color: $neutral-black;
|
|
|
94
95
|
$gantt-bigger-tooltip-disabled-button-color: $neutral-tertiary !important;
|
|
95
96
|
$gantt-bigger-dialog-edit-form-odd-padding: 16px 12px 0 16px !default;
|
|
96
97
|
$gantt-bigger-dialog-edit-form-even-padding: 16px 16px 0 12px !default;
|
|
97
|
-
$gantt-bigger-dialog-close-button-left: 0 !important;
|
|
98
98
|
$gantt-bigger-dialog-close-button-size: 12px !important;
|
|
99
99
|
$gantt-bigger-dialog-header-padding: 16px 4px 16px 16px !important;
|
|
100
100
|
$gantt-bigger-add-dialog-content-height: 242px !important;
|
|
@@ -126,6 +126,7 @@ $gantt-dialog-bigger-border-radius: 6px !important;
|
|
|
126
126
|
$gantt-bigger-dialog-tab-padding-left: 5px !important;
|
|
127
127
|
$gantt-bigger-dialog-border-radius: 6px 6px 0px 0px !default;
|
|
128
128
|
$gantt-bigger-dialog-edit-form-scroll-padding: 16px 18px 0 9px !default;
|
|
129
|
+
$gantt-dialog-close-button-top: 0 !important;
|
|
129
130
|
$gantt-dialog-dependent-height: 161px !default;
|
|
130
131
|
$gantt-dialog-resource-height: 202px !default;
|
|
131
132
|
$gantt-dialog-rte-height: 241px !default;
|
|
@@ -155,6 +156,7 @@ $gantt-parent-progress-bar-border-radius: 0px !default;
|
|
|
155
156
|
$gantt-timeline-top-headercell-font-size: 14px !default;
|
|
156
157
|
$gantt-timeline-top-headercell-font-weight: 400 !default;
|
|
157
158
|
$gantt-active-background: rgb(209, 235, 255)!default;
|
|
159
|
+
$gantt-active-frozen-background: rgb(209, 235, 255)!default;
|
|
158
160
|
$gantt-active-color: $neutral-primary !default;
|
|
159
161
|
$gantt-active-color-opacity: 1 !default;
|
|
160
162
|
$gantt-table-background: $neutral-white !default;
|
|
@@ -212,4 +214,7 @@ $gantt-collapse-progress-width: 0px !important;
|
|
|
212
214
|
$rangecontainer-border-color: #FC7A05;
|
|
213
215
|
$gantt-range-container-arc-radius: 0px !default;
|
|
214
216
|
$bigger-column-menu-size: 45px !default;
|
|
215
|
-
$gantt-masked-table-background-color: #e1dfdd;
|
|
217
|
+
$gantt-masked-table-background-color: #e1dfdd;
|
|
218
|
+
$gantt-rowdd-topbottom-border: 1px solid #0078d6 !default;
|
|
219
|
+
$gantt-rowdd-boxshadow: #0078d6 !default;
|
|
220
|
+
$gantt-rowdd-childborder-width: 1px 0 0 !default;
|