@syncfusion/ej2-vue-gantt 20.1.48 → 20.1.50

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.
Files changed (56) hide show
  1. package/CHANGELOG.md +31 -0
  2. package/dist/ej2-vue-gantt.umd.min.js +1 -1
  3. package/dist/es6/ej2-vue-gantt.es2015.js +221 -15
  4. package/dist/es6/ej2-vue-gantt.es2015.js.map +1 -1
  5. package/dist/es6/ej2-vue-gantt.es5.js +150 -15
  6. package/dist/es6/ej2-vue-gantt.es5.js.map +1 -1
  7. package/dist/global/ej2-vue-gantt.min.js +2 -2
  8. package/package.json +8 -14
  9. package/src/gantt/adddialogfields.directive.d.ts +3 -1
  10. package/src/gantt/adddialogfields.directive.js +24 -2
  11. package/src/gantt/columns.directive.d.ts +3 -1
  12. package/src/gantt/columns.directive.js +24 -2
  13. package/src/gantt/dayworkingtime.directive.d.ts +3 -1
  14. package/src/gantt/dayworkingtime.directive.js +24 -2
  15. package/src/gantt/editdialogfields.directive.d.ts +3 -1
  16. package/src/gantt/editdialogfields.directive.js +24 -2
  17. package/src/gantt/eventmarkers.directive.d.ts +3 -1
  18. package/src/gantt/eventmarkers.directive.js +24 -2
  19. package/src/gantt/gantt.component.d.ts +1 -0
  20. package/src/gantt/gantt.component.js +10 -1
  21. package/src/gantt/holidays.directive.d.ts +3 -1
  22. package/src/gantt/holidays.directive.js +24 -2
  23. package/styles/bootstrap-dark.css +37 -10
  24. package/styles/bootstrap.css +37 -10
  25. package/styles/bootstrap4.css +37 -10
  26. package/styles/bootstrap5-dark.css +53 -19
  27. package/styles/bootstrap5.css +53 -19
  28. package/styles/fabric-dark.css +34 -7
  29. package/styles/fabric.css +37 -10
  30. package/styles/fluent-dark.css +1942 -0
  31. package/styles/fluent-dark.scss +1 -0
  32. package/styles/fluent.css +1942 -0
  33. package/styles/fluent.scss +1 -0
  34. package/styles/gantt/bootstrap-dark.css +37 -10
  35. package/styles/gantt/bootstrap.css +37 -10
  36. package/styles/gantt/bootstrap4.css +37 -10
  37. package/styles/gantt/bootstrap5-dark.css +53 -19
  38. package/styles/gantt/bootstrap5.css +53 -19
  39. package/styles/gantt/fabric-dark.css +34 -7
  40. package/styles/gantt/fabric.css +37 -10
  41. package/styles/gantt/fluent-dark.css +1942 -0
  42. package/styles/gantt/fluent-dark.scss +1 -0
  43. package/styles/gantt/fluent.css +1942 -0
  44. package/styles/gantt/fluent.scss +1 -0
  45. package/styles/gantt/highcontrast-light.css +34 -7
  46. package/styles/gantt/highcontrast.css +34 -7
  47. package/styles/gantt/material-dark.css +37 -10
  48. package/styles/gantt/material.css +37 -10
  49. package/styles/gantt/tailwind-dark.css +70 -99
  50. package/styles/gantt/tailwind.css +70 -99
  51. package/styles/highcontrast-light.css +34 -7
  52. package/styles/highcontrast.css +34 -7
  53. package/styles/material-dark.css +37 -10
  54. package/styles/material.css +37 -10
  55. package/styles/tailwind-dark.css +70 -99
  56. package/styles/tailwind.css +70 -99
@@ -0,0 +1 @@
1
+ @import 'gantt/fluent.scss';
@@ -276,6 +276,34 @@
276
276
  content: '\e903';
277
277
  }
278
278
 
