@syncfusion/ej2-gantt 19.3.44 → 19.3.48
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 +45 -0
- 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 +93 -28
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +146 -71
- 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 +17 -17
- package/src/gantt/actions/cell-edit.js +1 -0
- package/src/gantt/actions/context-menu.js +5 -0
- package/src/gantt/actions/dialog-edit.js +6 -6
- package/src/gantt/actions/edit.js +7 -3
- package/src/gantt/actions/rowdragdrop.js +74 -41
- package/src/gantt/actions/taskbar-edit.js +3 -1
- package/src/gantt/base/date-processor.js +4 -1
- package/src/gantt/base/gantt.js +20 -0
- package/src/gantt/base/task-processor.js +11 -2
- package/src/gantt/base/utils.js +3 -3
- package/src/gantt/export/export-helper.js +12 -14
- package/styles/bootstrap-dark.css +99 -99
- package/styles/bootstrap.css +99 -99
- package/styles/bootstrap4.css +104 -99
- package/styles/bootstrap5-dark.css +104 -99
- package/styles/bootstrap5.css +104 -99
- package/styles/fabric-dark.css +99 -99
- package/styles/fabric.css +99 -99
- package/styles/gantt/_bootstrap-dark-definition.scss +0 -1
- package/styles/gantt/_bootstrap-definition.scss +0 -1
- package/styles/gantt/_bootstrap4-definition.scss +0 -1
- package/styles/gantt/_bootstrap5-definition.scss +0 -1
- package/styles/gantt/_fabric-dark-definition.scss +0 -1
- package/styles/gantt/_fabric-definition.scss +0 -1
- package/styles/gantt/_highcontrast-definition.scss +0 -1
- package/styles/gantt/_highcontrast-light-definition.scss +0 -1
- package/styles/gantt/_layout.scss +100 -95
- package/styles/gantt/_material-dark-definition.scss +0 -1
- package/styles/gantt/_material-definition.scss +0 -1
- package/styles/gantt/_tailwind-definition.scss +0 -1
- package/styles/gantt/_theme.scss +76 -81
- package/styles/gantt/bootstrap-dark.css +99 -99
- package/styles/gantt/bootstrap.css +99 -99
- package/styles/gantt/bootstrap4.css +104 -99
- package/styles/gantt/bootstrap5-dark.css +104 -99
- package/styles/gantt/bootstrap5-dark.scss +1 -0
- package/styles/gantt/bootstrap5.css +104 -99
- package/styles/gantt/bootstrap5.scss +1 -0
- package/styles/gantt/fabric-dark.css +99 -99
- package/styles/gantt/fabric.css +99 -99
- package/styles/gantt/highcontrast-light.css +99 -99
- package/styles/gantt/highcontrast.css +99 -99
- package/styles/gantt/material-dark.css +99 -99
- package/styles/gantt/material.css +99 -99
- package/styles/gantt/tailwind-dark.css +99 -99
- package/styles/gantt/tailwind.css +99 -99
- package/styles/highcontrast-light.css +99 -99
- package/styles/highcontrast.css +99 -99
- package/styles/material-dark.css +99 -99
- package/styles/material.css +99 -99
- package/styles/tailwind-dark.css +99 -99
- package/styles/tailwind.css +99 -99
package/styles/fabric.css
CHANGED
|
@@ -335,23 +335,6 @@
|
|
|
335
335
|
border-color: transparent;
|
|
336
336
|
}
|
|
337
337
|
|
|
338
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
339
|
-
padding-left: 13px;
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
343
|
-
display: block;
|
|
344
|
-
}
|
|
345
|
-
|
|
346
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
347
|
-
border-style: solid;
|
|
348
|
-
border-width: 0px;
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
|
|
352
|
-
border: 0;
|
|
353
|
-
}
|
|
354
|
-
|
|
355
338
|
.e-gantt .e-gantt-tree-grid-pane .e-grid {
|
|
356
339
|
border-width: 0;
|
|
357
340
|
}
|
|
@@ -690,6 +673,10 @@
|
|
|
690
673
|
user-select: none;
|
|
691
674
|
}
|
|
692
675
|
|
|
676
|
+
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
677
|
+
line-height: initial;
|
|
678
|
+
}
|
|
679
|
+
|
|
693
680
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
694
681
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
695
682
|
display: inline-block;
|
|
@@ -982,101 +969,118 @@
|
|
|
982
969
|
outline-offset: 2px;
|
|
983
970
|
}
|
|
984
971
|
|
|
985
|
-
.e-gantt .e-
|
|
972
|
+
.e-gantt-dialog .e-tab .e-tab-header {
|
|
973
|
+
padding-left: 13px;
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
977
|
+
display: block;
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
981
|
+
border-style: solid;
|
|
982
|
+
border-width: 0px;
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
.e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
|
|
986
986
|
border: 0;
|
|
987
987
|
}
|
|
988
988
|
|
|
989
|
-
.e-gantt
|
|
989
|
+
.e-gantt-dialog {
|
|
990
|
+
border: 0;
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
.e-gantt-dialog .e-gridform .e-table {
|
|
990
994
|
border-spacing: 0;
|
|
991
995
|
}
|
|
992
996
|
|
|
993
|
-
.e-gantt
|
|
997
|
+
.e-gantt-dialog .e-item {
|
|
994
998
|
height: 241px;
|
|
995
999
|
}
|
|
996
1000
|
|
|
997
|
-
.e-gantt
|
|
1001
|
+
.e-gantt-dialog .e-dependent-div {
|
|
998
1002
|
border-bottom-width: 1px;
|
|
999
1003
|
}
|
|
1000
1004
|
|
|
1001
|
-
.e-gantt
|
|
1005
|
+
.e-gantt-dialog .e-icon-dlg-close {
|
|
1002
1006
|
opacity: initial;
|
|
1003
1007
|
}
|
|
1004
1008
|
|
|
1005
|
-
.e-gantt
|
|
1009
|
+
.e-gantt-dialog .e-toolbar {
|
|
1006
1010
|
border-top-width: 0;
|
|
1007
1011
|
}
|
|
1008
1012
|
|
|
1009
|
-
.e-gantt
|
|
1013
|
+
.e-gantt-dialog .e-resource-div {
|
|
1010
1014
|
border-bottom-width: 1px;
|
|
1011
1015
|
}
|
|
1012
1016
|
|
|
1013
|
-
.e-gantt
|
|
1017
|
+
.e-gantt-dialog .e-resource-div .e-gridheader {
|
|
1014
1018
|
border-top-width: 0;
|
|
1015
1019
|
}
|
|
1016
1020
|
|
|
1017
|
-
.e-gantt
|
|
1021
|
+
.e-gantt-dialog .e-edit-form-row {
|
|
1018
1022
|
height: 241px;
|
|
1019
1023
|
overflow-y: auto;
|
|
1020
1024
|
padding-bottom: 16px;
|
|
1021
1025
|
}
|
|
1022
1026
|
|
|
1023
|
-
.e-gantt
|
|
1027
|
+
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
1024
1028
|
float: left;
|
|
1025
1029
|
padding: 15px 20px 0 18px;
|
|
1026
1030
|
width: 50%;
|
|
1027
1031
|
}
|
|
1028
1032
|
|
|
1029
|
-
.e-gantt
|
|
1033
|
+
.e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
1030
1034
|
float: left;
|
|
1031
1035
|
padding: 16px 16px 0 0;
|
|
1032
1036
|
width: 50%;
|
|
1033
1037
|
}
|
|
1034
1038
|
|
|
1035
|
-
.e-gantt
|
|
1039
|
+
.e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
1036
1040
|
padding: 16px 16px 0 0;
|
|
1037
1041
|
}
|
|
1038
1042
|
|
|
1039
|
-
.e-gantt
|
|
1043
|
+
.e-gantt-dialog .e-edit-form-column {
|
|
1040
1044
|
height: 75px;
|
|
1041
1045
|
}
|
|
1042
1046
|
|
|
1043
|
-
.e-gantt
|
|
1047
|
+
.e-gantt-dialog .e-dependent-div .e-content {
|
|
1044
1048
|
height: 161px;
|
|
1045
1049
|
}
|
|
1046
1050
|
|
|
1047
|
-
.e-gantt
|
|
1051
|
+
.e-gantt-dialog .e-resource-div .e-content {
|
|
1048
1052
|
height: 202px;
|
|
1049
1053
|
}
|
|
1050
1054
|
|
|
1051
|
-
.e-gantt
|
|
1055
|
+
.e-gantt-dialog .e-richtexteditor {
|
|
1052
1056
|
border-bottom-width: 1px;
|
|
1053
1057
|
height: 241px !important;
|
|
1054
1058
|
overflow: hidden;
|
|
1055
1059
|
}
|
|
1056
1060
|
|
|
1057
|
-
.e-gantt
|
|
1061
|
+
.e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
|
|
1058
1062
|
border-top: 0;
|
|
1059
1063
|
}
|
|
1060
1064
|
|
|
1061
|
-
.e-gantt
|
|
1065
|
+
.e-gantt-dialog .e-richtexteditor .e-rte-content {
|
|
1062
1066
|
border-bottom-width: 0px;
|
|
1063
1067
|
height: 200px;
|
|
1064
1068
|
}
|
|
1065
1069
|
|
|
1066
|
-
.e-gantt
|
|
1070
|
+
.e-gantt-dialog > .e-dlg-content {
|
|
1067
1071
|
padding: 0 !important;
|
|
1068
1072
|
}
|
|
1069
1073
|
|
|
1070
|
-
.e-gantt
|
|
1074
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1071
1075
|
border-bottom: 0 !important;
|
|
1072
1076
|
}
|
|
1073
1077
|
|
|
1074
|
-
.e-gantt
|
|
1078
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1075
1079
|
border-radius: 0px;
|
|
1076
1080
|
padding-bottom: 4px;
|
|
1077
1081
|
}
|
|
1078
1082
|
|
|
1079
|
-
.e-gantt
|
|
1083
|
+
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1080
1084
|
border-radius: 50%;
|
|
1081
1085
|
}
|
|
1082
1086
|
|
|
@@ -1232,10 +1236,6 @@
|
|
|
1232
1236
|
border-radius: 0px;
|
|
1233
1237
|
}
|
|
1234
1238
|
|
|
1235
|
-
.e-gantt .e-gantt-splitter-height {
|
|
1236
|
-
height: calc(100% - 40px) !important;
|
|
1237
|
-
}
|
|
1238
|
-
|
|
1239
1239
|
.e-gantt .e-cloneproperties.e-draganddrop {
|
|
1240
1240
|
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
|
|
1241
1241
|
opacity: .95;
|
|
@@ -1267,62 +1267,6 @@
|
|
|
1267
1267
|
box-shadow: 0 0 0 1px #666 inset !important;
|
|
1268
1268
|
}
|
|
1269
1269
|
|
|
1270
|
-
.e-gantt .e-gantt-dialog .e-dlg-header {
|
|
1271
|
-
color: #fff;
|
|
1272
|
-
}
|
|
1273
|
-
|
|
1274
|
-
.e-gantt .e-gantt-dialog .e-dlg-header-content {
|
|
1275
|
-
background: #0078d6;
|
|
1276
|
-
}
|
|
1277
|
-
|
|
1278
|
-
.e-gantt .e-gantt-dialog .e-icon-dlg-close {
|
|
1279
|
-
color: #fff;
|
|
1280
|
-
}
|
|
1281
|
-
|
|
1282
|
-
.e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
|
|
1283
|
-
background-color: #eaeaea;
|
|
1284
|
-
}
|
|
1285
|
-
|
|
1286
|
-
.e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
|
|
1287
|
-
color: #0078d6;
|
|
1288
|
-
}
|
|
1289
|
-
|
|
1290
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
1291
|
-
background: #0078d6;
|
|
1292
|
-
}
|
|
1293
|
-
|
|
1294
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1295
|
-
background: #fff;
|
|
1296
|
-
}
|
|
1297
|
-
|
|
1298
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1299
|
-
background-color: transparent;
|
|
1300
|
-
}
|
|
1301
|
-
|
|
1302
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
|
|
1303
|
-
color: #fff;
|
|
1304
|
-
}
|
|
1305
|
-
|
|
1306
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1307
|
-
border-color: transparent;
|
|
1308
|
-
}
|
|
1309
|
-
|
|
1310
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1311
|
-
color: rgba(255, 255, 255, 0.8);
|
|
1312
|
-
}
|
|
1313
|
-
|
|
1314
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
|
|
1315
|
-
background: transparent;
|
|
1316
|
-
border-bottom: 0px;
|
|
1317
|
-
border-bottom-left-radius: 0px;
|
|
1318
|
-
border-bottom-right-radius: 0px;
|
|
1319
|
-
border-color: transparent;
|
|
1320
|
-
}
|
|
1321
|
-
|
|
1322
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
|
|
1323
|
-
color: white;
|
|
1324
|
-
}
|
|
1325
|
-
|
|
1326
1270
|
.e-gantt .e-temp-content {
|
|
1327
1271
|
border-color: #eaeaea;
|
|
1328
1272
|
}
|
|
@@ -1827,6 +1771,62 @@
|
|
|
1827
1771
|
color: #666 !important;
|
|
1828
1772
|
}
|
|
1829
1773
|
|
|
1774
|
+
.e-gantt-dialog .e-dlg-header {
|
|
1775
|
+
color: #fff;
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1778
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1779
|
+
background: #0078d6;
|
|
1780
|
+
}
|
|
1781
|
+
|
|
1782
|
+
.e-gantt-dialog .e-icon-dlg-close {
|
|
1783
|
+
color: #fff;
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
.e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
|
|
1787
|
+
background-color: #eaeaea;
|
|
1788
|
+
}
|
|
1789
|
+
|
|
1790
|
+
.e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
|
|
1791
|
+
color: #0078d6;
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1794
|
+
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1795
|
+
background: #0078d6;
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1798
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1799
|
+
background: #fff;
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1803
|
+
background-color: transparent;
|
|
1804
|
+
}
|
|
1805
|
+
|
|
1806
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
|
|
1807
|
+
color: #fff;
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1810
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1811
|
+
border-color: transparent;
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1814
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1815
|
+
color: rgba(255, 255, 255, 0.8);
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1818
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
|
|
1819
|
+
background: transparent;
|
|
1820
|
+
border-bottom: 0px;
|
|
1821
|
+
border-bottom-left-radius: 0px;
|
|
1822
|
+
border-bottom-right-radius: 0px;
|
|
1823
|
+
border-color: transparent;
|
|
1824
|
+
}
|
|
1825
|
+
|
|
1826
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
|
|
1827
|
+
color: white;
|
|
1828
|
+
}
|
|
1829
|
+
|
|
1830
1830
|
.e-gantt.e-device .e-left-resize-gripper,
|
|
1831
1831
|
.e-gantt.e-device .e-right-resize-gripper {
|
|
1832
1832
|
border-color: #9e9e9e;
|
|
@@ -118,7 +118,6 @@ $gantt-timeline-top-header-cell-height: 33px !default;
|
|
|
118
118
|
$gantt-header-border-radius: 4px !default;
|
|
119
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
120
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
-
$gantt-splitter-height: calc(100% - 41px) !important;
|
|
122
121
|
$gantt-dialog-general-padding-bottom: 16px !default;
|
|
123
122
|
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
124
123
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
@@ -118,7 +118,6 @@ $gantt-timeline-top-header-cell-height: 33px !default;
|
|
|
118
118
|
$gantt-header-border-radius: 4px !default;
|
|
119
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
120
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
-
$gantt-splitter-height: calc(100% - 41px) !important;
|
|
122
121
|
$gantt-dialog-general-padding-bottom: 16px !default;
|
|
123
122
|
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
124
123
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
@@ -118,7 +118,6 @@ $gantt-timeline-top-header-cell-height: 33px !default;
|
|
|
118
118
|
$gantt-header-border-radius: 0px !default;
|
|
119
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
120
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
-
$gantt-splitter-height: calc(100% - 38px) !important;
|
|
122
121
|
$gantt-dialog-general-padding-bottom: 12px !default;
|
|
123
122
|
$gantt-filter-menu-value-div-padding: 16px !default;
|
|
124
123
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
@@ -142,7 +142,6 @@ $gantt-timeline-top-header-cell-height: 33px !default;
|
|
|
142
142
|
$gantt-header-border-radius: 0px !default;
|
|
143
143
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
144
144
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
145
|
-
$gantt-splitter-height: calc(100% - 37px) !important;
|
|
146
145
|
$gantt-dialog-general-padding-bottom: 12px !default;
|
|
147
146
|
$gantt-filter-menu-value-div-padding: 16px !default;
|
|
148
147
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
@@ -118,7 +118,6 @@ $gantt-header-border-bottom-width: 1px !default;
|
|
|
118
118
|
$gantt-header-border-radius: 0px !default;
|
|
119
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
120
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
-
$gantt-splitter-height: calc(100% - 40px) !important;
|
|
122
121
|
$gantt-dialog-general-padding-bottom: 16px !default;
|
|
123
122
|
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
124
123
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
@@ -118,7 +118,6 @@ $gantt-header-border-bottom-width: 1px !default;
|
|
|
118
118
|
$gantt-header-border-radius: 0px !default;
|
|
119
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
120
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
-
$gantt-splitter-height: calc(100% - 40px) !important;
|
|
122
121
|
$gantt-dialog-general-padding-bottom: 16px !default;
|
|
123
122
|
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
124
123
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
@@ -118,7 +118,6 @@ $progress-handler-outline: #fff !default;
|
|
|
118
118
|
$gantt-header-border-radius: 0px !default;
|
|
119
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
120
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
-
$gantt-splitter-height: calc(100% - 40px) !important;
|
|
122
121
|
$gantt-dialog-general-padding-bottom: 16px !default;
|
|
123
122
|
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
124
123
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
@@ -118,7 +118,6 @@ $gantt-timeline-top-header-cell-height: 32px !default;
|
|
|
118
118
|
$gantt-header-border-radius: 0px !default;
|
|
119
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
120
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
-
$gantt-splitter-height: calc(100% - 42px) !important;
|
|
122
121
|
$gantt-dialog-general-padding-bottom: 16px !default;
|
|
123
122
|
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
124
123
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
@@ -105,24 +105,6 @@
|
|
|
105
105
|
}
|
|
106
106
|
}
|
|
107
107
|
|
|
108
|
-
.e-gantt-dialog .e-tab .e-tab-header {
|
|
109
|
-
padding-left: $gantt-dialog-tab-padding-left;
|
|
110
|
-
|
|
111
|
-
.e-indicator {
|
|
112
|
-
display: block;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
.e-toolbar-item .e-tab-wrap {
|
|
116
|
-
border-style: solid;
|
|
117
|
-
border-width: $gantt-tab-header-border-width;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
.e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
|
|
123
|
-
border: 0;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
108
|
.e-gantt-tree-grid-pane {
|
|
127
109
|
.e-grid {
|
|
128
110
|
border-width: 0;
|
|
@@ -310,7 +292,7 @@
|
|
|
310
292
|
border-bottom-width: 1px;
|
|
311
293
|
}
|
|
312
294
|
|
|
313
|
-
@if $
|
|
295
|
+
@if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
|
|
314
296
|
line-height: normal;
|
|
315
297
|
}
|
|
316
298
|
}
|
|
@@ -456,6 +438,10 @@
|
|
|
456
438
|
user-select: none;
|
|
457
439
|
}
|
|
458
440
|
|
|
441
|
+
.e-chart-rows-container {
|
|
442
|
+
line-height: initial;
|
|
443
|
+
}
|
|
444
|
+
|
|
459
445
|
.e-taskbar-left-resizer,
|
|
460
446
|
.e-taskbar-right-resizer {
|
|
461
447
|
display: inline-block;
|
|
@@ -661,7 +647,7 @@
|
|
|
661
647
|
}
|
|
662
648
|
|
|
663
649
|
.e-connector-line-z-index {
|
|
664
|
-
@if $
|
|
650
|
+
@if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
|
|
665
651
|
z-index: 2;
|
|
666
652
|
}
|
|
667
653
|
@else {
|
|
@@ -756,107 +742,126 @@
|
|
|
756
742
|
|
|
757
743
|
}
|
|
758
744
|
|
|
759
|
-
|
|
745
|
+
}
|
|
760
746
|
|
|
761
|
-
|
|
747
|
+
.e-gantt-dialog .e-tab .e-tab-header {
|
|
748
|
+
padding-left: $gantt-dialog-tab-padding-left;
|
|
762
749
|
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
750
|
+
.e-indicator {
|
|
751
|
+
display: block;
|
|
752
|
+
}
|
|
766
753
|
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
754
|
+
.e-toolbar-item .e-tab-wrap {
|
|
755
|
+
border-style: solid;
|
|
756
|
+
border-width: $gantt-tab-header-border-width;
|
|
757
|
+
}
|
|
770
758
|
|
|
771
|
-
|
|
772
|
-
border-bottom-width: $gantt-depedent-div-border-bottom;
|
|
773
|
-
}
|
|
759
|
+
}
|
|
774
760
|
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
761
|
+
.e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
|
|
762
|
+
border: 0;
|
|
763
|
+
}
|
|
778
764
|
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
}
|
|
765
|
+
.e-gantt-dialog {
|
|
766
|
+
border: 0;
|
|
782
767
|
|
|
783
|
-
|
|
784
|
-
|
|
768
|
+
.e-gridform .e-table {
|
|
769
|
+
border-spacing: 0;
|
|
770
|
+
}
|
|
785
771
|
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
772
|
+
.e-item {
|
|
773
|
+
height: $gantt-dialog-general-height;
|
|
774
|
+
}
|
|
789
775
|
|
|
790
|
-
|
|
776
|
+
.e-dependent-div {
|
|
777
|
+
border-bottom-width: $gantt-depedent-div-border-bottom;
|
|
778
|
+
}
|
|
791
779
|
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
padding-bottom: $gantt-dialog-general-padding-bottom;
|
|
796
|
-
}
|
|
780
|
+
.e-icon-dlg-close {
|
|
781
|
+
opacity: initial;
|
|
782
|
+
}
|
|
797
783
|
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
width: 50%;
|
|
802
|
-
}
|
|
784
|
+
.e-toolbar {
|
|
785
|
+
border-top-width: 0;
|
|
786
|
+
}
|
|
803
787
|
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
padding: $gantt-dialog-edit-form-even-padding;
|
|
807
|
-
width: 50%;
|
|
808
|
-
}
|
|
788
|
+
.e-resource-div {
|
|
789
|
+
border-bottom-width: $gantt-resource-div-border-bottom;
|
|
809
790
|
|
|
810
|
-
.e-
|
|
811
|
-
|
|
791
|
+
.e-gridheader {
|
|
792
|
+
border-top-width: 0;
|
|
812
793
|
}
|
|
813
794
|
|
|
814
|
-
|
|
815
|
-
height: 75px;
|
|
816
|
-
}
|
|
795
|
+
}
|
|
817
796
|
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
797
|
+
.e-edit-form-row {
|
|
798
|
+
height: $gantt-dialog-general-height;
|
|
799
|
+
overflow-y: auto;
|
|
800
|
+
padding-bottom: $gantt-dialog-general-padding-bottom;
|
|
801
|
+
}
|
|
821
802
|
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
803
|
+
.e-edit-form-column:nth-child(odd) {
|
|
804
|
+
float: left;
|
|
805
|
+
padding: $gantt-dialog-edit-form-odd-padding;
|
|
806
|
+
width: 50%;
|
|
807
|
+
}
|
|
825
808
|
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
809
|
+
.e-edit-form-column:nth-child(even) {
|
|
810
|
+
float: left;
|
|
811
|
+
padding: $gantt-dialog-edit-form-even-padding;
|
|
812
|
+
width: 50%;
|
|
813
|
+
}
|
|
831
814
|
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
815
|
+
.e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
816
|
+
padding: $gantt-dialog-edit-form-scroll-padding;
|
|
817
|
+
}
|
|
835
818
|
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
}
|
|
819
|
+
.e-edit-form-column {
|
|
820
|
+
height: 75px;
|
|
821
|
+
}
|
|
840
822
|
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
823
|
+
.e-dependent-div .e-content {
|
|
824
|
+
height: $gantt-dialog-dependent-height;
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
.e-resource-div .e-content {
|
|
828
|
+
height: $gantt-dialog-resource-height;
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
.e-richtexteditor {
|
|
832
|
+
border-bottom-width: $gantt-richtext-border-bottom;
|
|
833
|
+
height: $gantt-dialog-rte-height !important; // sass-lint:disable-line no-important
|
|
834
|
+
overflow: hidden;
|
|
835
|
+
}
|
|
847
836
|
|
|
848
|
-
|
|
849
|
-
|
|
837
|
+
.e-richtexteditor.e-rte-tb-expand {
|
|
838
|
+
border-top: 0;
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
.e-richtexteditor .e-rte-content {
|
|
842
|
+
border-bottom-width: $gantt-richtext-content-border-bottom;
|
|
843
|
+
height: $gantt-dialog-rte-content-height;
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
> .e-dlg-content {
|
|
847
|
+
padding: 0 !important; // sass-lint:disable-line no-important
|
|
848
|
+
@if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
|
|
849
|
+
height: 291px;
|
|
850
850
|
}
|
|
851
|
+
}
|
|
851
852
|
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
853
|
+
.e-dlg-header-content {
|
|
854
|
+
border-bottom: 0 !important; // sass-lint:disable-line no-important
|
|
855
|
+
}
|
|
855
856
|
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
857
|
+
.e-dlg-header-content {
|
|
858
|
+
border-radius: $gantt-dialog-border-radius;
|
|
859
|
+
padding-bottom: $gantt-dialog-padding-bottom;
|
|
860
|
+
|
|
861
|
+
.e-btn.e-dlg-closeicon-btn {
|
|
862
|
+
border-radius: 50%;
|
|
859
863
|
}
|
|
864
|
+
|
|
860
865
|
}
|
|
861
866
|
}
|
|
862
867
|
|
|
@@ -118,7 +118,6 @@ $gantt-timeline-top-header-cell-height: 32px !default;
|
|
|
118
118
|
$gantt-header-border-radius: 0px !default;
|
|
119
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
120
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
-
$gantt-splitter-height: calc(100% - 42px) !important;
|
|
122
121
|
$gantt-dialog-general-padding-bottom: 16px !default;
|
|
123
122
|
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
124
123
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
@@ -118,7 +118,6 @@ $gantt-timeline-top-header-cell-height: 32px !default;
|
|
|
118
118
|
$gantt-header-border-radius: 0px !default;
|
|
119
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
120
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
-
$gantt-splitter-height: calc(100% - 42px) !important;
|
|
122
121
|
$gantt-dialog-general-padding-bottom: 16px !default;
|
|
123
122
|
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
124
123
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
@@ -140,7 +140,6 @@ $gantt-timeline-top-header-cell-height: 24px !default;
|
|
|
140
140
|
$gantt-header-border-radius: 0px !default;
|
|
141
141
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
142
142
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
143
|
-
$gantt-splitter-height: calc(100% - 38px) !important;
|
|
144
143
|
$gantt-dialog-general-padding-bottom: 12px !default;
|
|
145
144
|
$gantt-filter-menu-value-div-padding: 18px !default;
|
|
146
145
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|