@syncfusion/ej2-angular-gantt 20.2.45-ngcc → 20.2.46
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 +29 -15
- 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 +61 -58
- package/styles/bootstrap.css +61 -58
- package/styles/bootstrap4.css +61 -58
- package/styles/bootstrap5-dark.css +65 -59
- package/styles/bootstrap5.css +65 -59
- package/styles/fabric-dark.css +61 -58
- package/styles/fabric.css +61 -58
- package/styles/fluent-dark.css +61 -58
- package/styles/fluent.css +61 -58
- package/styles/gantt/_all.scss +2 -0
- package/styles/gantt/_bootstrap-dark-definition.scss +207 -0
- package/styles/gantt/_bootstrap-definition.scss +208 -0
- package/styles/gantt/_bootstrap4-definition.scss +210 -0
- package/styles/gantt/_bootstrap5-dark-definition.scss +1 -0
- package/styles/gantt/_bootstrap5-definition.scss +212 -0
- package/styles/gantt/_fabric-dark-definition.scss +208 -0
- package/styles/gantt/_fabric-definition.scss +208 -0
- package/styles/gantt/_fluent-dark-definition.scss +1 -0
- package/styles/gantt/_fluent-definition.scss +212 -0
- package/styles/gantt/_fusionnew-definition.scss +211 -0
- package/styles/gantt/_highcontrast-definition.scss +208 -0
- package/styles/gantt/_highcontrast-light-definition.scss +208 -0
- package/styles/gantt/_layout.scss +1354 -0
- package/styles/gantt/_material-dark-definition.scss +209 -0
- package/styles/gantt/_material-definition.scss +209 -0
- package/styles/gantt/_material3-definition.scss +212 -0
- package/styles/gantt/_tailwind-dark-definition.scss +1 -0
- package/styles/gantt/_tailwind-definition.scss +212 -0
- package/styles/gantt/_theme.scss +702 -0
- package/styles/gantt/bootstrap-dark.css +61 -58
- package/styles/gantt/bootstrap-dark.scss +22 -1
- package/styles/gantt/bootstrap.css +61 -58
- package/styles/gantt/bootstrap.scss +22 -1
- package/styles/gantt/bootstrap4.css +61 -58
- package/styles/gantt/bootstrap4.scss +22 -1
- package/styles/gantt/bootstrap5-dark.css +65 -59
- package/styles/gantt/bootstrap5-dark.scss +22 -1
- package/styles/gantt/bootstrap5.css +65 -59
- package/styles/gantt/bootstrap5.scss +22 -1
- package/styles/gantt/fabric-dark.css +61 -58
- package/styles/gantt/fabric-dark.scss +22 -1
- package/styles/gantt/fabric.css +61 -58
- package/styles/gantt/fabric.scss +22 -1
- package/styles/gantt/fluent-dark.css +61 -58
- package/styles/gantt/fluent-dark.scss +22 -1
- package/styles/gantt/fluent.css +61 -58
- package/styles/gantt/fluent.scss +22 -1
- package/styles/gantt/highcontrast-light.css +64 -58
- package/styles/gantt/highcontrast-light.scss +21 -1
- package/styles/gantt/highcontrast.css +64 -58
- 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 +64 -61
- package/styles/gantt/material-dark.scss +22 -1
- package/styles/gantt/material.css +64 -61
- package/styles/gantt/material.scss +22 -1
- package/styles/gantt/tailwind-dark.css +63 -60
- package/styles/gantt/tailwind-dark.scss +22 -1
- package/styles/gantt/tailwind.css +63 -60
- package/styles/gantt/tailwind.scss +22 -1
- package/styles/highcontrast-light.css +64 -58
- package/styles/highcontrast.css +64 -58
- package/styles/material-dark.css +64 -61
- package/styles/material.css +64 -61
- package/styles/tailwind-dark.css +63 -60
- package/styles/tailwind.css +63 -60
- 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 -1336
- package/dist/ej2-angular-gantt.umd.js +0 -908
- 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
- package/schematics/collection.json +0 -30
- package/schematics/generators/gantt-daymarkers/index.d.ts +0 -3
- package/schematics/generators/gantt-daymarkers/index.js +0 -8
- package/schematics/generators/gantt-daymarkers/sample-details.d.ts +0 -5
- package/schematics/generators/gantt-daymarkers/sample-details.js +0 -7
- package/schematics/generators/gantt-daymarkers/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
- package/schematics/generators/gantt-daymarkers/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -6
- package/schematics/generators/gantt-daymarkers/schema.d.ts +0 -3
- package/schematics/generators/gantt-daymarkers/schema.js +0 -2
- package/schematics/generators/gantt-daymarkers/schema.json +0 -125
- package/schematics/generators/gantt-default/index.d.ts +0 -3
- package/schematics/generators/gantt-default/index.js +0 -8
- package/schematics/generators/gantt-default/sample-details.d.ts +0 -5
- package/schematics/generators/gantt-default/sample-details.js +0 -7
- package/schematics/generators/gantt-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -5
- package/schematics/generators/gantt-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
- package/schematics/generators/gantt-default/schema.d.ts +0 -3
- package/schematics/generators/gantt-default/schema.js +0 -2
- package/schematics/generators/gantt-default/schema.json +0 -125
- package/schematics/generators/gantt-editing/index.d.ts +0 -3
- package/schematics/generators/gantt-editing/index.js +0 -8
- package/schematics/generators/gantt-editing/sample-details.d.ts +0 -5
- package/schematics/generators/gantt-editing/sample-details.js +0 -7
- package/schematics/generators/gantt-editing/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
- package/schematics/generators/gantt-editing/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
- package/schematics/generators/gantt-editing/schema.d.ts +0 -3
- package/schematics/generators/gantt-editing/schema.js +0 -2
- package/schematics/generators/gantt-editing/schema.json +0 -125
- package/schematics/generators/gantt-localdata/index.d.ts +0 -3
- package/schematics/generators/gantt-localdata/index.js +0 -8
- package/schematics/generators/gantt-localdata/sample-details.d.ts +0 -5
- package/schematics/generators/gantt-localdata/sample-details.js +0 -7
- package/schematics/generators/gantt-localdata/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
- package/schematics/generators/gantt-localdata/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
- package/schematics/generators/gantt-localdata/schema.d.ts +0 -3
- package/schematics/generators/gantt-localdata/schema.js +0 -2
- package/schematics/generators/gantt-localdata/schema.json +0 -125
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
package/styles/fluent.css
CHANGED
|
@@ -162,6 +162,8 @@
|
|
|
162
162
|
/*! Horizontal Tab */
|
|
163
163
|
/*! Bootstrap specific themes definition's */
|
|
164
164
|
/*! Vertical Tab */
|
|
165
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
166
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
165
167
|
@keyframes material-spinner-rotate {
|
|
166
168
|
0% {
|
|
167
169
|
transform: rotate(0);
|
|
@@ -178,6 +180,7 @@
|
|
|
178
180
|
transform: rotate(360deg);
|
|
179
181
|
}
|
|
180
182
|
}
|
|
183
|
+
/* stylelint-disable */
|
|
181
184
|
.e-gantt .e-add::before {
|
|
182
185
|
content: "\e805";
|
|
183
186
|
}
|
|
@@ -327,10 +330,10 @@
|
|
|
327
330
|
height: 254px !important;
|
|
328
331
|
}
|
|
329
332
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
330
|
-
height: 63px !important;
|
|
333
|
+
height: 63px !important; /* stylelint-disable-line declaration-no-important */
|
|
331
334
|
}
|
|
332
335
|
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
333
|
-
padding: 16px 4px 16px 28px !important;
|
|
336
|
+
padding: 16px 4px 16px 28px !important; /* stylelint-disable-line declaration-no-important */
|
|
334
337
|
}
|
|
335
338
|
.e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
336
339
|
left: 8px !important;
|
|
@@ -366,7 +369,7 @@
|
|
|
366
369
|
width: 580px !important;
|
|
367
370
|
}
|
|
368
371
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
369
|
-
padding: 0 16px !important;
|
|
372
|
+
padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
370
373
|
}
|
|
371
374
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
372
375
|
padding: 16px 8px 0 28px;
|
|
@@ -384,10 +387,10 @@
|
|
|
384
387
|
height: 84px !important;
|
|
385
388
|
}
|
|
386
389
|
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
387
|
-
border-bottom: 0 !important;
|
|
390
|
+
border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
388
391
|
}
|
|
389
392
|
.e-bigger .e-gantt-dialog > .e-dlg-content {
|
|
390
|
-
border-radius: 0 !important;
|
|
393
|
+
border-radius: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
391
394
|
}
|
|
392
395
|
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
393
396
|
border-radius: 6px 6px 0px 0px;
|
|
@@ -395,28 +398,28 @@
|
|
|
395
398
|
}
|
|
396
399
|
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
397
400
|
border-radius: 50%;
|
|
398
|
-
height: auto !important;
|
|
401
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
399
402
|
width: auto;
|
|
400
403
|
}
|
|
401
404
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
402
405
|
margin-left: 16px !important;
|
|
403
406
|
}
|
|
404
407
|
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
405
|
-
font-size: 16px !important;
|
|
408
|
+
font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
406
409
|
}
|
|
407
410
|
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
408
411
|
min-height: 35px !important;
|
|
409
|
-
min-width: 35.82px !important;
|
|
412
|
+
min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
|
|
410
413
|
}
|
|
411
414
|
.e-bigger .e-gantt-dialog .e-btn.e-flat {
|
|
412
415
|
line-height: 24px;
|
|
413
|
-
padding: 6px 16px 6px 15px !important;
|
|
416
|
+
padding: 6px 16px 6px 15px !important; /* stylelint-disable-line declaration-no-important */
|
|
414
417
|
}
|
|
415
418
|
.e-bigger .e-gantt-dialog .e-btn.e-primary {
|
|
416
|
-
padding: 6px 21px 6px 23px !important;
|
|
419
|
+
padding: 6px 21px 6px 23px !important; /* stylelint-disable-line declaration-no-important */
|
|
417
420
|
}
|
|
418
421
|
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
|
|
419
|
-
font-size: 16px !important;
|
|
422
|
+
font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
420
423
|
}
|
|
421
424
|
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
422
425
|
font-size: 14px;
|
|
@@ -431,17 +434,17 @@
|
|
|
431
434
|
}
|
|
432
435
|
.e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
433
436
|
min-height: 35px !important;
|
|
434
|
-
min-width: 35.82px !important;
|
|
437
|
+
min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
|
|
435
438
|
}
|
|
436
439
|
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
437
440
|
min-height: 35px !important;
|
|
438
|
-
min-width: 35.82px !important;
|
|
441
|
+
min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
|
|
439
442
|
}
|
|
440
443
|
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
|
|
441
444
|
height: 40px;
|
|
442
445
|
}
|
|
443
446
|
.e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
|
|
444
|
-
min-width: 36px !important;
|
|
447
|
+
min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
|
|
445
448
|
}
|
|
446
449
|
.e-bigger .e-predecessor-tooltip {
|
|
447
450
|
background-color: #000;
|
|
@@ -453,7 +456,7 @@
|
|
|
453
456
|
color: #a19f9d !important;
|
|
454
457
|
}
|
|
455
458
|
.e-bigger .e-predecessor-tooltip .e-tip-content {
|
|
456
|
-
padding: 3px !important;
|
|
459
|
+
padding: 3px !important; /* stylelint-disable-line declaration-no-important */
|
|
457
460
|
}
|
|
458
461
|
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
459
462
|
background-color: #000;
|
|
@@ -555,7 +558,7 @@
|
|
|
555
558
|
margin: 0;
|
|
556
559
|
}
|
|
557
560
|
.e-gantt .e-gantt-splitter .e-pane {
|
|
558
|
-
overflow: hidden !important;
|
|
561
|
+
overflow: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
559
562
|
}
|
|
560
563
|
.e-gantt .e-temp-content {
|
|
561
564
|
border-left: 1px solid;
|
|
@@ -582,19 +585,19 @@
|
|
|
582
585
|
height: 45px;
|
|
583
586
|
}
|
|
584
587
|
.e-gantt .e-gantt-tree-grid-pane .e-headercontent {
|
|
585
|
-
border-right-width: 0 !important;
|
|
588
|
+
border-right-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
586
589
|
}
|
|
587
590
|
.e-gantt .e-gantt-tree-grid-pane .e-gridheader {
|
|
588
591
|
border-top-style: none;
|
|
589
592
|
border-top-width: 0;
|
|
590
|
-
padding-right: 0 !important;
|
|
593
|
+
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
591
594
|
}
|
|
592
595
|
.e-gantt .e-gantt-tree-grid-pane .e-columnheader,
|
|
593
596
|
.e-gantt .e-gantt-tree-grid-pane .e-headercell {
|
|
594
|
-
height: 51px !important;
|
|
597
|
+
height: 51px !important; /* stylelint-disable-line declaration-no-important */
|
|
595
598
|
}
|
|
596
599
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
|
|
597
|
-
overflow-x: scroll !important;
|
|
600
|
+
overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
|
|
598
601
|
}
|
|
599
602
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
|
|
600
603
|
width: calc(100% + 17px);
|
|
@@ -619,7 +622,7 @@
|
|
|
619
622
|
border-right: 0 solid;
|
|
620
623
|
}
|
|
621
624
|
.e-gantt .e-gantt-chart .e-chart-root-container .e-content {
|
|
622
|
-
-webkit-overflow-scrolling: touch;
|
|
625
|
+
-webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
|
|
623
626
|
overflow-x: scroll;
|
|
624
627
|
overflow-y: auto;
|
|
625
628
|
position: relative;
|
|
@@ -1186,7 +1189,7 @@
|
|
|
1186
1189
|
}
|
|
1187
1190
|
.e-gantt-dialog .e-richtexteditor {
|
|
1188
1191
|
border-bottom-width: 0px;
|
|
1189
|
-
height: 241px !important;
|
|
1192
|
+
height: 241px !important; /* stylelint-disable-line declaration-no-important */
|
|
1190
1193
|
overflow: hidden;
|
|
1191
1194
|
}
|
|
1192
1195
|
.e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
|
|
@@ -1198,10 +1201,10 @@
|
|
|
1198
1201
|
overflow: hidden;
|
|
1199
1202
|
}
|
|
1200
1203
|
.e-gantt-dialog > .e-dlg-content {
|
|
1201
|
-
padding: 0 !important;
|
|
1204
|
+
padding: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1202
1205
|
}
|
|
1203
1206
|
.e-gantt-dialog .e-dlg-header-content {
|
|
1204
|
-
border-bottom: 0 !important;
|
|
1207
|
+
border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1205
1208
|
}
|
|
1206
1209
|
.e-gantt-dialog .e-dlg-header-content {
|
|
1207
1210
|
border-radius: 3px 3px 0px 0px;
|
|
@@ -1209,8 +1212,8 @@
|
|
|
1209
1212
|
}
|
|
1210
1213
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1211
1214
|
border-radius: 50%;
|
|
1212
|
-
height: auto !important;
|
|
1213
|
-
width: auto !important;
|
|
1215
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1216
|
+
width: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1214
1217
|
}
|
|
1215
1218
|
|
|
1216
1219
|
.e-icon-rowselect::before {
|
|
@@ -1218,9 +1221,9 @@
|
|
|
1218
1221
|
}
|
|
1219
1222
|
|
|
1220
1223
|
.e-ganttpopup {
|
|
1221
|
-
-moz-user-select: none;
|
|
1222
|
-
-ms-user-select: none;
|
|
1223
|
-
-webkit-user-select: none;
|
|
1224
|
+
-moz-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1225
|
+
-ms-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1226
|
+
-webkit-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1224
1227
|
font-weight: normal;
|
|
1225
1228
|
position: absolute;
|
|
1226
1229
|
user-select: none;
|
|
@@ -1374,7 +1377,7 @@
|
|
|
1374
1377
|
border-top-right-radius: 0px;
|
|
1375
1378
|
}
|
|
1376
1379
|
.e-gantt .e-grid .e-focused:not(.e-menu-item) {
|
|
1377
|
-
box-shadow: 0 0 0 1px #605e5c inset !important;
|
|
1380
|
+
box-shadow: 0 0 0 1px #605e5c inset !important; /* stylelint-disable-line declaration-no-important */
|
|
1378
1381
|
}
|
|
1379
1382
|
.e-gantt .e-temp-content {
|
|
1380
1383
|
border-color: #edebe9;
|
|
@@ -1389,7 +1392,7 @@
|
|
|
1389
1392
|
border-color: #edebe9;
|
|
1390
1393
|
}
|
|
1391
1394
|
.e-gantt .e-gantt-tree-grid-pane .e-timeline-single-header-outer-div {
|
|
1392
|
-
height: 45px !important;
|
|
1395
|
+
height: 45px !important; /* stylelint-disable-line declaration-no-important */
|
|
1393
1396
|
}
|
|
1394
1397
|
.e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active {
|
|
1395
1398
|
background: #edebe9;
|
|
@@ -1413,7 +1416,7 @@
|
|
|
1413
1416
|
line-height: 46px;
|
|
1414
1417
|
}
|
|
1415
1418
|
.e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
|
|
1416
|
-
height: 46px !important;
|
|
1419
|
+
height: 46px !important; /* stylelint-disable-line declaration-no-important */
|
|
1417
1420
|
}
|
|
1418
1421
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
1419
1422
|
height: 26px;
|
|
@@ -1703,73 +1706,73 @@
|
|
|
1703
1706
|
color: transparent;
|
|
1704
1707
|
}
|
|
1705
1708
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-task-label {
|
|
1706
|
-
color: transparent !important;
|
|
1709
|
+
color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1707
1710
|
}
|
|
1708
1711
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-line {
|
|
1709
|
-
border-color: #e1dfdd !important;
|
|
1712
|
+
border-color: #e1dfdd !important; /* stylelint-disable-line declaration-no-important */
|
|
1710
1713
|
}
|
|
1711
1714
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-right-arrow {
|
|
1712
|
-
border-left-color: #e1dfdd !important;
|
|
1715
|
+
border-left-color: #e1dfdd !important; /* stylelint-disable-line declaration-no-important */
|
|
1713
1716
|
}
|
|
1714
1717
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-left-arrow {
|
|
1715
|
-
border-right-color: #e1dfdd !important;
|
|
1718
|
+
border-right-color: #e1dfdd !important; /* stylelint-disable-line declaration-no-important */
|
|
1716
1719
|
}
|
|
1717
1720
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-taskbar-inner-div {
|
|
1718
|
-
background: #c7e0f4 !important;
|
|
1719
|
-
border: #c7e0f4 !important;
|
|
1721
|
+
background: #c7e0f4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1722
|
+
border: #c7e0f4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1720
1723
|
}
|
|
1721
1724
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-progressbar-inner-div {
|
|
1722
|
-
background-color: transparent !important;
|
|
1723
|
-
border: transparent !important;
|
|
1725
|
+
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1726
|
+
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1724
1727
|
}
|
|
1725
1728
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-top {
|
|
1726
|
-
border-bottom-color: #c7e0f4 !important;
|
|
1729
|
+
border-bottom-color: #c7e0f4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1727
1730
|
}
|
|
1728
1731
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
|
|
1729
|
-
border-top-color: #c7e0f4 !important;
|
|
1732
|
+
border-top-color: #c7e0f4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1730
1733
|
}
|
|
1731
1734
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
|
|
1732
|
-
background-color: #e1dfdd !important;
|
|
1733
|
-
border: #e1dfdd !important;
|
|
1735
|
+
background-color: #e1dfdd !important; /* stylelint-disable-line declaration-no-important */
|
|
1736
|
+
border: #e1dfdd !important; /* stylelint-disable-line declaration-no-important */
|
|
1734
1737
|
}
|
|
1735
1738
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-progressbar-inner-div {
|
|
1736
|
-
background-color: transparent !important;
|
|
1737
|
-
border: transparent !important;
|
|
1739
|
+
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1740
|
+
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1738
1741
|
}
|
|
1739
1742
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-child-taskbar-inner-div {
|
|
1740
|
-
background: #0078d4 !important;
|
|
1741
|
-
border: #0078d4 !important;
|
|
1743
|
+
background: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1744
|
+
border: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1742
1745
|
}
|
|
1743
1746
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-top {
|
|
1744
|
-
border-bottom-color: #0078d4 !important;
|
|
1747
|
+
border-bottom-color: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1745
1748
|
}
|
|
1746
1749
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
|
|
1747
|
-
border-top-color: #0078d4 !important;
|
|
1750
|
+
border-top-color: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1748
1751
|
}
|
|
1749
1752
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
|
|
1750
|
-
background: #3baaff !important;
|
|
1751
|
-
border: #3baaff !important;
|
|
1753
|
+
background: #3baaff !important; /* stylelint-disable-line declaration-no-important */
|
|
1754
|
+
border: #3baaff !important; /* stylelint-disable-line declaration-no-important */
|
|
1752
1755
|
}
|
|
1753
1756
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-top {
|
|
1754
|
-
border-bottom-color: #3baaff !important;
|
|
1757
|
+
border-bottom-color: #3baaff !important; /* stylelint-disable-line declaration-no-important */
|
|
1755
1758
|
}
|
|
1756
1759
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
|
|
1757
|
-
border-top-color: #3baaff !important;
|
|
1760
|
+
border-top-color: #3baaff !important; /* stylelint-disable-line declaration-no-important */
|
|
1758
1761
|
}
|
|
1759
1762
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
|
|
1760
|
-
border-color: #0078d4 !important;
|
|
1763
|
+
border-color: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1761
1764
|
}
|
|
1762
1765
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-right-arrow {
|
|
1763
|
-
border-left-color: #0078d4 !important;
|
|
1766
|
+
border-left-color: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1764
1767
|
}
|
|
1765
1768
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-left-arrow {
|
|
1766
|
-
border-right-color: #0078d4 !important;
|
|
1769
|
+
border-right-color: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1767
1770
|
}
|
|
1768
1771
|
.e-gantt .e-icons {
|
|
1769
1772
|
color: #605e5c;
|
|
1770
1773
|
}
|
|
1771
1774
|
.e-gantt .e-grid .e-icons:not(.e-stop):not(.e-check):not(.e-icon-left):not(.e-date-icon) {
|
|
1772
|
-
color: #605e5c !important;
|
|
1775
|
+
color: #605e5c !important; /* stylelint-disable-line declaration-no-important */
|
|
1773
1776
|
}
|
|
1774
1777
|
|
|
1775
1778
|
.e-gantt-dialog .e-dlg-header {
|
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
$gantt-header-bg-color: $grey-base !default;
|
|
2
|
+
$gantt-header-border-color: $grey-88 !default;
|
|
3
|
+
$gantt-header-color: $grey-dark-font !default;
|
|
4
|
+
$gantt-context-menu-icon-color: $grey-dark-font !default;
|
|
5
|
+
$gantt-grid-line-color: $grey-88 !default;
|
|
6
|
+
$gantt-label-color: rgba($grey-light-font, .87) !default;
|
|
7
|
+
$gantt-content-color: rgba($grey-light-font, .87) !default;
|
|
8
|
+
$holiday-background: $grey-light !default;
|
|
9
|
+
$progress-handler-outline: $brand-primary-font !default;
|
|
10
|
+
$progress-handler-background: $gray-dark !default;
|
|
11
|
+
$holiday-label-color: $grey-dark-font !default;
|
|
12
|
+
$holiday-label-font-size: 13px !default;
|
|
13
|
+
$weekend-background: $grey-dark !default;
|
|
14
|
+
$event-marker-line-color: $brand-primary !default;
|
|
15
|
+
$event-marker-label-color: #cae8ff !default;
|
|
16
|
+
$event-marker-label-font-color: #004a8c !default;
|
|
17
|
+
$event-marker-label-font-size: 12px !default;
|
|
18
|
+
$event-marker-label-padding: 7px 12px !default;
|
|
19
|
+
$event-marker-label-height: 30px !default;
|
|
20
|
+
$event-marker-label-arrow-top: 60px !default;
|
|
21
|
+
$connector-line-color: $brand-primary !default;
|
|
22
|
+
$connector-line-hover-color: $brand-primary !default;
|
|
23
|
+
$connector-point-border-color: $grey-base !default;
|
|
24
|
+
$connector-false-line-color: $brand-primary !default;
|
|
25
|
+
$connector-point-hover-color: #21527d !default;
|
|
26
|
+
$critical-connector-line-color: #d13438 !default;
|
|
27
|
+
$critical-connector-line-hover-color: #f3d8da !default;
|
|
28
|
+
$connector-point-hover-bg-color: $grey-e6 !default;
|
|
29
|
+
$connector-point-hover-border-color: $brand-primary !default;
|
|
30
|
+
$gantt-connector-point-margin-top: 7.5px !default;
|
|
31
|
+
$gantt-connector-point-margin-radius: 4px !default;
|
|
32
|
+
$gantt-connector-point-left: 8px !default;
|
|
33
|
+
$gantt-unscheduled-taskbar-left: 3px !default;
|
|
34
|
+
$gantt-unscheduled-taskbar-right-radius: 2px !default;
|
|
35
|
+
$gantt-label-size: 13px !default;
|
|
36
|
+
$gantt-header-border-spacing: 0 !default;
|
|
37
|
+
$gantt-line-container-cell-border-color: $grey-88 !default;
|
|
38
|
+
/* stylelint-disable */
|
|
39
|
+
$gantt-unscheduled-taskbar-background: linear-gradient(to right, rgba($brand-primary, 0.2 ), $brand-primary 30%, $brand-primary 70%, $brand-primary 70%, rgba($brand-primary, 0.2 ) 100%) !default;
|
|
40
|
+
$gantt-unscheduled-critical-taskbar-background: linear-gradient(to right, rgba(285,85,85, 0.2), #D13438 30%, #D13438 70%, #D13438 70%, rgba(285,85,85, 0.2) 100%) !default;
|
|
41
|
+
$gantt-unscheduled-critical-taskbar-background-color: rgba(285,85,85, .2) !default;
|
|
42
|
+
$gantt-critical-child-task-bar: #F3D8DA !default;
|
|
43
|
+
$gantt-critical-child-progress-bar: #D13438 !default;
|
|
44
|
+
$gantt-critical-child-task-bar-border: 1px solid #F3D8DA !default;
|
|
45
|
+
$gantt-unscheduled-milestone-top-border: #dadada !default;
|
|
46
|
+
$gantt-unscheduled-milestone-bottom-border: #dadada !default;
|
|
47
|
+
$gantt-child-task-bar: lighten($brand-primary, 10%) !default;
|
|
48
|
+
$gantt-child-progress-bar: $brand-primary !default;
|
|
49
|
+
$gantt-child-progress-bar-border: 1px solid $brand-primary !default;
|
|
50
|
+
$gantt-child-progress-bar-border-radious:4px;
|
|
51
|
+
$gantt-child-task-bar-border: 1px solid $brand-primary !default;
|
|
52
|
+
$gantt-manualchild-task-bar: #8dd1c4;
|
|
53
|
+
$gantt-manualchild-progress-bar: #67c1b2;
|
|
54
|
+
$gantt-manualchild-progress-bar-border: #4fb29f;
|
|
55
|
+
$gantt-manualchild-task-bar-border: #4fb29f;
|
|
56
|
+
$gantt-manualparent-background-color: #989A9C;
|
|
57
|
+
$gantt-unscheduledmanualparent-background-color: linear-gradient(to right, rgba(63, 81, 181, 0.2), #989A9C 30%, #989A9C 70%, #989A9C 70%, rgba(63, 81, 181, 0.2) 100%) !default;
|
|
58
|
+
$gantt-unscheduled-manualtaskbar-background: linear-gradient(to right, rgba(63,81,181, 0.2), #8dd1c4 30%, #8dd1c4 70%, #8dd1c4 70%, rgba(63,81,181, 0.2) 100%) !default;
|
|
59
|
+
$gantt-parent-task-bar: #029f90 !default;
|
|
60
|
+
$gantt-parent-progress-bar: #4cc7ba !default;
|
|
61
|
+
$gantt-milestone-border-color: #dadada !default;
|
|
62
|
+
$gantt-critical-milestone-border-color: #D13438 !default;
|
|
63
|
+
$gantt-parent-milestone-border-color: #4cc7ba !default;
|
|
64
|
+
$gantt-parent-progress-bar-border: 1px solid #4cc7ba !default;
|
|
65
|
+
$gantt-parent-task-bar-border: 1px solid #4cc7ba !default;
|
|
66
|
+
$gantt-progress-bar-left-radius: 2px !default;
|
|
67
|
+
$gantt-unscheduled-taskbar-left-radius: 0px !default;
|
|
68
|
+
$gantt-unscheduled-taskbar-border-radius: 4px !default;
|
|
69
|
+
$gantt-connector-point-right-margin-left: 2px !default;
|
|
70
|
+
$gantt-right-label-container-margin-left: 25px !default;
|
|
71
|
+
$gantt-task-label-font-size: 12px !default;
|
|
72
|
+
$gantt-label-font-size: 14px !default;
|
|
73
|
+
$gantt-bigger-label-font-size: 14px !default;
|
|
74
|
+
$gantt-label-font-color: $grey-dark-font !default;
|
|
75
|
+
$gantt-task-label-font-color: $brand-primary-font !default;
|
|
76
|
+
$gantt-tab-header-active-font-color: $grey-light-font !default;
|
|
77
|
+
$gantt-tab-header-font-color: $brand-primary-font !default;
|
|
78
|
+
$gantt-edit-icon-color: $brand-primary-font !default;
|
|
79
|
+
$gantt-icons-color: $brand-primary-font;
|
|
80
|
+
$gantt-unscheduled-taskbar-border: 0px !default;
|
|
81
|
+
$gantt-timeline-top-headercell-font-size: 14px !default;
|
|
82
|
+
$gantt-timeline-top-headercell-font-weight: bold !default;
|
|
83
|
+
$gantt-dialog-general-height: 241px !default;
|
|
84
|
+
$gantt-dialog-edit-form-odd-padding: 16px 18px 0 18px !default;
|
|
85
|
+
$gantt-dialog-edit-form-even-padding: 16px 16px 0 0 !default;
|
|
86
|
+
$gantt-dialog-edit-form-scroll-padding: 16px 16px 0 0 !default;
|
|
87
|
+
$gantt-bigger-predecessor-dialog-padding: 10px 9px 9px 14px !important;
|
|
88
|
+
$gantt-bigger-tooltip-button-color: $shadow;
|
|
89
|
+
$gantt-bigger-tooltip-dialog-color: $grey-light-font;
|
|
90
|
+
$gantt-bigger-tooltip-button-text-color: $grey-light-font;
|
|
91
|
+
$gantt-bigger-tooltip-disabled-button-color: #adadad !important;
|
|
92
|
+
$gantt-bigger-dialog-edit-form-odd-padding: 16px 12px 0 16px !default;
|
|
93
|
+
$gantt-bigger-dialog-edit-form-even-padding: 16px 16px 0 12px !default;
|
|
94
|
+
$gantt-bigger-dialog-close-button-left: 0 !important;
|
|
95
|
+
$gantt-bigger-dialog-close-button-size: 12px !important;
|
|
96
|
+
$gantt-bigger-dialog-header-padding: 16px 4px 16px 16px !important;
|
|
97
|
+
$gantt-bigger-dialog-edit-form-scroll-padding: 16px 18px 0 9px !default;
|
|
98
|
+
$gantt-bigger-add-dialog-content-height: 242px !important;
|
|
99
|
+
$gantt-bigger-event-arrow-color: $brand-info-light;
|
|
100
|
+
$gantt-bigger-event-arrow-font-size: 12px !important;
|
|
101
|
+
$gantt-bigger-event-markers-border-radius: 4px !important;
|
|
102
|
+
$gantt-bigger-event-markers-height: 26px !important;
|
|
103
|
+
$gantt-bigger-event-arrow-bottom: 6px solid transparent;
|
|
104
|
+
$gantt-bigger-event-arrow-right: 6px solid transparent;
|
|
105
|
+
$gantt-bigger-event-arrow-top: 6px solid transparent;
|
|
106
|
+
$gantt-bigger-event-arrow-top-value: 73px !important;
|
|
107
|
+
$gantt-bigger-event-markers-top: 65px !important;
|
|
108
|
+
$gantt-bigger-event-markers-padding: 4px 11px 4px 9px !important;
|
|
109
|
+
$gantt-bigger-add-dialog-input-height: 76px !important;
|
|
110
|
+
$gantt-bigger-add-dialog-input-width: 250px !important;
|
|
111
|
+
$gantt-bigger-add-dialog-input-field-width: 175px !default;
|
|
112
|
+
$gantt-bigger-filter-dialog-footer-padding: 16px !important;
|
|
113
|
+
$gantt-bigger-add-dialog-footer-padding: 16px !important;
|
|
114
|
+
$gantt-bigger-filter-dialog-input-padding: 16px 0 0 !important;
|
|
115
|
+
$gantt-bigger-filter-dialog-footer-height: 70px !important;
|
|
116
|
+
$gantt-bigger-add-dialog-footer-height: 70px !important;
|
|
117
|
+
$gantt-bigger-dialog-width: 556px !important;
|
|
118
|
+
$gantt-bigger-filter-dialog-width: 350px !important;
|
|
119
|
+
$gantt-dialog-bigger-input-field: 36px !default;
|
|
120
|
+
$gantt-dialog-bigger-input-padding-field: 32px 16px 16px !important;
|
|
121
|
+
$gantt-bigger-dialog-input-field-height: 34px !important;
|
|
122
|
+
$gantt-bigger-dialog-input-icon: 35px !important;
|
|
123
|
+
$gantt-dialog-bigger-border-radius: 6px !important;
|
|
124
|
+
$gantt-bigger-dialog-tab-padding-left: 5px !important;
|
|
125
|
+
$gantt-bigger-dialog-border-radius: 6px 6px 0px 0px !default;
|
|
126
|
+
$gantt-dialog-dependent-height: 161px !default;
|
|
127
|
+
$gantt-dialog-resource-height: 202px !default;
|
|
128
|
+
$gantt-dialog-rte-height: 241px !default;
|
|
129
|
+
$gantt-dialog-rte-content-height: 200px !default;
|
|
130
|
+
$gantt-dialog-padding-bottom: 20px !default;
|
|
131
|
+
$gantt-dialog-active-tab-background: $gray-base !default;
|
|
132
|
+
$gantt-dialog-tab-padding-left: 12px !default;
|
|
133
|
+
$gantt-dialog-tab-background: $brand-primary !default;
|
|
134
|
+
$gantt-dialog-header-font-color: $brand-primary-font !default;
|
|
135
|
+
$gantt-dialog-icon-color: $brand-primary-font !default;
|
|
136
|
+
$gantt-dialog-icon-hover-color: transparent !default;
|
|
137
|
+
$gantt-dialog-close-icon-hover-color: $grey-dark-font !default;
|
|
138
|
+
$gantt-dialog-tab-hover-border-color: transparent !default;
|
|
139
|
+
$gantt-dialog-tab-header-border-no-color: transparent !default;
|
|
140
|
+
$gantt-tab-header-border-width: 0px;
|
|
141
|
+
$gantt-depedent-div-border-bottom: 0px !default;
|
|
142
|
+
$gantt-resource-div-border-bottom: 0px !default;
|
|
143
|
+
$gantt-richtext-border-bottom: 0px !default;
|
|
144
|
+
$gantt-richtext-content-border-bottom: 0px !default;
|
|
145
|
+
$gantt-tab-selection-indicator-color: transparent !default;
|
|
146
|
+
$gantt-tab-header-hover-color: $grey-dark !default;
|
|
147
|
+
$gantt-tab-header-hover-font-color: $grey-dark-font !default;
|
|
148
|
+
$gantt-connector-point-width: 12px !default;
|
|
149
|
+
$gantt-connector-point-height: 8px !default;
|
|
150
|
+
$gantt-connector-left-point-left: -12px !default;
|
|
151
|
+
$gantt-parent-progress-bar-border-radius: 4px !default;
|
|
152
|
+
$gantt-active-background: $grey-88 !default;
|
|
153
|
+
$gantt-active-color: $brand-primary-font !default;
|
|
154
|
+
$gantt-active-color-opacity: 1 !default;
|
|
155
|
+
$gantt-table-background: $grey-base !default;
|
|
156
|
+
$connector-point-hover-outerline-color: #75ACDB !default;
|
|
157
|
+
$gantt-baseline-color: $brand-warning !default;
|
|
158
|
+
$gantt-child-progress-margin-left: 0.5px !default;
|
|
159
|
+
$gantt-timeline-single-header-outer-div: 45px !default;
|
|
160
|
+
$gantt-chart-timeline-single-header-outer-div: 47px !default;
|
|
161
|
+
$gantt-header-border-height: 64px !default;
|
|
162
|
+
$gantt-bigger-header-border-height: 64px !default;
|
|
163
|
+
$gantt-treegrid-header-border-height: 63px !default;
|
|
164
|
+
$gantt-bigger-treegrid-header-border-height: 63px !default;
|
|
165
|
+
$gantt-header-border-bottom-width: 0px !default;
|
|
166
|
+
$gantt-timeline-top-header-cell-height: 32px !default;
|
|
167
|
+
$gantt-bigger-timeline-top-header-cell-height: 32px !default;
|
|
168
|
+
$gantt-header-border-radius: 4px !default;
|
|
169
|
+
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
170
|
+
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
171
|
+
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
172
|
+
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
173
|
+
$gantt-dialog-tab-hover-border-bottom-radius: 0px !default;
|
|
174
|
+
$gantt-dialog-border-radius: 6px 6px 0px 0px !default;
|
|
175
|
+
$event-marker-line-height: 1.5 !default;
|
|
176
|
+
$gantt-inactive-parent: #8A8A8A !default;
|
|
177
|
+
$gantt-inactive-child: #D5D5D5 !default;
|
|
178
|
+
$gantt-connected-task: lighten($brand-primary, 20%) !default;
|
|
179
|
+
$gantt-active-parent-task: lighten(#000000, 10%) !default;
|
|
180
|
+
$gantt-uptail-border: #e0e0e0 !default;
|
|
181
|
+
$gantt-gridpopup-span: $base-font !default;
|
|
182
|
+
$gantt-active-parent-shadow: rgba($gantt-gridpopup-span, 0.5) !default;
|
|
183
|
+
$gantt-left-resize-gripper-border: #9e9e9e !default;
|
|
184
|
+
$gantt-left-resize-gripper-color: #eee !default;
|
|
185
|
+
$gantt-clone-padding: 4px 5px !default;
|
|
186
|
+
$gantt-bigger-clone-padding: $gantt-clone-padding !default;
|
|
187
|
+
$gantt-cell-border-color: $grey-88 !default;
|
|
188
|
+
$gantt-group-clone-box-shadow: 0 0 !default;
|
|
189
|
+
$gantt-header-font-size: 12px !default;
|
|
190
|
+
$gantt-header-font-weight: 500 !default;
|
|
191
|
+
$gantt-drag-clone-font-weight: $gantt-header-font-weight !default;
|
|
192
|
+
$gantt-drag-clone-opacity: 1 !default;
|
|
193
|
+
$gantt-group-clone-text-align: center !default;
|
|
194
|
+
$gantt-clone-prop-box-shadow: 0 5px 15px rgba($base-font, .5) !default;
|
|
195
|
+
$gantt-drag-clone-bg-color: $grey-base !default;
|
|
196
|
+
$gantt-drag-clone-border-color: $grey-44 !default;
|
|
197
|
+
$gantt-drag-clone-color: $header-font-color !default;
|
|
198
|
+
$gantt-content-font-color: $grey-dark-font !default;
|
|
199
|
+
$gantt-clone-dragdrop-bg-color: $grey !default;
|
|
200
|
+
$error-elem-color: #e3165b;
|
|
201
|
+
$gantt-border-size: 1px !default;
|
|
202
|
+
$gantt-active-container-border: lighten($brand-primary, 10%) !default;
|
|
203
|
+
$grid-active-container-border: 0 0 0 1px lighten($brand-primary, 10%) inset !default;
|
|
204
|
+
$gantt-collapse-progress-width: 0px !important;
|
|
205
|
+
$rangecontainer-border-color: #FC7A05;
|
|
206
|
+
$gantt-range-container-arc-radius: 2px !default;
|
|
207
|
+
$bigger-column-menu-size: 40px !default;
|