279
+ .e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
280
+ height: 64px;
281
+ }
282
+
283
+ .e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
284
+ height: 32px;
285
+ }
286
+
287
+ .e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
288
+ height: 63px !important;
289
+ }
290
+
291
+ .e-bigger .e-columnmenu {
292
+ top: 40px;
293
+ }
294
+
295
+ .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
296
+ padding: 16px 18px 0 18px;
297
+ }
298
+
299
+ .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(even) {
300
+ padding: 16px 18px 0 0;
301
+ }
302
+
303
+ .e-bigger .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
304
+ padding: 16px 18px 0 0;
305
+ }
306
+
279
307
  .e-gantt {
280
308
  display: block;
281
309
  width: 100%;
@@ -790,9 +818,10 @@
790
818
  }
791
819
 
792
820
  .e-gantt .e-gantt-chart .e-baseline-bar {
821
+ border-radius: 2px;
793
822
  box-sizing: border-box;
794
823
  position: absolute;
795
- z-index: 3;
824
+ z-index: 2;
796
825
  }
797
826
 
798
827
  .e-gantt .e-gantt-chart .e-milestone-top,
@@ -854,7 +883,6 @@
854
883
  }
855
884
 
856
885
  .e-gantt .e-gantt-chart .e-holiday .e-span {
857
- font-size: 13px;
858
886
  position: absolute;
859
887
  transform: rotate(-90deg);
860
888
  white-space: nowrap;
@@ -1137,6 +1165,8 @@
1137
1165
 
1138
1166
  .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1139
1167
  border-radius: 50%;
1168
+ height: auto !important;
1169
+ width: auto !important;
1140
1170
  }
1141
1171
 
1142
1172
  .e-icon-rowselect::before {
@@ -1445,11 +1475,13 @@
1445
1475
  .e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
1446
1476
  background-color: #4cc7ba;
1447
1477
  border: 1px solid #4cc7ba;
1478
+ border-radius: 4px;
1448
1479
  }
1449
1480
 
1450
1481
  .e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
1451
1482
  background-color: #0070f0;
1452
1483
  border: 1px solid #0070f0;
1484
+ border-radius: 4px;
1453
1485
  }
1454
1486
 
1455
1487
  .e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
@@ -1520,11 +1552,6 @@
1520
1552
 
1521
1553
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
1522
1554
  background: #222;
1523
- border-color: #fff;
1524
- }
1525
-
1526
- .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
1527
- border-bottom-color: #fff;
1528
1555
  }
1529
1556
 
1530
1557
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
@@ -1688,15 +1715,15 @@
1688
1715
  }
1689
1716
 
1690
1717
  .e-gantt .e-gantt-chart .e-baseline-bar {
1691
- background-color: #f0ad4e;
1718
+ background-color: #fac168;
1692
1719
  }
1693
1720
 
1694
1721
  .e-gantt .e-gantt-chart .e-baseline-milestone-top {
1695
- border-bottom-color: #f0ad4e;
1722
+ border-bottom-color: #fac168;
1696
1723
  }
1697
1724
 
1698
1725
  .e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
1699
- border-top-color: #f0ad4e;
1726
+ border-top-color: #fac168;
1700
1727
  }
1701
1728
 
1702
1729
  .e-gantt .e-gantt-chart .e-uptail::before {
@@ -426,6 +426,34 @@
426
426
  content: '\e903';
427
427
  }
428
428
 
429
+ .e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
430
+ height: 64px;
431
+ }
432
+
433
+ .e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
434
+ height: 32px;
435
+ }
436
+
437
+ .e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
438
+ height: 63px !important;
439
+ }
440
+
441
+ .e-bigger .e-columnmenu {
442
+ top: 40px;
443
+ }
444
+
445
+ .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
446
+ padding: 16px 18px 0 18px;
447
+ }
448
+
449
+ .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(even) {
450
+ padding: 16px 18px 0 0;
451
+ }
452
+
453
+ .e-bigger .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
454
+ padding: 16px 18px 0 0;
455
+ }
456
+
429
457
  .e-gantt {
430
458
  display: block;
431
459
  width: 100%;
@@ -940,9 +968,10 @@
940
968
  }
