@syncfusion/ej2-angular-gantt 20.4.38-ngcc → 20.4.38
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/esm2020/public_api.mjs +3 -0
- package/esm2020/src/gantt/adddialogfields.directive.mjs +58 -0
- package/esm2020/src/gantt/columns.directive.mjs +72 -0
- package/esm2020/src/gantt/dayworkingtime.directive.mjs +58 -0
- package/esm2020/src/gantt/editdialogfields.directive.mjs +58 -0
- package/esm2020/src/gantt/eventmarkers.directive.mjs +57 -0
- package/esm2020/src/gantt/gantt-all.module.mjs +71 -0
- package/esm2020/src/gantt/gantt.component.mjs +255 -0
- package/esm2020/src/gantt/gantt.module.mjs +79 -0
- package/esm2020/src/gantt/holidays.directive.mjs +58 -0
- package/esm2020/src/index.mjs +11 -0
- package/esm2020/syncfusion-ej2-angular-gantt.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-gantt.mjs +734 -0
- package/fesm2015/syncfusion-ej2-angular-gantt.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-gantt.mjs +734 -0
- package/fesm2020/syncfusion-ej2-angular-gantt.mjs.map +1 -0
- package/package.json +27 -13
- package/schematics/utils/lib-details.d.ts +2 -2
- package/src/gantt/adddialogfields.directive.d.ts +5 -0
- package/src/gantt/columns.directive.d.ts +5 -0
- package/src/gantt/dayworkingtime.directive.d.ts +5 -0
- package/src/gantt/editdialogfields.directive.d.ts +5 -0
- package/src/gantt/eventmarkers.directive.d.ts +5 -0
- package/src/gantt/gantt-all.module.d.ts +6 -0
- package/src/gantt/gantt.component.d.ts +3 -0
- package/src/gantt/gantt.module.d.ts +12 -0
- package/src/gantt/holidays.directive.d.ts +5 -0
- package/styles/bootstrap-dark.css +14 -182
- package/styles/bootstrap.css +14 -182
- package/styles/bootstrap4.css +13 -182
- package/styles/bootstrap5-dark.css +12 -181
- package/styles/bootstrap5.css +12 -181
- package/styles/fabric-dark.css +14 -182
- package/styles/fabric.css +14 -182
- package/styles/fluent-dark.css +12 -183
- package/styles/fluent.css +12 -183
- package/styles/gantt/_all.scss +2 -0
- package/styles/gantt/_bootstrap-dark-definition.scss +210 -0
- package/styles/gantt/_bootstrap-definition.scss +211 -0
- package/styles/gantt/_bootstrap4-definition.scss +213 -0
- package/styles/gantt/_bootstrap5-dark-definition.scss +1 -0
- package/styles/gantt/_bootstrap5-definition.scss +215 -0
- package/styles/gantt/_fabric-dark-definition.scss +211 -0
- package/styles/gantt/_fabric-definition.scss +211 -0
- package/styles/gantt/_fluent-dark-definition.scss +1 -0
- package/styles/gantt/_fluent-definition.scss +215 -0
- package/styles/gantt/_fusionnew-definition.scss +214 -0
- package/styles/gantt/_highcontrast-definition.scss +211 -0
- package/styles/gantt/_highcontrast-light-definition.scss +211 -0
- package/styles/gantt/_layout.scss +1446 -0
- package/styles/gantt/_material-dark-definition.scss +212 -0
- package/styles/gantt/_material-definition.scss +212 -0
- package/styles/gantt/_material3-definition.scss +215 -0
- package/styles/gantt/_tailwind-dark-definition.scss +1 -0
- package/styles/gantt/_tailwind-definition.scss +215 -0
- package/styles/gantt/_theme.scss +702 -0
- package/styles/gantt/bootstrap-dark.css +14 -182
- package/styles/gantt/bootstrap-dark.scss +22 -1
- package/styles/gantt/bootstrap.css +14 -182
- package/styles/gantt/bootstrap.scss +22 -1
- package/styles/gantt/bootstrap4.css +13 -182
- package/styles/gantt/bootstrap4.scss +22 -1
- package/styles/gantt/bootstrap5-dark.css +12 -181
- package/styles/gantt/bootstrap5-dark.scss +22 -1
- package/styles/gantt/bootstrap5.css +12 -181
- package/styles/gantt/bootstrap5.scss +22 -1
- package/styles/gantt/fabric-dark.css +14 -182
- package/styles/gantt/fabric-dark.scss +22 -1
- package/styles/gantt/fabric.css +14 -182
- package/styles/gantt/fabric.scss +22 -1
- package/styles/gantt/fluent-dark.css +12 -183
- package/styles/gantt/fluent-dark.scss +22 -1
- package/styles/gantt/fluent.css +12 -183
- package/styles/gantt/fluent.scss +22 -1
- package/styles/gantt/highcontrast-light.css +12 -181
- package/styles/gantt/highcontrast-light.scss +21 -1
- package/styles/gantt/highcontrast.css +14 -182
- package/styles/gantt/highcontrast.scss +22 -1
- package/styles/gantt/icons/_bootstrap-dark.scss +124 -0
- package/styles/gantt/icons/_bootstrap.scss +124 -0
- package/styles/gantt/icons/_bootstrap4.scss +124 -0
- package/styles/gantt/icons/_bootstrap5-dark.scss +1 -0
- package/styles/gantt/icons/_bootstrap5.scss +124 -0
- package/styles/gantt/icons/_fabric-dark.scss +124 -0
- package/styles/gantt/icons/_fabric.scss +124 -0
- package/styles/gantt/icons/_fluent-dark.scss +1 -0
- package/styles/gantt/icons/_fluent.scss +124 -0
- package/styles/gantt/icons/_fusionnew.scss +120 -0
- package/styles/gantt/icons/_highcontrast.scss +124 -0
- package/styles/gantt/icons/_material-dark.scss +124 -0
- package/styles/gantt/icons/_material.scss +124 -0
- package/styles/gantt/icons/_material3.scss +124 -0
- package/styles/gantt/icons/_tailwind-dark.scss +124 -0
- package/styles/gantt/icons/_tailwind.scss +124 -0
- package/styles/gantt/material-dark.css +14 -180
- package/styles/gantt/material-dark.scss +22 -1
- package/styles/gantt/material.css +14 -182
- package/styles/gantt/material.scss +22 -1
- package/styles/gantt/tailwind-dark.css +12 -181
- package/styles/gantt/tailwind-dark.scss +22 -1
- package/styles/gantt/tailwind.css +12 -181
- package/styles/gantt/tailwind.scss +22 -1
- package/styles/highcontrast-light.css +12 -181
- package/styles/highcontrast.css +14 -182
- package/styles/material-dark.css +14 -180
- package/styles/material.css +14 -182
- package/styles/tailwind-dark.css +12 -181
- package/styles/tailwind.css +12 -181
- package/{ej2-angular-gantt.d.ts → syncfusion-ej2-angular-gantt.d.ts} +1 -1
- package/@syncfusion/ej2-angular-gantt.es5.js +0 -812
- package/@syncfusion/ej2-angular-gantt.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-gantt.js +0 -764
- package/@syncfusion/ej2-angular-gantt.js.map +0 -1
- package/CHANGELOG.md +0 -1505
- package/dist/ej2-angular-gantt.umd.js +0 -909
- package/dist/ej2-angular-gantt.umd.js.map +0 -1
- package/dist/ej2-angular-gantt.umd.min.js +0 -11
- package/dist/ej2-angular-gantt.umd.min.js.map +0 -1
- package/ej2-angular-gantt.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
|
@@ -1 +1,22 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap-definition.scss';
|
|
2
|
+
@import 'ej2-grids/styles/grid/bootstrap-definition.scss';
|
|
3
|
+
@import 'ej2-treegrid/styles/treegrid/bootstrap-definition.scss';
|
|
4
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/bootstrap-definition.scss';
|
|
5
|
+
@import 'ej2-calendars/styles/datepicker/bootstrap-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/datetimepicker/bootstrap-definition.scss';
|
|
7
|
+
@import 'ej2-buttons/styles/button/bootstrap-definition.scss';
|
|
8
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/combo-box/bootstrap-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/bootstrap-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/toolbar/bootstrap-definition.scss';
|
|
12
|
+
@import 'ej2-navigations/styles/tab/bootstrap-definition.scss';
|
|
13
|
+
@import 'ej2-navigations/styles/context-menu/bootstrap-definition.scss';
|
|
14
|
+
@import 'ej2-inputs/styles/input/bootstrap-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/numerictextbox/bootstrap-definition.scss';
|
|
16
|
+
@import 'ej2-popups/styles/dialog/bootstrap-definition.scss';
|
|
17
|
+
@import 'ej2-popups/styles/spinner/bootstrap-definition.scss';
|
|
18
|
+
@import 'ej2-popups/styles/tooltip/bootstrap-definition.scss';
|
|
19
|
+
@import 'ej2-layouts/styles/splitter/bootstrap-definition.scss';
|
|
20
|
+
@import 'bootstrap-definition.scss';
|
|
21
|
+
@import 'icons/bootstrap.scss';
|
|
22
|
+
@import 'all.scss';
|
|
@@ -414,7 +414,7 @@
|
|
|
414
414
|
|
|
415
415
|
.e-bigger .e-multi-select-wrapper .e-chips-close {
|
|
416
416
|
height: 30px;
|
|
417
|
-
width:
|
|
417
|
+
width: 30px;
|
|
418
418
|
}
|
|
419
419
|
|
|
420
420
|
.e-popup.e-multi-select-list-wrapper .e-list-item.e-active.e-item-focus.e-hover {
|
|
@@ -666,7 +666,7 @@
|
|
|
666
666
|
border-radius: 6px !important;
|
|
667
667
|
padding: 32px 16px 16px !important;
|
|
668
668
|
}
|
|
669
|
-
.e-bigger .e-
|
|
669
|
+
.e-bigger .e-columnmenu {
|
|
670
670
|
top: 38px;
|
|
671
671
|
}
|
|
672
672
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
@@ -794,75 +794,6 @@
|
|
|
794
794
|
font-size: 12px;
|
|
795
795
|
font-weight: 400;
|
|
796
796
|
line-height: 1.8;
|
|
797
|
-
color: #000;
|
|
798
|
-
}
|
|
799
|
-
|
|
800
|
-
.e-blazor-gantt-tooltip .e-tip-content {
|
|
801
|
-
overflow-wrap: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
802
|
-
white-space: nowrap !important; /* stylelint-disable-line declaration-no-important */
|
|
803
|
-
word-break: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
804
|
-
}
|
|
805
|
-
|
|
806
|
-
.e-gantt-tooltip .e-tip-content {
|
|
807
|
-
text-align: left !important; /* stylelint-disable-line declaration-no-important */
|
|
808
|
-
}
|
|
809
|
-
|
|
810
|
-
.e-gantt.e-gantt-rtl .e-connector-line-right-arrow {
|
|
811
|
-
border-left: none !important; /* stylelint-disable-line declaration-no-important */
|
|
812
|
-
border-right-color: #0056b3;
|
|
813
|
-
}
|
|
814
|
-
.e-gantt.e-gantt-rtl .e-connector-line-left-arrow {
|
|
815
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
816
|
-
border-left-color: #0056b3;
|
|
817
|
-
}
|
|
818
|
-
.e-gantt.e-gantt-rtl .e-toolbar-right {
|
|
819
|
-
left: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
820
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
821
|
-
}
|
|
822
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-header-container {
|
|
823
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
824
|
-
border-left: 1px solid !important; /* stylelint-disable-line declaration-no-important */
|
|
825
|
-
border-left-color: #dee2e6 !important; /* stylelint-disable-line declaration-no-important */
|
|
826
|
-
}
|
|
827
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text {
|
|
828
|
-
padding-right: 11px !important; /* stylelint-disable-line declaration-no-important */
|
|
829
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
830
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
831
|
-
}
|
|
832
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
833
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
834
|
-
}
|
|
835
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
836
|
-
right: 1px !important; /* stylelint-disable-line declaration-no-important */
|
|
837
|
-
}
|
|
838
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-connectorpoint-right {
|
|
839
|
-
margin-right: 2px !important; /* stylelint-disable-line declaration-no-important */
|
|
840
|
-
}
|
|
841
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
842
|
-
border-left: 5px solid;
|
|
843
|
-
border-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
844
|
-
}
|
|
845
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-holiday .e-span {
|
|
846
|
-
transform: rotate(90deg) !important; /* stylelint-disable-line declaration-no-important */
|
|
847
|
-
}
|
|
848
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-left-label-container {
|
|
849
|
-
padding-left: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
850
|
-
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
851
|
-
}
|
|
852
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-right-label-container {
|
|
853
|
-
margin-right: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
854
|
-
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
855
|
-
}
|
|
856
|
-
|
|
857
|
-
.e-gantt-rtl .e-gantt-tooltip-label {
|
|
858
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
859
|
-
}
|
|
860
|
-
.e-gantt-rtl .e-tip-content {
|
|
861
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
862
|
-
}
|
|
863
|
-
|
|
864
|
-
.e-gantt-dialog.e-rtl .e-dlg-closeicon-btn {
|
|
865
|
-
padding: 4px 8px !important; /* stylelint-disable-line declaration-no-important */
|
|
866
797
|
}
|
|
867
798
|
|
|
868
799
|
.e-gantt {
|
|
@@ -974,7 +905,6 @@
|
|
|
974
905
|
border-top-style: none;
|
|
975
906
|
border-top-width: 0;
|
|
976
907
|
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
977
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
978
908
|
}
|
|
979
909
|
.e-gantt .e-gantt-tree-grid-pane .e-columnheader,
|
|
980
910
|
.e-gantt .e-gantt-tree-grid-pane .e-headercell {
|
|
@@ -983,9 +913,6 @@
|
|
|
983
913
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
|
|
984
914
|
overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
|
|
985
915
|
}
|
|
986
|
-
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
|
|
987
|
-
overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
988
|
-
}
|
|
989
916
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
|
|
990
917
|
width: calc(100% + 17px);
|
|
991
918
|
}
|
|
@@ -1005,12 +932,6 @@
|
|
|
1005
932
|
position: relative;
|
|
1006
933
|
width: 100%;
|
|
1007
934
|
}
|
|
1008
|
-
.e-gantt .e-gantt-chart .e-chart-empty-row {
|
|
1009
|
-
border: 0.5px solid;
|
|
1010
|
-
position: absolute;
|
|
1011
|
-
background-color: rgba(0, 120, 222, 0.15);
|
|
1012
|
-
border-color: rgba(0, 120, 222, 0.65) !important;
|
|
1013
|
-
}
|
|
1014
935
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
|
1015
936
|
border-right: 0 solid;
|
|
1016
937
|
}
|
|
@@ -1105,10 +1026,10 @@
|
|
|
1105
1026
|
box-sizing: border-box;
|
|
1106
1027
|
}
|
|
1107
1028
|
.e-gantt .e-gantt-chart .e-zero-spacing {
|
|
1108
|
-
border-spacing: 0
|
|
1029
|
+
border-spacing: 0;
|
|
1109
1030
|
}
|
|
1110
1031
|
.e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
|
|
1111
|
-
border-top:
|
|
1032
|
+
border-top-color: transparent;
|
|
1112
1033
|
}
|
|
1113
1034
|
.e-gantt .e-gantt-chart .e-chart-row .e-chart-row-border {
|
|
1114
1035
|
border-collapse: separate;
|
|
@@ -1259,88 +1180,6 @@
|
|
|
1259
1180
|
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
1260
1181
|
line-height: initial;
|
|
1261
1182
|
}
|
|
1262
|
-
.e-gantt .e-gantt-chart .e-masked-tbody {
|
|
1263
|
-
table-layout: fixed;
|
|
1264
|
-
width: 100%;
|
|
1265
|
-
}
|
|
1266
|
-
.e-gantt .e-gantt-chart .e-div-background {
|
|
1267
|
-
border-color: #e1dfdd;
|
|
1268
|
-
border-right-style: solid;
|
|
1269
|
-
border-right-width: 1px;
|
|
1270
|
-
height: 100%;
|
|
1271
|
-
position: absolute;
|
|
1272
|
-
}
|
|
1273
|
-
.e-gantt .e-gantt-chart .e-innerHTML {
|
|
1274
|
-
height: 16px;
|
|
1275
|
-
width: 16px;
|
|
1276
|
-
left: 14px;
|
|
1277
|
-
background: #e1dfdd;
|
|
1278
|
-
}
|
|
1279
|
-
.e-gantt .e-gantt-chart .e-innerHTML1 {
|
|
1280
|
-
height: 16px;
|
|
1281
|
-
width: 16px;
|
|
1282
|
-
left: 30px;
|
|
1283
|
-
background: #e1dfdd;
|
|
1284
|
-
}
|
|
1285
|
-
.e-gantt .e-gantt-chart .e-innerHTML2 {
|
|
1286
|
-
height: 16px;
|
|
1287
|
-
width: 16px;
|
|
1288
|
-
left: 60px;
|
|
1289
|
-
background: #e1dfdd;
|
|
1290
|
-
}
|
|
1291
|
-
.e-gantt .e-gantt-chart .e-timelineHeader {
|
|
1292
|
-
height: 16px;
|
|
1293
|
-
width: 82px;
|
|
1294
|
-
left: 20px;
|
|
1295
|
-
background: #e1dfdd;
|
|
1296
|
-
}
|
|
1297
|
-
.e-gantt .e-gantt-chart .e-maskcell01 {
|
|
1298
|
-
height: 12px;
|
|
1299
|
-
width: 88px;
|
|
1300
|
-
left: 14px;
|
|
1301
|
-
border-radius: 0;
|
|
1302
|
-
background: #e1dfdd;
|
|
1303
|
-
}
|
|
1304
|
-
.e-gantt .e-gantt-chart .e-maskcell02 {
|
|
1305
|
-
height: 18px;
|
|
1306
|
-
width: 410px;
|
|
1307
|
-
border-radius: 0;
|
|
1308
|
-
background: #e1dfdd;
|
|
1309
|
-
}
|
|
1310
|
-
.e-gantt .e-gantt-chart .e-maskcell03 {
|
|
1311
|
-
height: 12px;
|
|
1312
|
-
width: 88px;
|
|
1313
|
-
left: 14px;
|
|
1314
|
-
border-radius: 0;
|
|
1315
|
-
background: #e1dfdd;
|
|
1316
|
-
}
|
|
1317
|
-
.e-gantt .e-gantt-chart .e-maskcell04 {
|
|
1318
|
-
height: 18px;
|
|
1319
|
-
width: 208px;
|
|
1320
|
-
border-radius: 0;
|
|
1321
|
-
background: #e1dfdd;
|
|
1322
|
-
}
|
|
1323
|
-
.e-gantt .e-gantt-chart .e-maskcell05 {
|
|
1324
|
-
height: 12px;
|
|
1325
|
-
width: 108px;
|
|
1326
|
-
left: 64px;
|
|
1327
|
-
border-radius: 0;
|
|
1328
|
-
background: #e1dfdd;
|
|
1329
|
-
}
|
|
1330
|
-
.e-gantt .e-gantt-chart .e-maskcell06 {
|
|
1331
|
-
height: 18px;
|
|
1332
|
-
width: 195px;
|
|
1333
|
-
left: 192px;
|
|
1334
|
-
border-radius: 0;
|
|
1335
|
-
background: #e1dfdd;
|
|
1336
|
-
}
|
|
1337
|
-
.e-gantt .e-gantt-chart .e-maskcell07 {
|
|
1338
|
-
height: 18px;
|
|
1339
|
-
width: 156px;
|
|
1340
|
-
left: 388px;
|
|
1341
|
-
border-radius: 0;
|
|
1342
|
-
background: #e1dfdd;
|
|
1343
|
-
}
|
|
1344
1183
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
1345
1184
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
1346
1185
|
display: inline-block;
|
|
@@ -1375,7 +1214,7 @@
|
|
|
1375
1214
|
border-right: 7px solid transparent;
|
|
1376
1215
|
cursor: col-resize;
|
|
1377
1216
|
height: 0;
|
|
1378
|
-
left:
|
|
1217
|
+
left: 0;
|
|
1379
1218
|
position: absolute;
|
|
1380
1219
|
top: -7px;
|
|
1381
1220
|
width: 0;
|
|
@@ -1387,7 +1226,7 @@
|
|
|
1387
1226
|
border-right: 6px solid transparent;
|
|
1388
1227
|
cursor: col-resize;
|
|
1389
1228
|
height: 0;
|
|
1390
|
-
left:
|
|
1229
|
+
left: 1px;
|
|
1391
1230
|
position: absolute;
|
|
1392
1231
|
top: -7px;
|
|
1393
1232
|
width: 0;
|
|
@@ -1435,7 +1274,6 @@
|
|
|
1435
1274
|
}
|
|
1436
1275
|
.e-gantt .e-gantt-chart .e-task-table {
|
|
1437
1276
|
overflow: hidden;
|
|
1438
|
-
border-collapse: separate;
|
|
1439
1277
|
}
|
|
1440
1278
|
.e-gantt .e-gantt-chart .e-left-resize-gripper,
|
|
1441
1279
|
.e-gantt .e-gantt-chart .e-right-resize-gripper {
|
|
@@ -1480,6 +1318,7 @@
|
|
|
1480
1318
|
border-radius: 3px;
|
|
1481
1319
|
font-weight: 500;
|
|
1482
1320
|
height: 28px;
|
|
1321
|
+
left: 5px;
|
|
1483
1322
|
line-height: 1.5;
|
|
1484
1323
|
padding: 4px 12px;
|
|
1485
1324
|
position: absolute;
|
|
@@ -1688,7 +1527,7 @@
|
|
|
1688
1527
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1689
1528
|
border-radius: 50%;
|
|
1690
1529
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1691
|
-
width: auto;
|
|
1530
|
+
width: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1692
1531
|
}
|
|
1693
1532
|
|
|
1694
1533
|
.e-icon-rowselect::before {
|
|
@@ -1866,7 +1705,6 @@
|
|
|
1866
1705
|
font-size: 12px;
|
|
1867
1706
|
font-weight: 400;
|
|
1868
1707
|
line-height: 1.8;
|
|
1869
|
-
color: #000;
|
|
1870
1708
|
}
|
|
1871
1709
|
|
|
1872
1710
|
/*! Gantt theme */
|
|
@@ -1923,7 +1761,6 @@
|
|
|
1923
1761
|
border-bottom-color: #dee2e6;
|
|
1924
1762
|
border-bottom-width: 0px;
|
|
1925
1763
|
border-right-color: #dee2e6;
|
|
1926
|
-
border-left-color: #dee2e6;
|
|
1927
1764
|
color: #212529;
|
|
1928
1765
|
height: 64px;
|
|
1929
1766
|
}
|
|
@@ -1966,7 +1803,7 @@
|
|
|
1966
1803
|
}
|
|
1967
1804
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
|
|
1968
1805
|
background-color: #007bff;
|
|
1969
|
-
|
|
1806
|
+
border: 1px solid #0056b3;
|
|
1970
1807
|
border-radius: 4px;
|
|
1971
1808
|
}
|
|
1972
1809
|
.e-gantt .e-gantt-chart .e-collapse-parent .e-gantt-child-taskbar-inner-div {
|
|
@@ -1988,7 +1825,7 @@
|
|
|
1988
1825
|
}
|
|
1989
1826
|
.e-gantt .e-gantt-chart .e-gantt-parent-taskbar-inner-div {
|
|
1990
1827
|
background-color: #6c757d;
|
|
1991
|
-
|
|
1828
|
+
border: 1px solid #495057;
|
|
1992
1829
|
border-radius: 4px;
|
|
1993
1830
|
}
|
|
1994
1831
|
.e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
|
|
@@ -2044,7 +1881,6 @@
|
|
|
2044
1881
|
}
|
|
2045
1882
|
.e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
2046
1883
|
border-right-color: #ffc107;
|
|
2047
|
-
border-left-color: #ffc107 !important; /* stylelint-disable-line declaration-no-important */
|
|
2048
1884
|
}
|
|
2049
1885
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
2050
1886
|
background: linear-gradient(to right, rgba(0, 123, 255, 0.2), #007bff 30%, #007bff 70%, #007bff 70%, rgba(0, 123, 255, 0.2) 100%);
|
|
@@ -2137,16 +1973,14 @@
|
|
|
2137
1973
|
border-width: 3px;
|
|
2138
1974
|
}
|
|
2139
1975
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-right {
|
|
2140
|
-
border-
|
|
2141
|
-
border-bottom-left-radius: 0;
|
|
2142
|
-
border-top-right-radius: 2px;
|
|
1976
|
+
border-bottom-left-radius: 0px;
|
|
2143
1977
|
border-bottom-right-radius: 2px;
|
|
1978
|
+
border-top-left-radius: 0px;
|
|
1979
|
+
border-top-right-radius: 2px;
|
|
2144
1980
|
}
|
|
2145
1981
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-left {
|
|
2146
1982
|
border-bottom-left-radius: 2px;
|
|
2147
1983
|
border-top-left-radius: 2px;
|
|
2148
|
-
border-bottom-right-radius: 0;
|
|
2149
|
-
border-top-right-radius: 0;
|
|
2150
1984
|
}
|
|
2151
1985
|
.e-gantt .e-gantt-chart .e-task-label {
|
|
2152
1986
|
color: #fff;
|
|
@@ -2299,9 +2133,6 @@
|
|
|
2299
2133
|
color: #212529 !important; /* stylelint-disable-line declaration-no-important */
|
|
2300
2134
|
}
|
|
2301
2135
|
|
|
2302
|
-
.e-gantt-dialog .e-dlg-content .e-rte-quick-popup.e-hide {
|
|
2303
|
-
border: none !important; /* stylelint-disable-line declaration-no-important */
|
|
2304
|
-
}
|
|
2305
2136
|
.e-gantt-dialog .e-dlg-header {
|
|
2306
2137
|
color: #fff;
|
|
2307
2138
|
}
|
|
@@ -1 +1,22 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap4-definition.scss';
|
|
2
|
+
@import 'ej2-grids/styles/grid/bootstrap4-definition.scss';
|
|
3
|
+
@import 'ej2-treegrid/styles/treegrid/bootstrap4-definition.scss';
|
|
4
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/bootstrap4-definition.scss';
|
|
5
|
+
@import 'ej2-calendars/styles/datepicker/bootstrap4-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/datetimepicker/bootstrap4-definition.scss';
|
|
7
|
+
@import 'ej2-buttons/styles/button/bootstrap4-definition.scss';
|
|
8
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap4-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/combo-box/bootstrap4-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/bootstrap4-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/toolbar/bootstrap4-definition.scss';
|
|
12
|
+
@import 'ej2-navigations/styles/tab/bootstrap4-definition.scss';
|
|
13
|
+
@import 'ej2-navigations/styles/context-menu/bootstrap4-definition.scss';
|
|
14
|
+
@import 'ej2-inputs/styles/input/bootstrap4-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/numerictextbox/bootstrap4-definition.scss';
|
|
16
|
+
@import 'ej2-popups/styles/dialog/bootstrap4-definition.scss';
|
|
17
|
+
@import 'ej2-popups/styles/spinner/bootstrap4-definition.scss';
|
|
18
|
+
@import 'ej2-popups/styles/tooltip/bootstrap4-definition.scss';
|
|
19
|
+
@import 'ej2-layouts/styles/splitter/bootstrap4-definition.scss';
|
|
20
|
+
@import 'bootstrap4-definition.scss';
|
|
21
|
+
@import 'icons/bootstrap4.scss';
|
|
22
|
+
@import 'all.scss';
|