@syncfusion/ej2-react-gantt 20.2.50 → 20.3.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +34 -0
- package/dist/ej2-react-gantt.min.js +10 -0
- package/dist/ej2-react-gantt.umd.min.js +1 -1
- package/package.json +8 -8
- package/styles/bootstrap-dark.css +115 -62
- package/styles/bootstrap.css +115 -62
- package/styles/bootstrap4.css +115 -62
- package/styles/bootstrap5-dark.css +119 -63
- package/styles/bootstrap5.css +119 -63
- package/styles/fabric-dark.css +115 -62
- package/styles/fabric.css +115 -62
- package/styles/fluent-dark.css +126 -66
- package/styles/fluent.css +124 -64
- package/styles/gantt/bootstrap-dark.css +115 -62
- package/styles/gantt/bootstrap.css +115 -62
- package/styles/gantt/bootstrap4.css +115 -62
- package/styles/gantt/bootstrap5-dark.css +119 -63
- package/styles/gantt/bootstrap5.css +119 -63
- package/styles/gantt/fabric-dark.css +115 -62
- package/styles/gantt/fabric.css +115 -62
- package/styles/gantt/fluent-dark.css +126 -66
- package/styles/gantt/fluent.css +124 -64
- package/styles/gantt/highcontrast-light.css +120 -62
- package/styles/gantt/highcontrast.css +120 -62
- package/styles/gantt/material-dark.css +120 -65
- package/styles/gantt/material.css +118 -65
- package/styles/gantt/tailwind-dark.css +117 -64
- package/styles/gantt/tailwind.css +117 -64
- package/styles/highcontrast-light.css +120 -62
- package/styles/highcontrast.css +120 -62
- package/styles/material-dark.css +120 -65
- package/styles/material.css +118 -65
- package/styles/tailwind-dark.css +117 -64
- package/styles/tailwind.css +117 -64
|
@@ -164,6 +164,7 @@
|
|
|
164
164
|
}
|
|
165
165
|
/*! Material specific themes definition's */
|
|
166
166
|
/*! Vertical Tab */
|
|
167
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
167
168
|
@keyframes e-input-ripple {
|
|
168
169
|
100% {
|
|
169
170
|
opacity: 0;
|
|
@@ -178,6 +179,7 @@
|
|
|
178
179
|
transform: translate3d(0, 0, 0) scale(1);
|
|
179
180
|
}
|
|
180
181
|
}
|
|
182
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
181
183
|
@keyframes material-spinner-rotate {
|
|
182
184
|
0% {
|
|
183
185
|
transform: rotate(0deg);
|
|
@@ -195,6 +197,7 @@
|
|
|
195
197
|
}
|
|
196
198
|
}
|
|
197
199
|
/*! component's default definitions and variables */
|
|
200
|
+
/* stylelint-disable */
|
|
198
201
|
.e-gantt .e-add::before {
|
|
199
202
|
content: "\e7f9";
|
|
200
203
|
}
|
|
@@ -344,10 +347,10 @@
|
|
|
344
347
|
height: 241px !important;
|
|
345
348
|
}
|
|
346
349
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
347
|
-
height: 63px !important;
|
|
350
|
+
height: 63px !important; /* stylelint-disable-line declaration-no-important */
|
|
348
351
|
}
|
|
349
352
|
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
350
|
-
padding: 16px 14px 17px 16px !important;
|
|
353
|
+
padding: 16px 14px 17px 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
351
354
|
}
|
|
352
355
|
.e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
353
356
|
left: 1px !important;
|
|
@@ -365,7 +368,7 @@
|
|
|
365
368
|
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
366
369
|
line-height: 28px;
|
|
367
370
|
}
|
|
368
|
-
.e-bigger .e-gantt .e-filter-popup {
|
|
371
|
+
.e-bigger .e-gantt .e-filter-popup.e-popup {
|
|
369
372
|
width: 350px !important;
|
|
370
373
|
}
|
|
371
374
|
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
@@ -378,12 +381,12 @@
|
|
|
378
381
|
.e-bigger .e-columnmenu {
|
|
379
382
|
top: 38px;
|
|
380
383
|
}
|
|
381
|
-
.e-bigger .e-gantt-dialog {
|
|
384
|
+
.e-bigger .e-gantt-dialog .e-dialog {
|
|
382
385
|
border-radius: 6px;
|
|
383
386
|
width: 550px !important;
|
|
384
387
|
}
|
|
385
388
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
386
|
-
padding: 0 16px !important;
|
|
389
|
+
padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
387
390
|
}
|
|
388
391
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
389
392
|
padding: 16px 9px 0 16px;
|
|
@@ -401,10 +404,10 @@
|
|
|
401
404
|
height: 78px !important;
|
|
402
405
|
}
|
|
403
406
|
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
404
|
-
border-bottom: 0 !important;
|
|
407
|
+
border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
405
408
|
}
|
|
406
409
|
.e-bigger .e-gantt-dialog > .e-dlg-content {
|
|
407
|
-
border-radius: 0 !important;
|
|
410
|
+
border-radius: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
408
411
|
}
|
|
409
412
|
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
410
413
|
border-radius: 6px 6px 0px 0px;
|
|
@@ -412,28 +415,28 @@
|
|
|
412
415
|
}
|
|
413
416
|
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
414
417
|
border-radius: 50%;
|
|
415
|
-
height: auto !important;
|
|
418
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
416
419
|
width: auto;
|
|
417
420
|
}
|
|
418
421
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
419
422
|
margin-left: 4px !important;
|
|
420
423
|
}
|
|
421
424
|
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
422
|
-
font-size: 16px !important;
|
|
425
|
+
font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
423
426
|
}
|
|
424
427
|
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
425
428
|
min-height: 26px !important;
|
|
426
|
-
min-width: 35.82px !important;
|
|
429
|
+
min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
|
|
427
430
|
}
|
|
428
431
|
.e-bigger .e-gantt-dialog .e-btn.e-flat {
|
|
429
432
|
line-height: 24px;
|
|
430
|
-
padding: 6px 16px 6px 15px !important;
|
|
433
|
+
padding: 6px 16px 6px 15px !important; /* stylelint-disable-line declaration-no-important */
|
|
431
434
|
}
|
|
432
435
|
.e-bigger .e-gantt-dialog .e-btn.e-primary {
|
|
433
|
-
padding: 6px 21px 6px 23px !important;
|
|
436
|
+
padding: 6px 21px 6px 23px !important; /* stylelint-disable-line declaration-no-important */
|
|
434
437
|
}
|
|
435
438
|
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
|
|
436
|
-
font-size: 16px !important;
|
|
439
|
+
font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
437
440
|
}
|
|
438
441
|
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
439
442
|
font-size: 14px;
|
|
@@ -445,30 +448,33 @@
|
|
|
445
448
|
}
|
|
446
449
|
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
|
|
447
450
|
height: 27px !important;
|
|
448
|
-
padding: 5px 0 11px !important;
|
|
451
|
+
padding: 5px 0 11px !important; /* stylelint-disable-line declaration-no-important */
|
|
449
452
|
}
|
|
450
453
|
.e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
451
454
|
min-height: 26px !important;
|
|
452
|
-
min-width: 35.82px !important;
|
|
455
|
+
min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
|
|
453
456
|
}
|
|
454
457
|
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
455
458
|
min-height: 26px !important;
|
|
456
|
-
min-width: 35.82px !important;
|
|
459
|
+
min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
|
|
457
460
|
}
|
|
458
461
|
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
|
|
459
462
|
height: 44px;
|
|
460
463
|
}
|
|
461
464
|
.e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
|
|
462
|
-
min-width: 36px !important;
|
|
465
|
+
min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
|
|
463
466
|
}
|
|
464
467
|
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-input-group-icon.e-time-icon {
|
|
465
|
-
margin: 5px 0 6px !important;
|
|
468
|
+
margin: 5px 0 6px !important; /* stylelint-disable-line declaration-no-important */
|
|
466
469
|
}
|
|
467
470
|
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper .e-input-group-icon {
|
|
468
|
-
margin-right: 0 !important;
|
|
471
|
+
margin-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
469
472
|
}
|
|
470
|
-
.e-bigger .e-predecessor-tooltip {
|
|
471
|
-
|
|
473
|
+
.e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
|
|
474
|
+
border-top: 8px solid #000;
|
|
475
|
+
}
|
|
476
|
+
.e-bigger .e-predecessor-tooltip .e-arrow-tip-inner.e-tip-bottom {
|
|
477
|
+
color: #000;
|
|
472
478
|
}
|
|
473
479
|
.e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
|
|
474
480
|
color: #757575 !important;
|
|
@@ -477,7 +483,7 @@
|
|
|
477
483
|
color: #757575 !important;
|
|
478
484
|
}
|
|
479
485
|
.e-bigger .e-predecessor-tooltip .e-tip-content {
|
|
480
|
-
padding: 3px !important;
|
|
486
|
+
padding: 3px !important; /* stylelint-disable-line declaration-no-important */
|
|
481
487
|
}
|
|
482
488
|
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
483
489
|
background-color: #000;
|
|
@@ -501,6 +507,9 @@
|
|
|
501
507
|
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
502
508
|
background-color: #f3f3f3;
|
|
503
509
|
padding: 10px 9px 9px 14px !important;
|
|
510
|
+
font-size: 12px;
|
|
511
|
+
font-weight: 400;
|
|
512
|
+
line-height: 1.46;
|
|
504
513
|
}
|
|
505
514
|
|
|
506
515
|
.e-gantt {
|
|
@@ -579,7 +588,7 @@
|
|
|
579
588
|
margin: 0;
|
|
580
589
|
}
|
|
581
590
|
.e-gantt .e-gantt-splitter .e-pane {
|
|
582
|
-
overflow: hidden !important;
|
|
591
|
+
overflow: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
583
592
|
}
|
|
584
593
|
.e-gantt .e-temp-content {
|
|
585
594
|
border-left: 1px solid;
|
|
@@ -606,19 +615,19 @@
|
|
|
606
615
|
height: 45px;
|
|
607
616
|
}
|
|
608
617
|
.e-gantt .e-gantt-tree-grid-pane .e-headercontent {
|
|
609
|
-
border-right-width: 0 !important;
|
|
618
|
+
border-right-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
610
619
|
}
|
|
611
620
|
.e-gantt .e-gantt-tree-grid-pane .e-gridheader {
|
|
612
621
|
border-top-style: none;
|
|
613
622
|
border-top-width: 0;
|
|
614
|
-
padding-right: 0 !important;
|
|
623
|
+
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
615
624
|
}
|
|
616
625
|
.e-gantt .e-gantt-tree-grid-pane .e-columnheader,
|
|
617
626
|
.e-gantt .e-gantt-tree-grid-pane .e-headercell {
|
|
618
|
-
height: 63px !important;
|
|
627
|
+
height: 63px !important; /* stylelint-disable-line declaration-no-important */
|
|
619
628
|
}
|
|
620
629
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
|
|
621
|
-
overflow-x: scroll !important;
|
|
630
|
+
overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
|
|
622
631
|
}
|
|
623
632
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
|
|
624
633
|
width: calc(100% + 17px);
|
|
@@ -643,7 +652,7 @@
|
|
|
643
652
|
border-right: 0 solid;
|
|
644
653
|
}
|
|
645
654
|
.e-gantt .e-gantt-chart .e-chart-root-container .e-content {
|
|
646
|
-
-webkit-overflow-scrolling: touch;
|
|
655
|
+
-webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
|
|
647
656
|
overflow-x: scroll;
|
|
648
657
|
overflow-y: auto;
|
|
649
658
|
position: relative;
|
|
@@ -1210,7 +1219,7 @@
|
|
|
1210
1219
|
}
|
|
1211
1220
|
.e-gantt-dialog .e-richtexteditor {
|
|
1212
1221
|
border-bottom-width: 1px;
|
|
1213
|
-
height: 241px !important;
|
|
1222
|
+
height: 241px !important; /* stylelint-disable-line declaration-no-important */
|
|
1214
1223
|
overflow: hidden;
|
|
1215
1224
|
}
|
|
1216
1225
|
.e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
|
|
@@ -1222,10 +1231,10 @@
|
|
|
1222
1231
|
overflow: hidden;
|
|
1223
1232
|
}
|
|
1224
1233
|
.e-gantt-dialog > .e-dlg-content {
|
|
1225
|
-
padding: 0 !important;
|
|
1234
|
+
padding: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1226
1235
|
}
|
|
1227
1236
|
.e-gantt-dialog .e-dlg-header-content {
|
|
1228
|
-
border-bottom: 0 !important;
|
|
1237
|
+
border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1229
1238
|
}
|
|
1230
1239
|
.e-gantt-dialog .e-dlg-header-content {
|
|
1231
1240
|
border-radius: 0px;
|
|
@@ -1233,8 +1242,8 @@
|
|
|
1233
1242
|
}
|
|
1234
1243
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1235
1244
|
border-radius: 50%;
|
|
1236
|
-
height: auto !important;
|
|
1237
|
-
width: auto !important;
|
|
1245
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1246
|
+
width: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1238
1247
|
}
|
|
1239
1248
|
|
|
1240
1249
|
.e-icon-rowselect::before {
|
|
@@ -1242,9 +1251,9 @@
|
|
|
1242
1251
|
}
|
|
1243
1252
|
|
|
1244
1253
|
.e-ganttpopup {
|
|
1245
|
-
-moz-user-select: none;
|
|
1246
|
-
-ms-user-select: none;
|
|
1247
|
-
-webkit-user-select: none;
|
|
1254
|
+
-moz-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1255
|
+
-ms-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1256
|
+
-webkit-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1248
1257
|
font-weight: normal;
|
|
1249
1258
|
position: absolute;
|
|
1250
1259
|
user-select: none;
|
|
@@ -1367,8 +1376,52 @@
|
|
|
1367
1376
|
}
|
|
1368
1377
|
|
|
1369
1378
|
.e-predecessor-tooltip {
|
|
1379
|
+
background-color: #000 !important; /* stylelint-disable-line declaration-no-important */
|
|
1380
|
+
border-color: #000 !important; /* stylelint-disable-line declaration-no-important */
|
|
1370
1381
|
visibility: hidden;
|
|
1371
1382
|
}
|
|
1383
|
+
.e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
|
|
1384
|
+
border-top: 8px solid #000;
|
|
1385
|
+
}
|
|
1386
|
+
.e-predecessor-tooltip .e-arrow-tip-inner.e-tip-bottom {
|
|
1387
|
+
color: #000;
|
|
1388
|
+
}
|
|
1389
|
+
.e-predecessor-tooltip .e-left-btn:disabled {
|
|
1390
|
+
color: #757575 !important;
|
|
1391
|
+
}
|
|
1392
|
+
.e-predecessor-tooltip .e-right-btn:disabled {
|
|
1393
|
+
color: #757575 !important;
|
|
1394
|
+
}
|
|
1395
|
+
.e-predecessor-tooltip .e-tip-content {
|
|
1396
|
+
padding: 3px !important; /* stylelint-disable-line declaration-no-important */
|
|
1397
|
+
}
|
|
1398
|
+
.e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
1399
|
+
background-color: #000;
|
|
1400
|
+
border-color: #000;
|
|
1401
|
+
color: #fff;
|
|
1402
|
+
font-size: 12px;
|
|
1403
|
+
line-height: 18px;
|
|
1404
|
+
padding: 0 8px 0 0;
|
|
1405
|
+
}
|
|
1406
|
+
.e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
|
|
1407
|
+
background-color: #000;
|
|
1408
|
+
border-color: #000;
|
|
1409
|
+
color: #fff;
|
|
1410
|
+
font-size: 12px;
|
|
1411
|
+
line-height: 18px;
|
|
1412
|
+
padding: 0 0 0 8px;
|
|
1413
|
+
}
|
|
1414
|
+
|
|
1415
|
+
.e-predecessor-dialog {
|
|
1416
|
+
background-color: #f3f3f3;
|
|
1417
|
+
}
|
|
1418
|
+
.e-predecessor-dialog .e-dlg-content {
|
|
1419
|
+
background-color: #f3f3f3;
|
|
1420
|
+
padding: 10px 9px 9px 14px !important;
|
|
1421
|
+
font-size: 12px;
|
|
1422
|
+
font-weight: 400;
|
|
1423
|
+
line-height: 1.46;
|
|
1424
|
+
}
|
|
1372
1425
|
|
|
1373
1426
|
/*! Gantt theme */
|
|
1374
1427
|
.e-gantt .e-gantt-splitter {
|
|
@@ -1398,7 +1451,7 @@
|
|
|
1398
1451
|
border-top-right-radius: 0px;
|
|
1399
1452
|
}
|
|
1400
1453
|
.e-gantt .e-grid .e-focused:not(.e-menu-item) {
|
|
1401
|
-
box-shadow: 0 0 0 1px #9e9e9e inset !important;
|
|
1454
|
+
box-shadow: 0 0 0 1px #9e9e9e inset !important; /* stylelint-disable-line declaration-no-important */
|
|
1402
1455
|
}
|
|
1403
1456
|
.e-gantt .e-temp-content {
|
|
1404
1457
|
border-color: #e0e0e0;
|
|
@@ -1413,7 +1466,7 @@
|
|
|
1413
1466
|
border-color: #e0e0e0;
|
|
1414
1467
|
}
|
|
1415
1468
|
.e-gantt .e-gantt-tree-grid-pane .e-timeline-single-header-outer-div {
|
|
1416
|
-
height: 45px !important;
|
|
1469
|
+
height: 45px !important; /* stylelint-disable-line declaration-no-important */
|
|
1417
1470
|
}
|
|
1418
1471
|
.e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active {
|
|
1419
1472
|
background: rgba(63, 81, 181, 0.15);
|
|
@@ -1437,7 +1490,7 @@
|
|
|
1437
1490
|
line-height: 46px;
|
|
1438
1491
|
}
|
|
1439
1492
|
.e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
|
|
1440
|
-
height: 46px !important;
|
|
1493
|
+
height: 46px !important; /* stylelint-disable-line declaration-no-important */
|
|
1441
1494
|
}
|
|
1442
1495
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
1443
1496
|
height: 32px;
|
|
@@ -1727,73 +1780,73 @@
|
|
|
1727
1780
|
color: transparent;
|
|
1728
1781
|
}
|
|
1729
1782
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-task-label {
|
|
1730
|
-
color: transparent !important;
|
|
1783
|
+
color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1731
1784
|
}
|
|
1732
1785
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-line {
|
|
1733
|
-
border-color: #8A8A8A !important;
|
|
1786
|
+
border-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
1734
1787
|
}
|
|
1735
1788
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-right-arrow {
|
|
1736
|
-
border-left-color: #8A8A8A !important;
|
|
1789
|
+
border-left-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
1737
1790
|
}
|
|
1738
1791
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-left-arrow {
|
|
1739
|
-
border-right-color: #8A8A8A !important;
|
|
1792
|
+
border-right-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
1740
1793
|
}
|
|
1741
1794
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-taskbar-inner-div {
|
|
1742
|
-
background: #D5D5D5 !important;
|
|
1743
|
-
border: #D5D5D5 !important;
|
|
1795
|
+
background: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1796
|
+
border: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1744
1797
|
}
|
|
1745
1798
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-progressbar-inner-div {
|
|
1746
|
-
background-color: transparent !important;
|
|
1747
|
-
border: transparent !important;
|
|
1799
|
+
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1800
|
+
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1748
1801
|
}
|
|
1749
1802
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-top {
|
|
1750
|
-
border-bottom-color: #D5D5D5 !important;
|
|
1803
|
+
border-bottom-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1751
1804
|
}
|
|
1752
1805
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
|
|
1753
|
-
border-top-color: #D5D5D5 !important;
|
|
1806
|
+
border-top-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1754
1807
|
}
|
|
1755
1808
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
|
|
1756
|
-
background-color: #8A8A8A !important;
|
|
1757
|
-
border: #8A8A8A !important;
|
|
1809
|
+
background-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
1810
|
+
border: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
1758
1811
|
}
|
|
1759
1812
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-progressbar-inner-div {
|
|
1760
|
-
background-color: transparent !important;
|
|
1761
|
-
border: transparent !important;
|
|
1813
|
+
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1814
|
+
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1762
1815
|
}
|
|
1763
1816
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-child-taskbar-inner-div {
|
|
1764
|
-
background: #3f51b5 !important;
|
|
1765
|
-
border: #3f51b5 !important;
|
|
1817
|
+
background: #3f51b5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1818
|
+
border: #3f51b5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1766
1819
|
}
|
|
1767
1820
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-top {
|
|
1768
|
-
border-bottom-color: #3f51b5 !important;
|
|
1821
|
+
border-bottom-color: #3f51b5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1769
1822
|
}
|
|
1770
1823
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
|
|
1771
|
-
border-top-color: #3f51b5 !important;
|
|
1824
|
+
border-top-color: #3f51b5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1772
1825
|
}
|
|
1773
1826
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
|
|
1774
|
-
background: #8591d5 !important;
|
|
1775
|
-
border: #8591d5 !important;
|
|
1827
|
+
background: #8591d5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1828
|
+
border: #8591d5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1776
1829
|
}
|
|
1777
1830
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-top {
|
|
1778
|
-
border-bottom-color: #8591d5 !important;
|
|
1831
|
+
border-bottom-color: #8591d5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1779
1832
|
}
|
|
1780
1833
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
|
|
1781
|
-
border-top-color: #8591d5 !important;
|
|
1834
|
+
border-top-color: #8591d5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1782
1835
|
}
|
|
1783
1836
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
|
|
1784
|
-
border-color: #3f51b5 !important;
|
|
1837
|
+
border-color: #3f51b5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1785
1838
|
}
|
|
1786
1839
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-right-arrow {
|
|
1787
|
-
border-left-color: #3f51b5 !important;
|
|
1840
|
+
border-left-color: #3f51b5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1788
1841
|
}
|
|
1789
1842
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-left-arrow {
|
|
1790
|
-
border-right-color: #3f51b5 !important;
|
|
1843
|
+
border-right-color: #3f51b5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1791
1844
|
}
|
|
1792
1845
|
.e-gantt .e-icons {
|
|
1793
1846
|
color: rgba(0, 0, 0, 0.87);
|
|
1794
1847
|
}
|
|
1795
1848
|
.e-gantt .e-grid .e-icons:not(.e-stop):not(.e-check):not(.e-icon-left):not(.e-date-icon) {
|
|
1796
|
-
color: rgba(0, 0, 0, 0.54) !important;
|
|
1849
|
+
color: rgba(0, 0, 0, 0.54) !important; /* stylelint-disable-line declaration-no-important */
|
|
1797
1850
|
}
|
|
1798
1851
|
|
|
1799
1852
|
.e-gantt-dialog .e-dlg-header {
|