941
969
 
942
970
  .e-gantt .e-gantt-chart .e-baseline-bar {
971
+ border-radius: 2px;
943
972
  box-sizing: border-box;
944
973
  position: absolute;
945
- z-index: 3;
974
+ z-index: 2;
946
975
  }
947
976
 
948
977
  .e-gantt .e-gantt-chart .e-milestone-top,
@@ -1004,7 +1033,6 @@
1004
1033
  }
1005
1034
 
1006
1035
  .e-gantt .e-gantt-chart .e-holiday .e-span {
1007
- font-size: 13px;
1008
1036
  position: absolute;
1009
1037
  transform: rotate(-90deg);
1010
1038
  white-space: nowrap;
@@ -1287,6 +1315,8 @@
1287
1315
 
1288
1316
  .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1289
1317
  border-radius: 50%;
1318
+ height: auto !important;
1319
+ width: auto !important;
1290
1320
  }
1291
1321
 
1292
1322
  .e-icon-rowselect::before {
@@ -1595,11 +1625,13 @@
1595
1625
  .e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
1596
1626
  background-color: #555;
1597
1627
  border: 1px solid #555;
1628
+ border-radius: 4px;
1598
1629
  }
1599
1630
 
1600
1631
  .e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
1601
1632
  background-color: #21527d;
1602
1633
  border: 1px solid #21527d;
1634
+ border-radius: 4px;
1603
1635
  }
1604
1636
 
1605
1637
  .e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
@@ -1670,11 +1702,6 @@
1670
1702
 
1671
1703
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
1672
1704
  background: #222;
1673
- border-color: #fff;
1674
- }
1675
-
1676
- .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
1677
- border-bottom-color: #fff;
1678
1705
  }
1679
1706
 
1680
1707
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
@@ -1838,15 +1865,15 @@
1838
1865
  }
1839
1866
 
1840
1867
  .e-gantt .e-gantt-chart .e-baseline-bar {
1841
- background-color: #FF9800;
1868
+ background-color: #f0ad4e;
1842
1869
  }
1843
1870
 
1844
1871
  .e-gantt .e-gantt-chart .e-baseline-milestone-top {
1845
- border-bottom-color: #FF9800;
1872
+ border-bottom-color: #f0ad4e;
1846
1873
  }
1847
1874
 
1848
1875
  .e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
1849
- border-top-color: #FF9800;
1876
+ border-top-color: #f0ad4e;
1850
1877
  }
1851
1878
 
1852
1879
  .e-gantt .e-gantt-chart .e-uptail::before {
@@ -643,6 +643,34 @@
643
643
  content: '\e903';
644
644
  }
645
645
 
646
+ .e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
647
+ height: 64px;
648
+ }
649
+
650
+ .e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
651
+ height: 32px;
652
+ }
653
+
654
+ .e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
655
+ height: 63px !important;
656
+ }
657
+
658
+ .e-bigger .e-columnmenu {
659
+ top: 38px;
660
+ }
661
+
662
+ .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
663
+ padding: 16px 18px 0 18px;
664
+ }
665
+
666
+ .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(even) {
667
+ padding: 16px 18px 0 0;
668
+ }
669
+
670
+ .e-bigger .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
671
+ padding: 16px 18px 0 0;
672
+ }
673
+
646
674
  .e-gantt {
647
675
  display: block;
648
676
  width: 100%;
@@ -1157,9 +1185,10 @@
1157
1185
  }
1158
1186
 
1159
1187
  .e-gantt .e-gantt-chart .e-baseline-bar {
1188
+ border-radius: 2px;
1160
1189
  box-sizing: border-box;
1161
1190
  position: absolute;
1162
- z-index: 3;
1191
+ z-index: 2;
1163
1192
  }
1164
1193
 
