@syncfusion/ej2-gantt 20.3.61 → 20.4.40
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/.eslintrc.json +16 -1
- package/CHANGELOG.md +19 -0
- package/README.md +64 -52
- 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 +1522 -511
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +1548 -519
- 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 -23
- package/src/gantt/actions/chart-scroll.d.ts +5 -1
- package/src/gantt/actions/chart-scroll.js +39 -1
- package/src/gantt/actions/connector-line-edit.js +2 -0
- package/src/gantt/actions/context-menu.js +36 -5
- package/src/gantt/actions/critical-path.d.ts +2 -2
- package/src/gantt/actions/critical-path.js +23 -16
- package/src/gantt/actions/dependency.js +5 -2
- package/src/gantt/actions/dialog-edit.js +37 -14
- package/src/gantt/actions/edit.d.ts +1 -0
- package/src/gantt/actions/edit.js +156 -34
- package/src/gantt/actions/excel-export.js +13 -0
- package/src/gantt/actions/filter.js +3 -0
- package/src/gantt/actions/keyboard.js +1 -0
- package/src/gantt/actions/pdf-export.js +12 -0
- package/src/gantt/actions/rowdragdrop.js +8 -2
- package/src/gantt/actions/taskbar-edit.js +140 -43
- package/src/gantt/actions/toolbar.js +21 -1
- package/src/gantt/base/date-processor.js +1 -1
- package/src/gantt/base/gantt-chart.js +31 -3
- package/src/gantt/base/gantt-model.d.ts +25 -2
- package/src/gantt/base/gantt.d.ts +64 -21
- package/src/gantt/base/gantt.js +405 -29
- package/src/gantt/base/interface.d.ts +0 -4
- package/src/gantt/base/splitter.js +12 -2
- package/src/gantt/base/task-processor.js +21 -6
- package/src/gantt/base/tree-grid.js +37 -0
- package/src/gantt/base/utils.js +1 -0
- package/src/gantt/export/pdf-connector-line.js +185 -187
- package/src/gantt/models/loading-indicator-model.d.ts +20 -0
- package/src/gantt/models/loading-indicator.d.ts +18 -0
- package/src/gantt/models/loading-indicator.js +34 -0
- package/src/gantt/models/models.d.ts +2 -0
- package/src/gantt/models/models.js +1 -0
- package/src/gantt/renderer/chart-rows.js +153 -56
- package/src/gantt/renderer/connector-line.js +100 -97
- package/src/gantt/renderer/edit-tooltip.js +22 -3
- package/src/gantt/renderer/event-marker.js +15 -2
- package/src/gantt/renderer/nonworking-day.js +4 -2
- package/src/gantt/renderer/timeline.js +22 -2
- package/src/gantt/renderer/tooltip.js +1 -0
- package/styles/bootstrap-dark.css +179 -12
- package/styles/bootstrap.css +179 -12
- package/styles/bootstrap4.css +179 -11
- package/styles/bootstrap5-dark.css +178 -10
- package/styles/bootstrap5.css +178 -10
- package/styles/fabric-dark.css +179 -12
- package/styles/fabric.css +179 -12
- package/styles/fluent-dark.css +180 -10
- package/styles/fluent.css +180 -10
- package/styles/gantt/_bootstrap-dark-definition.scss +6 -2
- package/styles/gantt/_bootstrap-definition.scss +6 -3
- package/styles/gantt/_bootstrap4-definition.scss +6 -3
- package/styles/gantt/_bootstrap5-definition.scss +6 -3
- package/styles/gantt/_fabric-dark-definition.scss +6 -3
- package/styles/gantt/_fabric-definition.scss +6 -3
- package/styles/gantt/_fluent-definition.scss +6 -3
- package/styles/gantt/_fusionnew-definition.scss +6 -3
- package/styles/gantt/_highcontrast-definition.scss +7 -4
- package/styles/gantt/_highcontrast-light-definition.scss +6 -3
- package/styles/gantt/_layout.scss +234 -21
- package/styles/gantt/_material-dark-definition.scss +6 -3
- package/styles/gantt/_material-definition.scss +6 -3
- package/styles/gantt/_material3-definition.scss +6 -3
- package/styles/gantt/_tailwind-definition.scss +6 -3
- package/styles/gantt/_theme.scss +17 -8
- package/styles/gantt/bootstrap-dark.css +179 -12
- package/styles/gantt/bootstrap.css +179 -12
- package/styles/gantt/bootstrap4.css +179 -11
- package/styles/gantt/bootstrap5-dark.css +178 -10
- package/styles/gantt/bootstrap5.css +178 -10
- package/styles/gantt/fabric-dark.css +179 -12
- package/styles/gantt/fabric.css +179 -12
- package/styles/gantt/fluent-dark.css +180 -10
- package/styles/gantt/fluent.css +180 -10
- package/styles/gantt/highcontrast-light.css +178 -10
- package/styles/gantt/highcontrast.css +179 -12
- package/styles/gantt/icons/_bootstrap-dark.scss +1 -1
- package/styles/gantt/icons/_bootstrap.scss +1 -1
- package/styles/gantt/icons/_fabric-dark.scss +1 -1
- package/styles/gantt/icons/_fabric.scss +1 -1
- package/styles/gantt/icons/_highcontrast.scss +1 -1
- package/styles/gantt/icons/_material-dark.scss +1 -1
- package/styles/gantt/icons/_material.scss +1 -1
- package/styles/gantt/material-dark.css +177 -12
- package/styles/gantt/material.css +179 -12
- package/styles/gantt/tailwind-dark.css +178 -10
- package/styles/gantt/tailwind.css +178 -10
- package/styles/highcontrast-light.css +178 -10
- package/styles/highcontrast.css +179 -12
- package/styles/material-dark.css +177 -12
- package/styles/material.css +179 -12
- package/styles/tailwind-dark.css +178 -10
- package/styles/tailwind.css +178 -10
|
@@ -139,7 +139,7 @@
|
|
|
139
139
|
}
|
|
140
140
|
}
|
|
141
141
|
|
|
142
|
-
.e-columnmenu {
|
|
142
|
+
.e-grid .e-columnmenu {
|
|
143
143
|
@if $skin-name == 'bootstrap5-dark' or $skin-name == 'tailwind-dark' {
|
|
144
144
|
top: 35px;
|
|
145
145
|
}
|
|
@@ -191,11 +191,20 @@
|
|
|
191
191
|
.e-dlg-header-content {
|
|
192
192
|
border-radius: $gantt-bigger-dialog-border-radius;
|
|
193
193
|
padding-bottom: $gantt-dialog-padding-bottom;
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
194
|
+
@if ($skin-name == 'bootstrap-dark') {
|
|
195
|
+
.e-btn.e-dlg-closeicon-btn {
|
|
196
|
+
border-radius: 50%;
|
|
197
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
198
|
+
width: auto;
|
|
199
|
+
box-shadow: none;
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
@else{
|
|
203
|
+
.e-btn.e-dlg-closeicon-btn {
|
|
204
|
+
border-radius: 50%;
|
|
205
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
206
|
+
width: auto;
|
|
207
|
+
}
|
|
199
208
|
}
|
|
200
209
|
}
|
|
201
210
|
|
|
@@ -342,13 +351,94 @@
|
|
|
342
351
|
font-size: $gantt-bigger-predecessor-dialog-font-size;
|
|
343
352
|
font-weight: $gantt-bigger-predecessor-dialog-font-weight;
|
|
344
353
|
line-height: $gantt-bigger-predecessor-dialog-line-height;
|
|
354
|
+
color: $gantt-bigger-tooltip-dialog-text-color;
|
|
345
355
|
@if ($skin-name == 'FluentUI') {
|
|
346
356
|
margin-bottom: 0;
|
|
347
357
|
}
|
|
348
|
-
|
|
349
|
-
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
.e-blazor-gantt-tooltip{
|
|
362
|
+
.e-tip-content{
|
|
363
|
+
overflow-wrap: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
364
|
+
white-space: nowrap !important; /* stylelint-disable-line declaration-no-important */
|
|
365
|
+
word-break: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
|
+
.e-gantt-tooltip{
|
|
369
|
+
.e-tip-content{
|
|
370
|
+
text-align: left !important; /* stylelint-disable-line declaration-no-important */
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
.e-gantt.e-gantt-rtl{
|
|
374
|
+
.e-connector-line-right-arrow {
|
|
375
|
+
border-left: none !important; /* stylelint-disable-line declaration-no-important */
|
|
376
|
+
border-right-color: $connector-line-hover-color;
|
|
377
|
+
}
|
|
378
|
+
.e-connector-line-left-arrow{
|
|
379
|
+
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
380
|
+
border-left-color: $connector-line-hover-color;
|
|
381
|
+
}
|
|
382
|
+
.e-toolbar-right{
|
|
383
|
+
left: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
384
|
+
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
385
|
+
}
|
|
386
|
+
.e-gantt-chart{
|
|
387
|
+
.e-timeline-header-container{
|
|
388
|
+
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
389
|
+
border-left: 1px solid !important; /* stylelint-disable-line declaration-no-important */
|
|
390
|
+
border-left-color: $gantt-header-border-color !important; /* stylelint-disable-line declaration-no-important */
|
|
391
|
+
}
|
|
392
|
+
.e-timeline-top-header-cell{
|
|
393
|
+
.e-gantt-top-cell-text {
|
|
394
|
+
padding-right: 11px !important; /* stylelint-disable-line declaration-no-important */
|
|
395
|
+
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
396
|
+
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
350
397
|
}
|
|
351
398
|
}
|
|
399
|
+
.e-progress-resize-gripper {
|
|
400
|
+
.e-progressbar-handler-element {
|
|
401
|
+
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
402
|
+
}
|
|
403
|
+
.e-progressbar-handler-after{
|
|
404
|
+
right: 1px !important; /* stylelint-disable-line declaration-no-important */
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
.e-connectorpoint-right {
|
|
408
|
+
margin-right: 2px !important; /* stylelint-disable-line declaration-no-important */
|
|
409
|
+
}
|
|
410
|
+
.e-event-markers{
|
|
411
|
+
.e-gantt-right-arrow{
|
|
412
|
+
border-left: 5px solid;
|
|
413
|
+
border-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
.e-holiday {
|
|
417
|
+
.e-span {
|
|
418
|
+
transform: rotate(90deg) !important; /* stylelint-disable-line declaration-no-important */
|
|
419
|
+
}
|
|
420
|
+
}
|
|
421
|
+
.e-left-label-container {
|
|
422
|
+
padding-left: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
423
|
+
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
424
|
+
}
|
|
425
|
+
.e-right-label-container {
|
|
426
|
+
margin-right: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
427
|
+
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
.e-gantt-rtl{
|
|
432
|
+
.e-gantt-tooltip-label{
|
|
433
|
+
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
434
|
+
}
|
|
435
|
+
.e-tip-content{
|
|
436
|
+
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
.e-gantt-dialog.e-rtl{
|
|
440
|
+
.e-dlg-closeicon-btn{
|
|
441
|
+
padding: 4px 8px !important; /* stylelint-disable-line declaration-no-important */
|
|
352
442
|
}
|
|
353
443
|
}
|
|
354
444
|
|
|
@@ -485,6 +575,7 @@
|
|
|
485
575
|
border-top-style: none;
|
|
486
576
|
border-top-width: 0;
|
|
487
577
|
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
578
|
+
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
488
579
|
}
|
|
489
580
|
|
|
490
581
|
.e-columnheader,
|
|
@@ -496,6 +587,10 @@
|
|
|
496
587
|
overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
|
|
497
588
|
}
|
|
498
589
|
|
|
590
|
+
.e-gridcontent .e-gantt-frozen {
|
|
591
|
+
overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
592
|
+
}
|
|
593
|
+
|
|
499
594
|
.e-gridcontent .e-content.e-gantt-scroll-padding {
|
|
500
595
|
width: calc(100% + 17px);
|
|
501
596
|
}
|
|
@@ -519,6 +614,13 @@
|
|
|
519
614
|
position: relative;
|
|
520
615
|
width: 100%;
|
|
521
616
|
|
|
617
|
+
.e-chart-empty-row {
|
|
618
|
+
border: .5px solid;
|
|
619
|
+
position: absolute;
|
|
620
|
+
background-color: $gantt-empty-taskbar-background-color;
|
|
621
|
+
border-color: $gantt-empty-taskbar-border-color;
|
|
622
|
+
}
|
|
623
|
+
|
|
522
624
|
.e-chart-root-container {
|
|
523
625
|
border-right: 0 solid;
|
|
524
626
|
|
|
@@ -801,6 +903,101 @@
|
|
|
801
903
|
line-height: initial;
|
|
802
904
|
}
|
|
803
905
|
|
|
906
|
+
.e-masked-tbody {
|
|
907
|
+
table-layout: fixed;
|
|
908
|
+
width: 100%;
|
|
909
|
+
}
|
|
910
|
+
|
|
911
|
+
.e-div-background {
|
|
912
|
+
border-color: $gantt-masked-table-background-color;
|
|
913
|
+
border-right-style: solid;
|
|
914
|
+
border-right-width: 1px;
|
|
915
|
+
height: 100%;
|
|
916
|
+
position: absolute;
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
.e-innerHTML {
|
|
920
|
+
height: 16px;
|
|
921
|
+
width: 16px;
|
|
922
|
+
left: 14px;
|
|
923
|
+
background: $gantt-masked-table-background-color;
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
.e-innerHTML1 {
|
|
927
|
+
height: 16px;
|
|
928
|
+
width: 16px;
|
|
929
|
+
left: 30px;
|
|
930
|
+
background: $gantt-masked-table-background-color;
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
.e-innerHTML2 {
|
|
934
|
+
height: 16px;
|
|
935
|
+
width: 16px;
|
|
936
|
+
left: 60px;
|
|
937
|
+
background: $gantt-masked-table-background-color;
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
.e-timelineHeader {
|
|
941
|
+
height: 16px;
|
|
942
|
+
width: 82px;
|
|
943
|
+
left: 20px;
|
|
944
|
+
background: $gantt-masked-table-background-color;
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
.e-maskcell01 {
|
|
948
|
+
height: 12px;
|
|
949
|
+
width: 88px;
|
|
950
|
+
left: 14px;
|
|
951
|
+
border-radius: 0;
|
|
952
|
+
background: $gantt-masked-table-background-color;
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
.e-maskcell02 {
|
|
956
|
+
height: 18px;
|
|
957
|
+
width: 410px;
|
|
958
|
+
border-radius: 0;
|
|
959
|
+
background: $gantt-masked-table-background-color;
|
|
960
|
+
}
|
|
961
|
+
|
|
962
|
+
.e-maskcell03 {
|
|
963
|
+
height: 12px;
|
|
964
|
+
width: 88px;
|
|
965
|
+
left: 14px;
|
|
966
|
+
border-radius: 0;
|
|
967
|
+
background: $gantt-masked-table-background-color;
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
.e-maskcell04 {
|
|
971
|
+
height: 18px;
|
|
972
|
+
width: 208px;
|
|
973
|
+
border-radius: 0;
|
|
974
|
+
background: $gantt-masked-table-background-color;
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
.e-maskcell05 {
|
|
978
|
+
height: 12px;
|
|
979
|
+
width: 108px;
|
|
980
|
+
left: 64px;
|
|
981
|
+
border-radius: 0;
|
|
982
|
+
background: $gantt-masked-table-background-color;
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
.e-maskcell06 {
|
|
986
|
+
height: 18px;
|
|
987
|
+
width: 195px;
|
|
988
|
+
left: 192px;
|
|
989
|
+
border-radius: 0;
|
|
990
|
+
background: $gantt-masked-table-background-color;
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
.e-maskcell07 {
|
|
994
|
+
height: 18px;
|
|
995
|
+
width: 156px;
|
|
996
|
+
left: 388px;
|
|
997
|
+
border-radius: 0;
|
|
998
|
+
background: $gantt-masked-table-background-color;
|
|
999
|
+
}
|
|
1000
|
+
|
|
804
1001
|
.e-taskbar-left-resizer,
|
|
805
1002
|
.e-taskbar-right-resizer {
|
|
806
1003
|
display: inline-block;
|
|
@@ -838,7 +1035,7 @@
|
|
|
838
1035
|
border-right: 7px solid transparent;
|
|
839
1036
|
cursor: col-resize;
|
|
840
1037
|
height: 0;
|
|
841
|
-
left:
|
|
1038
|
+
left: 1px;
|
|
842
1039
|
position: absolute;
|
|
843
1040
|
top: -7px;
|
|
844
1041
|
width: 0;
|
|
@@ -851,7 +1048,7 @@
|
|
|
851
1048
|
border-right: 6px solid transparent;
|
|
852
1049
|
cursor: col-resize;
|
|
853
1050
|
height: 0;
|
|
854
|
-
left:
|
|
1051
|
+
left: 2px;
|
|
855
1052
|
position: absolute;
|
|
856
1053
|
top: -7px;
|
|
857
1054
|
width: 0;
|
|
@@ -960,7 +1157,6 @@
|
|
|
960
1157
|
border-radius: 3px;
|
|
961
1158
|
font-weight: 500;
|
|
962
1159
|
height: $event-marker-label-height;
|
|
963
|
-
left: 5px;
|
|
964
1160
|
line-height: $event-marker-line-height;
|
|
965
1161
|
padding: $event-marker-label-padding;
|
|
966
1162
|
position: absolute;
|
|
@@ -1105,8 +1301,17 @@
|
|
|
1105
1301
|
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1106
1302
|
padding-left: $gantt-dialog-tab-padding-left;
|
|
1107
1303
|
|
|
1108
|
-
|
|
1109
|
-
|
|
1304
|
+
@if ($skin-name == 'FluentUI'){
|
|
1305
|
+
.e-indicator {
|
|
1306
|
+
display: block;
|
|
1307
|
+
bottom: 1px;
|
|
1308
|
+
height: 3px;
|
|
1309
|
+
}
|
|
1310
|
+
}
|
|
1311
|
+
@else{
|
|
1312
|
+
.e-indicator {
|
|
1313
|
+
display: block;
|
|
1314
|
+
}
|
|
1110
1315
|
}
|
|
1111
1316
|
|
|
1112
1317
|
.e-toolbar-item .e-tab-wrap {
|
|
@@ -1213,11 +1418,21 @@
|
|
|
1213
1418
|
.e-dlg-header-content {
|
|
1214
1419
|
border-radius: $gantt-dialog-border-radius;
|
|
1215
1420
|
padding-bottom: $gantt-dialog-padding-bottom;
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1421
|
+
|
|
1422
|
+
@if ($skin-name == 'bootstrap-dark'){
|
|
1423
|
+
.e-btn.e-dlg-closeicon-btn {
|
|
1424
|
+
border-radius: 50%;
|
|
1425
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1426
|
+
width: auto;
|
|
1427
|
+
box-shadow: none;
|
|
1428
|
+
}
|
|
1429
|
+
}
|
|
1430
|
+
@else{
|
|
1431
|
+
.e-btn.e-dlg-closeicon-btn {
|
|
1432
|
+
border-radius: 50%;
|
|
1433
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1434
|
+
width: auto;
|
|
1435
|
+
}
|
|
1221
1436
|
}
|
|
1222
1437
|
}
|
|
1223
1438
|
}
|
|
@@ -1436,12 +1651,10 @@
|
|
|
1436
1651
|
font-size: $gantt-bigger-predecessor-dialog-font-size;
|
|
1437
1652
|
font-weight: $gantt-bigger-predecessor-dialog-font-weight;
|
|
1438
1653
|
line-height: $gantt-bigger-predecessor-dialog-line-height;
|
|
1654
|
+
color: $gantt-bigger-tooltip-dialog-text-color;
|
|
1439
1655
|
@if ($skin-name == 'FluentUI') {
|
|
1440
1656
|
margin-bottom: 0;
|
|
1441
1657
|
}
|
|
1442
|
-
@if ($skin-name == 'bootstrap-dark' or $skin-name == 'fabric-dark' or $theme-name == 'material-dark') {
|
|
1443
|
-
color: $gantt-bigger-tooltip-button-color;
|
|
1444
|
-
}
|
|
1445
1658
|
}
|
|
1446
1659
|
}
|
|
1447
1660
|
}
|
|
@@ -32,7 +32,8 @@ $gantt-connector-point-margin-top: 7.5px !default;
|
|
|
32
32
|
$gantt-connector-point-margin-radius: 4px !default;
|
|
33
33
|
$gantt-connector-point-left: 8px !default;
|
|
34
34
|
$gantt-unscheduled-taskbar-left: 3px !default;
|
|
35
|
-
$gantt-unscheduled-taskbar-
|
|
35
|
+
$gantt-unscheduled-taskbar-straight-radius: 2px !default;
|
|
36
|
+
$gantt-unscheduled-taskbar-curved-radius: 0 !default;
|
|
36
37
|
$gantt-label-size: 13px !default;
|
|
37
38
|
$gantt-header-border-spacing: 0 !default;
|
|
38
39
|
$gantt-line-container-cell-border-color: $grey-700 !default;
|
|
@@ -48,6 +49,8 @@ $gantt-child-progress-bar: lighten($primary, 15%) !default;
|
|
|
48
49
|
$gantt-critical-child-progress-bar: #D13438 !default;
|
|
49
50
|
$gantt-child-progress-bar-border: 0px !default;
|
|
50
51
|
$gantt-child-progress-bar-border-radious:4px;
|
|
52
|
+
$gantt-empty-taskbar-background-color: rgba(0,120,222,.15);
|
|
53
|
+
$gantt-empty-taskbar-border-color: rgba(0,120,222,.65) !important;
|
|
51
54
|
$gantt-child-task-bar-border: 1px solid lighten($primary, 15%) !default;
|
|
52
55
|
$gantt-critical-child-task-bar-border: 1px solid #F3D8DA !default;
|
|
53
56
|
$gantt-manualchild-task-bar: #8dd1c4;
|
|
@@ -64,8 +67,6 @@ $gantt-critical-milestone-border-color: #d13438 !default;
|
|
|
64
67
|
$gantt-parent-milestone-border-color: #4cc7ba !default;
|
|
65
68
|
$gantt-parent-progress-bar-border: 0px !default;
|
|
66
69
|
$gantt-parent-task-bar-border: 1px solid #4cc7ba !default;
|
|
67
|
-
$gantt-progress-bar-left-radius: 2px !default;
|
|
68
|
-
$gantt-unscheduled-taskbar-left-radius: 0px !default;
|
|
69
70
|
$gantt-connector-point-right-margin-left: 2px !default;
|
|
70
71
|
$gantt-right-label-container-margin-left: 25px !default;
|
|
71
72
|
$gantt-task-label-font-size: 12px !default;
|
|
@@ -90,6 +91,7 @@ $gantt-bigger-predecessor-dialog-line-height: 1.46 !default;
|
|
|
90
91
|
$gantt-bigger-tooltip-button-color: $grey-black;
|
|
91
92
|
$gantt-bigger-tooltip-dialog-color: #f3f3f3;
|
|
92
93
|
$gantt-bigger-tooltip-button-text-color: $grey-white;
|
|
94
|
+
$gantt-bigger-tooltip-dialog-text-color: $grey-black;
|
|
93
95
|
$gantt-bigger-tooltip-disabled-button-color: $grey-600 !important;
|
|
94
96
|
$gantt-bigger-dialog-edit-form-odd-padding: 16px 9px 0 16px !default;
|
|
95
97
|
$gantt-bigger-dialog-edit-form-even-padding: 16px 16px 0 9px !default;
|
|
@@ -210,3 +212,4 @@ $rangecontainer-border-color: #FC7A05;
|
|
|
210
212
|
$gantt-range-container-arc-radius: 2px !default;
|
|
211
213
|
$gantt-active-background-color: #a9a9a9;
|
|
212
214
|
$bigger-column-menu-size: 38px !default;
|
|
215
|
+
$gantt-masked-table-background-color: #e1dfdd;
|
|
@@ -32,7 +32,8 @@ $gantt-connector-point-margin-top: 7.5px !default;
|
|
|
32
32
|
$gantt-connector-point-margin-radius: 4px !default;
|
|
33
33
|
$gantt-connector-point-left: 8px !default;
|
|
34
34
|
$gantt-unscheduled-taskbar-left: 3px !default;
|
|
35
|
-
$gantt-unscheduled-taskbar-
|
|
35
|
+
$gantt-unscheduled-taskbar-straight-radius: 2px !default;
|
|
36
|
+
$gantt-unscheduled-taskbar-curved-radius: 0 !default;
|
|
36
37
|
$gantt-label-size: 13px !default;
|
|
37
38
|
$gantt-header-border-spacing: 0 !default;
|
|
38
39
|
$gantt-line-container-cell-border-color: $grey-300 !default;
|
|
@@ -48,6 +49,8 @@ $gantt-child-progress-bar: $primary !default;
|
|
|
48
49
|
$gantt-critical-child-progress-bar: #D13438 !default;
|
|
49
50
|
$gantt-child-progress-bar-border: 0px !default;
|
|
50
51
|
$gantt-child-progress-bar-border-radious:4px;
|
|
52
|
+
$gantt-empty-taskbar-background-color: rgba(0,120,222,.15);
|
|
53
|
+
$gantt-empty-taskbar-border-color: rgba(0,120,222,.65) !important;
|
|
51
54
|
$gantt-child-task-bar-border: 1px solid $primary !default;
|
|
52
55
|
$gantt-critical-child-task-bar-border: 1px solid #F3D8DA !default;
|
|
53
56
|
$gantt-manualchild-task-bar: rgba(#008786, .85) !default;
|
|
@@ -64,8 +67,6 @@ $gantt-critical-milestone-border-color: #D13438 !default;
|
|
|
64
67
|
$gantt-parent-milestone-border-color: $grey-700 !default;
|
|
65
68
|
$gantt-parent-progress-bar-border: 0px !default;
|
|
66
69
|
$gantt-parent-task-bar-border: 1px solid $grey-700 !default;
|
|
67
|
-
$gantt-progress-bar-left-radius: 2px !default;
|
|
68
|
-
$gantt-unscheduled-taskbar-left-radius: 0px !default;
|
|
69
70
|
$gantt-connector-point-right-margin-left: 2px !default;
|
|
70
71
|
$gantt-right-label-container-margin-left: 25px !default;
|
|
71
72
|
$gantt-task-label-font-size: 12px !default;
|
|
@@ -90,6 +91,7 @@ $gantt-bigger-predecessor-dialog-line-height: 1.46 !default;
|
|
|
90
91
|
$gantt-bigger-tooltip-button-color: $grey-black;
|
|
91
92
|
$gantt-bigger-tooltip-dialog-color: #f3f3f3;
|
|
92
93
|
$gantt-bigger-tooltip-button-text-color: $grey-white;
|
|
94
|
+
$gantt-bigger-tooltip-dialog-text-color: $grey-black;
|
|
93
95
|
$gantt-bigger-tooltip-disabled-button-color: $grey-600 !important;
|
|
94
96
|
$gantt-bigger-dialog-edit-form-odd-padding: 16px 9px 0 16px !default;
|
|
95
97
|
$gantt-bigger-dialog-edit-form-even-padding: 16px 16px 0 9px !default;
|
|
@@ -210,3 +212,4 @@ $gantt-collapse-progress-width: 0px !important;
|
|
|
210
212
|
$rangecontainer-border-color: #FC7A05;
|
|
211
213
|
$gantt-range-container-arc-radius: 2px !default;
|
|
212
214
|
$bigger-column-menu-size: 38px !default;
|
|
215
|
+
$gantt-masked-table-background-color: #e1dfdd;
|
|
@@ -48,6 +48,8 @@ $gantt-parent-progress-bar: $content-bg-color-alt5 !default;
|
|
|
48
48
|
$gantt-milestone-border-color: $content-bg-color-alt5 !default;
|
|
49
49
|
$gantt-critical-milestone-border-color: $danger !default;
|
|
50
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;
|
|
51
53
|
$gantt-label-font-color: $content-text-color-alt2 !default;
|
|
52
54
|
$gantt-task-label-font-color: $primary-text-color !default;
|
|
53
55
|
$gantt-tab-header-active-font-color: $primary !default;
|
|
@@ -99,7 +101,8 @@ $gantt-connector-point-margin-top: 7.5px !default;
|
|
|
99
101
|
$gantt-connector-point-margin-radius: 4px !default;
|
|
100
102
|
$gantt-connector-point-left: 8px !default;
|
|
101
103
|
$gantt-unscheduled-taskbar-left: 3px !default;
|
|
102
|
-
$gantt-unscheduled-taskbar-
|
|
104
|
+
$gantt-unscheduled-taskbar-straight-radius: 2px !default;
|
|
105
|
+
$gantt-unscheduled-taskbar-curved-radius: 0 !default;
|
|
103
106
|
$gantt-label-size: 13px !default;
|
|
104
107
|
$gantt-header-border-spacing: 0 !default;
|
|
105
108
|
$gantt-child-progress-bar-border: 0px !default;
|
|
@@ -108,8 +111,6 @@ $gantt-child-task-bar-border: 1px solid $primary !default;
|
|
|
108
111
|
$gantt-manualchild-progress-bar-border: 0px !default;
|
|
109
112
|
$gantt-parent-progress-bar-border: 0px !default;
|
|
110
113
|
$gantt-parent-task-bar-border: 1px solid $border-dark !default;
|
|
111
|
-
$gantt-progress-bar-left-radius: 2px !default;
|
|
112
|
-
$gantt-unscheduled-taskbar-left-radius: 0px !default;
|
|
113
114
|
$gantt-connector-point-right-margin-left: 2px !default;
|
|
114
115
|
$gantt-right-label-container-margin-left: 25px !default;
|
|
115
116
|
$gantt-task-label-font-size: 12px !default;
|
|
@@ -124,6 +125,7 @@ $gantt-dialog-edit-form-scroll-padding: 12px 18px 0 0 !default;
|
|
|
124
125
|
$gantt-bigger-tooltip-button-color: $warning-text;
|
|
125
126
|
$gantt-bigger-tooltip-dialog-color: $content-bg-color-alt1;
|
|
126
127
|
$gantt-bigger-tooltip-button-text-color: $toooltip-text-color;
|
|
128
|
+
$gantt-bigger-tooltip-dialog-text-color: $warning-text;
|
|
127
129
|
$gantt-bigger-tooltip-disabled-button-color: $content-bg-color-alt5 !important;
|
|
128
130
|
$gantt-bigger-dialog-edit-form-odd-padding: 16px 12px 0 16px !default;
|
|
129
131
|
$gantt-bigger-dialog-edit-form-even-padding: 16px 16px 0 12px !default;
|
|
@@ -213,3 +215,4 @@ $grid-active-container-border: 0 0 0 1px $border inset !default;
|
|
|
213
215
|
$gantt-collapse-progress-width: 0px !important;
|
|
214
216
|
$gantt-range-container-arc-radius: 2px !default;
|
|
215
217
|
$bigger-column-menu-size: 35px !default;
|
|
218
|
+
$gantt-masked-table-background-color: rgb(225,223,221);
|
|
@@ -48,6 +48,8 @@ $gantt-milestone-border-color: $content-bg-color-alt5 !default;
|
|
|
48
48
|
$gantt-critical-milestone-border-color: $danger !default;
|
|
49
49
|
$gantt-parent-milestone-border-color: $content-bg-color-alt5 !default;
|
|
50
50
|
$gantt-label-font-color: $content-text-color-alt2 !default;
|
|
51
|
+
$gantt-empty-taskbar-background-color: rgba(0,120,222,.15);
|
|
52
|
+
$gantt-empty-taskbar-border-color: rgba(0,120,222,.65) !important;
|
|
51
53
|
$gantt-task-label-font-color: $primary-text-color !default;
|
|
52
54
|
$gantt-tab-header-active-font-color: $primary !default;
|
|
53
55
|
$gantt-tab-header-font-color: $content-text-color-alt2 !default;
|
|
@@ -97,7 +99,8 @@ $gantt-connector-point-margin-top: 7.5px !default;
|
|
|
97
99
|
$gantt-connector-point-margin-radius: 4px !default;
|
|
98
100
|
$gantt-connector-point-left: 8px !default;
|
|
99
101
|
$gantt-unscheduled-taskbar-left: 3px !default;
|
|
100
|
-
$gantt-unscheduled-taskbar-
|
|
102
|
+
$gantt-unscheduled-taskbar-straight-radius: 2px !default;
|
|
103
|
+
$gantt-unscheduled-taskbar-curved-radius: 0 !default;
|
|
101
104
|
$gantt-label-size: $text-sm !default;
|
|
102
105
|
$gantt-header-border-spacing: 0 !default;
|
|
103
106
|
$gantt-child-progress-bar-border: 0px !default;
|
|
@@ -106,8 +109,6 @@ $gantt-child-task-bar-border: 1px solid $primary !default;
|
|
|
106
109
|
$gantt-manualchild-progress-bar-border: 0px !default;
|
|
107
110
|
$gantt-parent-progress-bar-border: 0px !default;
|
|
108
111
|
$gantt-parent-task-bar-border: 1px solid $border-dark !default;
|
|
109
|
-
$gantt-progress-bar-left-radius: 2px !default;
|
|
110
|
-
$gantt-unscheduled-taskbar-left-radius: 0px !default;
|
|
111
112
|
$gantt-connector-point-right-margin-left: 2px !default;
|
|
112
113
|
$gantt-right-label-container-margin-left: 25px !default;
|
|
113
114
|
$gantt-task-label-font-size: $text-xs !default;
|
|
@@ -126,6 +127,7 @@ $gantt-bigger-predecessor-dialog-line-height: 1.8 !default;
|
|
|
126
127
|
$gantt-bigger-tooltip-button-color: $black;
|
|
127
128
|
$gantt-bigger-tooltip-dialog-color: $content-bg-color-alt1;
|
|
128
129
|
$gantt-bigger-tooltip-button-text-color: $white;
|
|
130
|
+
$gantt-bigger-tooltip-dialog-text-color: $content-text-color;
|
|
129
131
|
$gantt-bigger-tooltip-disabled-button-color: $content-bg-color-alt5 !important;
|
|
130
132
|
$gantt-bigger-dialog-edit-form-odd-padding: 16px 8px 0 24px !default;
|
|
131
133
|
$gantt-bigger-dialog-edit-form-even-padding: 16px 24px 0 8px !default;
|
|
@@ -213,3 +215,4 @@ $grid-active-container-border: 0 0 0 1px $border inset !default;
|
|
|
213
215
|
$gantt-collapse-progress-width: 0px !important;
|
|
214
216
|
$gantt-range-container-arc-radius: 1px !default;
|
|
215
217
|
$bigger-column-menu-size: 35px !default;
|
|
218
|
+
$gantt-masked-table-background-color: rgb(225,223,221);
|
package/styles/gantt/_theme.scss
CHANGED
|
@@ -73,6 +73,7 @@
|
|
|
73
73
|
border-bottom-color: $gantt-header-border-color;
|
|
74
74
|
border-bottom-width: $gantt-header-border-bottom-width;
|
|
75
75
|
border-right-color: $gantt-header-border-color;
|
|
76
|
+
border-left-color: $gantt-header-border-color;
|
|
76
77
|
color: $gantt-header-color;
|
|
77
78
|
height: $gantt-header-border-height;
|
|
78
79
|
}
|
|
@@ -127,7 +128,7 @@
|
|
|
127
128
|
|
|
128
129
|
.e-gantt-child-taskbar-inner-div {
|
|
129
130
|
background-color: $gantt-child-task-bar;
|
|
130
|
-
|
|
131
|
+
outline: $gantt-child-task-bar-border;
|
|
131
132
|
border-radius: $gantt-parent-progress-bar-border-radius;
|
|
132
133
|
}
|
|
133
134
|
|
|
@@ -157,7 +158,7 @@
|
|
|
157
158
|
|
|
158
159
|
.e-gantt-parent-taskbar-inner-div {
|
|
159
160
|
background-color: $gantt-parent-task-bar;
|
|
160
|
-
|
|
161
|
+
outline: $gantt-parent-task-bar-border;
|
|
161
162
|
border-radius: $gantt-parent-progress-bar-border-radius;
|
|
162
163
|
}
|
|
163
164
|
|
|
@@ -231,6 +232,7 @@
|
|
|
231
232
|
|
|
232
233
|
.e-gantt-right-arrow {
|
|
233
234
|
border-right-color: $event-marker-label-color;
|
|
235
|
+
border-left-color: $event-marker-label-color !important; /* stylelint-disable-line declaration-no-important */
|
|
234
236
|
}
|
|
235
237
|
}
|
|
236
238
|
|
|
@@ -352,15 +354,17 @@
|
|
|
352
354
|
}
|
|
353
355
|
|
|
354
356
|
.e-gantt-unscheduled-taskbar-right {
|
|
355
|
-
border-
|
|
356
|
-
border-bottom-
|
|
357
|
-
border-top-
|
|
358
|
-
border-
|
|
357
|
+
border-top-left-radius: $gantt-unscheduled-taskbar-curved-radius;
|
|
358
|
+
border-bottom-left-radius: $gantt-unscheduled-taskbar-curved-radius;
|
|
359
|
+
border-top-right-radius: $gantt-unscheduled-taskbar-straight-radius;
|
|
360
|
+
border-bottom-right-radius: $gantt-unscheduled-taskbar-straight-radius;
|
|
359
361
|
}
|
|
360
362
|
|
|
361
363
|
.e-gantt-unscheduled-taskbar-left {
|
|
362
|
-
border-bottom-left-radius: $gantt-
|
|
363
|
-
border-top-left-radius: $gantt-
|
|
364
|
+
border-bottom-left-radius: $gantt-unscheduled-taskbar-straight-radius;
|
|
365
|
+
border-top-left-radius: $gantt-unscheduled-taskbar-straight-radius;
|
|
366
|
+
border-bottom-right-radius: $gantt-unscheduled-taskbar-curved-radius;
|
|
367
|
+
border-top-right-radius: $gantt-unscheduled-taskbar-curved-radius;
|
|
364
368
|
}
|
|
365
369
|
|
|
366
370
|
.e-task-label {
|
|
@@ -571,6 +575,11 @@
|
|
|
571
575
|
|
|
572
576
|
.e-gantt-dialog {
|
|
573
577
|
|
|
578
|
+
.e-dlg-content{
|
|
579
|
+
.e-rte-quick-popup.e-hide{
|
|
580
|
+
border: none !important; /* stylelint-disable-line declaration-no-important */
|
|
581
|
+
}
|
|
582
|
+
}
|
|
574
583
|
.e-dlg-header {
|
|
575
584
|
color: $gantt-dialog-header-font-color;
|
|
576
585
|
}
|