1165
1194
  .e-gantt .e-gantt-chart .e-milestone-top,
@@ -1221,7 +1250,6 @@
1221
1250
  }
1222
1251
 
1223
1252
  .e-gantt .e-gantt-chart .e-holiday .e-span {
1224
- font-size: 13px;
1225
1253
  position: absolute;
1226
1254
  transform: rotate(-90deg);
1227
1255
  white-space: nowrap;
@@ -1504,6 +1532,8 @@
1504
1532
 
1505
1533
  .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1506
1534
  border-radius: 50%;
1535
+ height: auto !important;
1536
+ width: auto !important;
1507
1537
  }
1508
1538
 
1509
1539
  .e-icon-rowselect::before {
@@ -1812,11 +1842,13 @@
1812
1842
  .e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
1813
1843
  background-color: #495057;
1814
1844
  border: 0px;
1845
+ border-radius: 4px;
1815
1846
  }
1816
1847
 
1817
1848
  .e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
1818
1849
  background-color: #0056b3;
1819
1850
  border: 0px;
1851
+ border-radius: 4px;
1820
1852
  }
1821
1853
 
1822
1854
  .e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
@@ -1887,11 +1919,6 @@
1887
1919
 
1888
1920
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
1889
1921
  background: #222;
1890
- border-color: #fff;
1891
- }
1892
-
1893
- .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
1894
- border-bottom-color: #fff;
1895
1922
  }
1896
1923
 
1897
1924
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
@@ -2055,15 +2082,15 @@
2055
2082
  }
2056
2083
 
2057
2084
  .e-gantt .e-gantt-chart .e-baseline-bar {
2058
- background-color: #fd7e14;
2085
+ background-color: #ffc107;
2059
2086
  }
2060
2087
 
2061
2088
  .e-gantt .e-gantt-chart .e-baseline-milestone-top {
2062
- border-bottom-color: #fd7e14;
2089
+ border-bottom-color: #ffc107;
2063
2090
  }
2064
2091
 
2065
2092
  .e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
2066
- border-top-color: #fd7e14;
2093
+ border-top-color: #ffc107;
2067
2094
  }
2068
2095
 
2069
2096
  .e-gantt .e-gantt-chart .e-uptail::before {
@@ -89,6 +89,13 @@
89
89
  color: #adb5bd;
90
90
  }
91
91
 
92
+ .e-input-group.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
93
+ .e-input-group.e-control-wrapper.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
94
+ .e-float-input.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
95
+ .e-float-input.e-control-wrapper.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon {
96
+ background: #343a40;
97
+ }
98
+
92
99
  .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon,
93
100
  .e-input-group.e-disabled.e-ddl .e-control.e-dropdownlist ~ .e-input-group-icon,
94
101
  .e-control.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
@@ -151,7 +158,7 @@
151
158
  }
152
159
 
153
160
  .e-multiselect .e-input-group-icon.e-ddl-icon {
154
- border-radius: 0 4px 4px 0;
161
+ border-radius: 0 2px 2px 0;
155
162
  border-right-width: 0;
156
163
  }
157
164
 
@@ -310,6 +317,34 @@
310
317
  content: '\e770';
311
318
  }
312
319
 
320
+ .e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
321
+ height: 64px;
322
+ }
323
+
324
+ .e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
325
+ height: 32px;
326
+ }
327
+
328
+ .e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
329
+ height: 63px !important;
330
+ }
331
+
332
+ .e-bigger .e-columnmenu {
333
+ top: 35px;
334
+ }
335
+
336
+ .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
337
+ padding: 16px 18px 0 18px;
338
+ }
339
+
340
+ .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(even) {
341
+ padding: 16px 18px 0 0;
342
+ }
343
+
344
+ .e-bigger .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
345
+ padding: 16px 18px 0 0;
346
+ }
347
+
313
348
  .e-gantt {
314
349
  display: block;
315
350
  width: 100%;
@@ -447,7 +482,7 @@
447
482
 
448
483
  .e-gantt .e-gantt-tree-grid-pane .e-columnheader,
449
484
  .e-gantt .e-gantt-tree-grid-pane .e-headercell {
450
- height: 63px !important;
485
+ height: 51px !important;
451
486
  }
452
487
 
453
488
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
@@ -824,9 +859,10 @@
824
859
  }
825
860
 
826
861
  .e-gantt .e-gantt-chart .e-baseline-bar {
862
+ border-radius: 2px;
827
863
  box-sizing: border-box;
828
864
  position: absolute;
829
- z-index: 3;
865
+ z-index: 2;
830
866
  }
831
867
 
832
868
  .e-gantt .e-gantt-chart .e-milestone-top,
@@ -888,7 +924,6 @@
888
924
  }
889
925
 
890
926
  .e-gantt .e-gantt-chart .e-holiday .e-span {
891
- font-size: 13px;
892
927
  position: absolute;
893
928
  transform: rotate(-90deg);
894
929
  white-space: nowrap;
@@ -1115,18 +1150,18 @@
1115
1150
 
1116
1151
  .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
1117
1152
  float: left;
1118
- padding: 16px 18px 0 18px;
1153
+ padding: 12px 18px 0 18px;
1119
1154
  width: 50%;
1120
1155
  }
1121
1156
 
1122
1157
  .e-gantt-dialog .e-edit-form-column:nth-child(even) {
1123
1158
  float: left;
1124
- padding: 16px 16px 0 0;
1159
+ padding: 12px 18px 0 0;
1125
1160
  width: 50%;
1126
1161
  }
1127
1162
 
1128
1163
  .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
1129
- padding: 16px 16px 0 0;
1164
+ padding: 12px 18px 0 0;
1130
1165
  }
1131
1166
 
1132
1167
  .e-gantt-dialog .e-edit-form-column {
@@ -1166,11 +1201,13 @@
1166
1201
 
1167
1202
  .e-gantt-dialog .e-dlg-header-content {
1168
1203
  border-radius: 3px 3px 0px 0px;
1169
- padding-bottom: 20px;
1204
+ padding-bottom: 12px;
1170
1205
  }
1171
1206
 
1172
1207
  .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1173
1208
  border-radius: 50%;
1209
+ height: auto !important;
1210
+ width: auto !important;
1174
1211
  }
1175
1212
 
1176
1213
  .e-icon-rowselect::before {
@@ -1248,7 +1285,7 @@
1248
1285
 
1249
1286
  .e-gantt.e-device .e-edit-form-column:nth-child(odd), .e-gantt.e-device .e-edit-form-column:nth-child(even) {
1250
1287
  float: none;
1251
- padding: 16px 18px 0 18px;
1288
+ padding: 12px 18px 0 18px;
1252
1289
  width: 100%;
1253
1290
  }
1254
1291
 
@@ -1391,7 +1428,7 @@
1391
1428
  border-bottom-width: 1px;
1392
1429
  border-right-color: #444c54;
1393
1430
  color: #fff;
1394
- height: 64px;
1431
+ height: 52px;
1395
1432
  }
1396
1433
 
1397
1434
  .e-gantt .e-gantt-chart .e-timeline-top-header-cell,
@@ -1410,7 +1447,7 @@
1410
1447
  }
1411
1448
 
1412
1449
  .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
1413
- height: 32px;
1450
+ height: 26px;
1414
1451
  }
1415
1452
 
1416
1453
  .e-gantt .e-gantt-chart .e-chart-root-container {
@@ -1479,11 +1516,13 @@
1479
1516
  .e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
1480
1517
  background-color: #adb5bd;
1481
1518
  border: 0px;
1519
+ border-radius: 4px;
1482
1520
  }
1483
1521
 
1484
1522
  .e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
1485
1523
  background-color: #0d6efd;
1486
1524
  border: 0px;
1525
+ border-radius: 4px;
1487
1526
  }
1488
1527
 
1489
1528
  .e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
@@ -1554,11 +1593,6 @@
1554
1593
 
1555
1594
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
1556
1595
  background: #fff;
1557
- border-color: #fff;
1558
- }
1559
-
1560
- .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
1561
- border-bottom-color: #fff;
1562
1596
  }
1563
1597
 
1564
1598
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
@@ -1722,15 +1756,15 @@
1722
1756
  }
1723
1757
 
1724
1758
  .e-gantt .e-gantt-chart .e-baseline-bar {
1725
- background-color: #adb5bd;
1759
+ background-color: #ffc107;
1726
1760
  }
1727
1761
 
1728
1762
  .e-gantt .e-gantt-chart .e-baseline-milestone-top {
1729
- border-bottom-color: #adb5bd;
1763
+ border-bottom-color: #ffc107;
1730
1764
  }
1731
1765
 
1732
1766
  .e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
1733
- border-top-color: #adb5bd;
1767
+ border-top-color: #ffc107;
1734
1768
  }
1735
1769
 
1736
1770
  .e-gantt .e-gantt-chart .e-uptail::before {
@@ -89,6 +89,13 @@
89
89
  color: #6c757d;
90
90
  }
91
91
 
92
+ .e-input-group.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
93
+ .e-input-group.e-control-wrapper.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
94
+ .e-float-input.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
95
+ .e-float-input.e-control-wrapper.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon {
96
+ background: #e9ecef;
97
+ }
98
+
92
99
  .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon,
93
100
  .e-input-group.e-disabled.e-ddl .e-control.e-dropdownlist ~ .e-input-group-icon,
94
101
  .e-control.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
@@ -151,7 +158,7 @@
151
158
  }
152
159
 
153
160
  .e-multiselect .e-input-group-icon.e-ddl-icon {
154
- border-radius: 0 4px 4px 0;
161
+ border-radius: 0 2px 2px 0;
155
162
  border-right-width: 0;
156
163
  }
157
164
 
@@ -310,6 +317,34 @@
310
317
  content: '\e770';
311
318
  }
312
319
 
320
+ .e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
321
+ height: 64px;
322
+ }
323
+
324
+ .e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
325
+ height: 32px;
326
+ }
327
+
328
+ .e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
329
+ height: 63px !important;
330
+ }
331
+
332
+ .e-bigger .e-columnmenu {
333
+ top: 35px;
334
+ }
335
+
336
+ .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
337
+ padding: 16px 18px 0 18px;
338
+ }
339
+
340
+ .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(even) {
341
+ padding: 16px 18px 0 0;
342
+ }
343
+
344
+ .e-bigger .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
345
+ padding: 16px 18px 0 0;
346
+ }
347
+
313
348
  .e-gantt {
314
349
  display: block;
315
350
  width: 100%;
@@ -447,7 +482,7 @@
447
482
 
448
483
  .e-gantt .e-gantt-tree-grid-pane .e-columnheader,
449
484
  .e-gantt .e-gantt-tree-grid-pane .e-headercell {
450
- height: 63px !important;
485
+ height: 51px !important;
451
486
  }
452
487
 
453
488
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
@@ -824,9 +859,10 @@
824
859
  }
825
860
 
826
861
  .e-gantt .e-gantt-chart .e-baseline-bar {
862
+ border-radius: 2px;
827
863
  box-sizing: border-box;
828
864
  position: absolute;
829
- z-index: 3;
865
+ z-index: 2;
830
866
  }
831
867
 
832
868
  .e-gantt .e-gantt-chart .e-milestone-top,
@@ -888,7 +924,6 @@
888
924
  }
889
925
 
890
926
  .e-gantt .e-gantt-chart .e-holiday .e-span {
891
- font-size: 13px;
892
927
  position: absolute;
893
928
  transform: rotate(-90deg);
894
929
  white-space: nowrap;
@@ -1115,18 +1150,18 @@
1115
1150
 
1116
1151
  .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
1117
1152
  float: left;
1118
- padding: 16px 18px 0 18px;
1153
+ padding: 12px 18px 0 18px;
1119
1154
  width: 50%;
1120
1155
  }
1121
1156
 
1122
1157
  .e-gantt-dialog .e-edit-form-column:nth-child(even) {
1123
1158
  float: left;
1124
- padding: 16px 16px 0 0;
1159
+ padding: 12px 18px 0 0;
1125
1160
  width: 50%;
1126
1161
  }
1127
1162
 
1128
1163
  .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
1129
- padding: 16px 16px 0 0;
1164
+ padding: 12px 18px 0 0;
1130
1165
  }
1131
1166
 
1132
1167
  .e-gantt-dialog .e-edit-form-column {
@@ -1166,11 +1201,13 @@
1166
1201
 
1167
1202
  .e-gantt-dialog .e-dlg-header-content {
1168
1203
  border-radius: 3px 3px 0px 0px;
1169
- padding-bottom: 20px;
1204
+ padding-bottom: 12px;
1170
1205
  }
1171
1206
 
1172
1207
  .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1173
1208
  border-radius: 50%;
1209
+ height: auto !important;
1210
+ width: auto !important;
1174
1211
  }
1175
1212
 
1176
1213
  .e-icon-rowselect::before {
@@ -1248,7 +1285,7 @@
1248
1285
 
1249
1286
  .e-gantt.e-device .e-edit-form-column:nth-child(odd), .e-gantt.e-device .e-edit-form-column:nth-child(even) {
1250
1287
  float: none;
1251
- padding: 16px 18px 0 18px;
1288
+ padding: 12px 18px 0 18px;
1252
1289
  width: 100%;
1253
1290
  }
1254
1291
 
@@ -1391,7 +1428,7 @@
1391
1428
  border-bottom-width: 1px;
1392
1429
  border-right-color: #dee2e6;
1393
1430
  color: #212529;
1394
- height: 64px;
1431
+ height: 52px;
1395
1432
  }
1396
1433
 
1397
1434
  .e-gantt .e-gantt-chart .e-timeline-top-header-cell,
@@ -1410,7 +1447,7 @@
1410
1447
  }
1411
1448
 
1412
1449
  .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
1413
- height: 32px;
1450
+ height: 26px;
1414
1451
  }
1415
1452
 
1416
1453
  .e-gantt .e-gantt-chart .e-chart-root-container {
@@ -1479,11 +1516,13 @@
1479
1516
  .e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
1480
1517
  background-color: #adb5bd;
1481
1518
  border: 0px;
1519
+ border-radius: 4px;
1482
1520
  }
1483
1521
 
1484
1522
  .e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
1485
1523
  background-color: #0d6efd;
1486
1524
  border: 0px;
1525
+ border-radius: 4px;
1487
1526
  }
1488
1527
 
1489
1528
  .e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
@@ -1554,11 +1593,6 @@
1554
1593
 
1555
1594
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
1556
1595
  background: #212529;
1557
- border-color: #fff;
1558
- }
1559
-
1560
- .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
1561
- border-bottom-color: #fff;
1562
1596
  }
1563
1597
 
1564
1598
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
@@ -1722,15 +1756,15 @@
1722
1756
  }
1723
1757
 
1724
1758
  .e-gantt .e-gantt-chart .e-baseline-bar {
1725
- background-color: #adb5bd;
1759
+ background-color: #ffc107;
1726
1760
  }
1727
1761
 
1728
1762
  .e-gantt .e-gantt-chart .e-baseline-milestone-top {
1729
- border-bottom-color: #adb5bd;
1763
+ border-bottom-color: #ffc107;
1730
1764
  }
1731
1765
 
1732
1766
  .e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
1733
- border-top-color: #adb5bd;
1767
+ border-top-color: #ffc107;
1734
1768
  }
1735
1769
 
1736
1770
  .e-gantt .e-gantt-chart .e-uptail::before {