@syncfusion/ej2-vue-gantt 20.2.50 → 20.3.47
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 +16 -0
- package/dist/ej2-vue-gantt.umd.min.js +1 -1
- package/dist/es6/ej2-vue-gantt.es2015.js +47 -54
- package/dist/es6/ej2-vue-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-gantt.es5.js +47 -54
- package/dist/es6/ej2-vue-gantt.es5.js.map +1 -1
- package/dist/global/ej2-vue-gantt.min.js +2 -2
- package/package.json +8 -8
- package/src/gantt/adddialogfields.directive.d.ts +0 -1
- package/src/gantt/adddialogfields.directive.js +5 -6
- package/src/gantt/columns.directive.d.ts +0 -1
- package/src/gantt/columns.directive.js +5 -6
- package/src/gantt/dayworkingtime.directive.d.ts +0 -1
- package/src/gantt/dayworkingtime.directive.js +5 -6
- package/src/gantt/editdialogfields.directive.d.ts +0 -1
- package/src/gantt/editdialogfields.directive.js +5 -6
- package/src/gantt/eventmarkers.directive.d.ts +0 -1
- package/src/gantt/eventmarkers.directive.js +5 -6
- package/src/gantt/gantt.component.d.ts +6 -7
- package/src/gantt/gantt.component.js +3 -4
- package/src/gantt/holidays.directive.d.ts +0 -1
- package/src/gantt/holidays.directive.js +5 -6
- 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
package/styles/fluent-dark.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,14 +330,17 @@
|
|
|
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;
|
|
337
340
|
}
|
|
341
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-content {
|
|
342
|
+
margin-bottom: 0;
|
|
343
|
+
}
|
|
338
344
|
.e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
339
345
|
font-size: 14px !important;
|
|
340
346
|
}
|
|
@@ -348,7 +354,7 @@
|
|
|
348
354
|
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
349
355
|
line-height: 28px;
|
|
350
356
|
}
|
|
351
|
-
.e-bigger .e-gantt .e-filter-popup {
|
|
357
|
+
.e-bigger .e-gantt .e-filter-popup.e-popup {
|
|
352
358
|
width: 392px !important;
|
|
353
359
|
}
|
|
354
360
|
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
@@ -361,12 +367,12 @@
|
|
|
361
367
|
.e-bigger .e-columnmenu {
|
|
362
368
|
top: 38px;
|
|
363
369
|
}
|
|
364
|
-
.e-bigger .e-gantt-dialog {
|
|
370
|
+
.e-bigger .e-gantt-dialog .e-dialog {
|
|
365
371
|
border-radius: 6px;
|
|
366
372
|
width: 580px !important;
|
|
367
373
|
}
|
|
368
374
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
369
|
-
padding: 0 16px !important;
|
|
375
|
+
padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
370
376
|
}
|
|
371
377
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
372
378
|
padding: 16px 8px 0 28px;
|
|
@@ -384,10 +390,10 @@
|
|
|
384
390
|
height: 84px !important;
|
|
385
391
|
}
|
|
386
392
|
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
387
|
-
border-bottom: 0 !important;
|
|
393
|
+
border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
388
394
|
}
|
|
389
395
|
.e-bigger .e-gantt-dialog > .e-dlg-content {
|
|
390
|
-
border-radius: 0 !important;
|
|
396
|
+
border-radius: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
391
397
|
}
|
|
392
398
|
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
393
399
|
border-radius: 6px 6px 0px 0px;
|
|
@@ -395,28 +401,28 @@
|
|
|
395
401
|
}
|
|
396
402
|
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
397
403
|
border-radius: 50%;
|
|
398
|
-
height: auto !important;
|
|
404
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
399
405
|
width: auto;
|
|
400
406
|
}
|
|
401
407
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
402
408
|
margin-left: 16px !important;
|
|
403
409
|
}
|
|
404
410
|
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
405
|
-
font-size: 16px !important;
|
|
411
|
+
font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
406
412
|
}
|
|
407
413
|
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
408
414
|
min-height: 35px !important;
|
|
409
|
-
min-width: 35.82px !important;
|
|
415
|
+
min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
|
|
410
416
|
}
|
|
411
417
|
.e-bigger .e-gantt-dialog .e-btn.e-flat {
|
|
412
418
|
line-height: 24px;
|
|
413
|
-
padding: 6px 16px 6px 15px !important;
|
|
419
|
+
padding: 6px 16px 6px 15px !important; /* stylelint-disable-line declaration-no-important */
|
|
414
420
|
}
|
|
415
421
|
.e-bigger .e-gantt-dialog .e-btn.e-primary {
|
|
416
|
-
padding: 6px 21px 6px 23px !important;
|
|
422
|
+
padding: 6px 21px 6px 23px !important; /* stylelint-disable-line declaration-no-important */
|
|
417
423
|
}
|
|
418
424
|
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
|
|
419
|
-
font-size: 16px !important;
|
|
425
|
+
font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
420
426
|
}
|
|
421
427
|
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
422
428
|
font-size: 14px;
|
|
@@ -431,20 +437,24 @@
|
|
|
431
437
|
}
|
|
432
438
|
.e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
433
439
|
min-height: 35px !important;
|
|
434
|
-
min-width: 35.82px !important;
|
|
440
|
+
min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
|
|
435
441
|
}
|
|
436
442
|
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
437
443
|
min-height: 35px !important;
|
|
438
|
-
min-width: 35.82px !important;
|
|
444
|
+
min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
|
|
439
445
|
}
|
|
440
446
|
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
|
|
441
447
|
height: 40px;
|
|
442
448
|
}
|
|
443
449
|
.e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
|
|
444
|
-
min-width: 36px !important;
|
|
450
|
+
min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
|
|
445
451
|
}
|
|
446
|
-
.e-bigger .e-predecessor-tooltip {
|
|
447
|
-
|
|
452
|
+
.e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
|
|
453
|
+
border-top: 8px solid #000;
|
|
454
|
+
border-top: 12.5px solid #000;
|
|
455
|
+
}
|
|
456
|
+
.e-bigger .e-predecessor-tooltip .e-arrow-tip-inner.e-tip-bottom {
|
|
457
|
+
color: #000;
|
|
448
458
|
}
|
|
449
459
|
.e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
|
|
450
460
|
color: #484644 !important;
|
|
@@ -453,12 +463,12 @@
|
|
|
453
463
|
color: #484644 !important;
|
|
454
464
|
}
|
|
455
465
|
.e-bigger .e-predecessor-tooltip .e-tip-content {
|
|
456
|
-
padding: 3px !important;
|
|
466
|
+
padding: 3px !important; /* stylelint-disable-line declaration-no-important */
|
|
457
467
|
}
|
|
458
468
|
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
459
469
|
background-color: #000;
|
|
460
470
|
border-color: #000;
|
|
461
|
-
color: #
|
|
471
|
+
color: #eff6fc;
|
|
462
472
|
font-size: 12px;
|
|
463
473
|
line-height: 18px;
|
|
464
474
|
padding: 0 8px 0 0;
|
|
@@ -466,7 +476,7 @@
|
|
|
466
476
|
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
|
|
467
477
|
background-color: #000;
|
|
468
478
|
border-color: #000;
|
|
469
|
-
color: #
|
|
479
|
+
color: #eff6fc;
|
|
470
480
|
font-size: 12px;
|
|
471
481
|
line-height: 18px;
|
|
472
482
|
padding: 0 0 0 8px;
|
|
@@ -477,6 +487,10 @@
|
|
|
477
487
|
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
478
488
|
background-color: #201f1e;
|
|
479
489
|
padding: 10px 9px 9px 14px !important;
|
|
490
|
+
font-size: 12px;
|
|
491
|
+
font-weight: 400;
|
|
492
|
+
line-height: 1.8;
|
|
493
|
+
margin-bottom: 0;
|
|
480
494
|
}
|
|
481
495
|
|
|
482
496
|
.e-gantt {
|
|
@@ -555,7 +569,7 @@
|
|
|
555
569
|
margin: 0;
|
|
556
570
|
}
|
|
557
571
|
.e-gantt .e-gantt-splitter .e-pane {
|
|
558
|
-
overflow: hidden !important;
|
|
572
|
+
overflow: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
559
573
|
}
|
|
560
574
|
.e-gantt .e-temp-content {
|
|
561
575
|
border-left: 1px solid;
|
|
@@ -582,19 +596,19 @@
|
|
|
582
596
|
height: 45px;
|
|
583
597
|
}
|
|
584
598
|
.e-gantt .e-gantt-tree-grid-pane .e-headercontent {
|
|
585
|
-
border-right-width: 0 !important;
|
|
599
|
+
border-right-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
586
600
|
}
|
|
587
601
|
.e-gantt .e-gantt-tree-grid-pane .e-gridheader {
|
|
588
602
|
border-top-style: none;
|
|
589
603
|
border-top-width: 0;
|
|
590
|
-
padding-right: 0 !important;
|
|
604
|
+
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
591
605
|
}
|
|
592
606
|
.e-gantt .e-gantt-tree-grid-pane .e-columnheader,
|
|
593
607
|
.e-gantt .e-gantt-tree-grid-pane .e-headercell {
|
|
594
|
-
height: 51px !important;
|
|
608
|
+
height: 51px !important; /* stylelint-disable-line declaration-no-important */
|
|
595
609
|
}
|
|
596
610
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
|
|
597
|
-
overflow-x: scroll !important;
|
|
611
|
+
overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
|
|
598
612
|
}
|
|
599
613
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
|
|
600
614
|
width: calc(100% + 17px);
|
|
@@ -619,7 +633,7 @@
|
|
|
619
633
|
border-right: 0 solid;
|
|
620
634
|
}
|
|
621
635
|
.e-gantt .e-gantt-chart .e-chart-root-container .e-content {
|
|
622
|
-
-webkit-overflow-scrolling: touch;
|
|
636
|
+
-webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
|
|
623
637
|
overflow-x: scroll;
|
|
624
638
|
overflow-y: auto;
|
|
625
639
|
position: relative;
|
|
@@ -1186,7 +1200,7 @@
|
|
|
1186
1200
|
}
|
|
1187
1201
|
.e-gantt-dialog .e-richtexteditor {
|
|
1188
1202
|
border-bottom-width: 0px;
|
|
1189
|
-
height: 241px !important;
|
|
1203
|
+
height: 241px !important; /* stylelint-disable-line declaration-no-important */
|
|
1190
1204
|
overflow: hidden;
|
|
1191
1205
|
}
|
|
1192
1206
|
.e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
|
|
@@ -1198,10 +1212,10 @@
|
|
|
1198
1212
|
overflow: hidden;
|
|
1199
1213
|
}
|
|
1200
1214
|
.e-gantt-dialog > .e-dlg-content {
|
|
1201
|
-
padding: 0 !important;
|
|
1215
|
+
padding: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1202
1216
|
}
|
|
1203
1217
|
.e-gantt-dialog .e-dlg-header-content {
|
|
1204
|
-
border-bottom: 0 !important;
|
|
1218
|
+
border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1205
1219
|
}
|
|
1206
1220
|
.e-gantt-dialog .e-dlg-header-content {
|
|
1207
1221
|
border-radius: 3px 3px 0px 0px;
|
|
@@ -1209,8 +1223,8 @@
|
|
|
1209
1223
|
}
|
|
1210
1224
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1211
1225
|
border-radius: 50%;
|
|
1212
|
-
height: auto !important;
|
|
1213
|
-
width: auto !important;
|
|
1226
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1227
|
+
width: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1214
1228
|
}
|
|
1215
1229
|
|
|
1216
1230
|
.e-icon-rowselect::before {
|
|
@@ -1218,9 +1232,9 @@
|
|
|
1218
1232
|
}
|
|
1219
1233
|
|
|
1220
1234
|
.e-ganttpopup {
|
|
1221
|
-
-moz-user-select: none;
|
|
1222
|
-
-ms-user-select: none;
|
|
1223
|
-
-webkit-user-select: none;
|
|
1235
|
+
-moz-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1236
|
+
-ms-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1237
|
+
-webkit-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1224
1238
|
font-weight: normal;
|
|
1225
1239
|
position: absolute;
|
|
1226
1240
|
user-select: none;
|
|
@@ -1343,8 +1357,54 @@
|
|
|
1343
1357
|
}
|
|
1344
1358
|
|
|
1345
1359
|
.e-predecessor-tooltip {
|
|
1360
|
+
background-color: #000 !important; /* stylelint-disable-line declaration-no-important */
|
|
1361
|
+
border-color: #000 !important; /* stylelint-disable-line declaration-no-important */
|
|
1346
1362
|
visibility: hidden;
|
|
1347
1363
|
}
|
|
1364
|
+
.e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
|
|
1365
|
+
border-top: 8px solid #000;
|
|
1366
|
+
border-top: 12.5px solid #000;
|
|
1367
|
+
}
|
|
1368
|
+
.e-predecessor-tooltip .e-arrow-tip-inner.e-tip-bottom {
|
|
1369
|
+
color: #000;
|
|
1370
|
+
}
|
|
1371
|
+
.e-predecessor-tooltip .e-left-btn:disabled {
|
|
1372
|
+
color: #484644 !important;
|
|
1373
|
+
}
|
|
1374
|
+
.e-predecessor-tooltip .e-right-btn:disabled {
|
|
1375
|
+
color: #484644 !important;
|
|
1376
|
+
}
|
|
1377
|
+
.e-predecessor-tooltip .e-tip-content {
|
|
1378
|
+
padding: 3px !important; /* stylelint-disable-line declaration-no-important */
|
|
1379
|
+
}
|
|
1380
|
+
.e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
1381
|
+
background-color: #000;
|
|
1382
|
+
border-color: #000;
|
|
1383
|
+
color: #eff6fc;
|
|
1384
|
+
font-size: 12px;
|
|
1385
|
+
line-height: 18px;
|
|
1386
|
+
padding: 0 8px 0 0;
|
|
1387
|
+
}
|
|
1388
|
+
.e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
|
|
1389
|
+
background-color: #000;
|
|
1390
|
+
border-color: #000;
|
|
1391
|
+
color: #eff6fc;
|
|
1392
|
+
font-size: 12px;
|
|
1393
|
+
line-height: 18px;
|
|
1394
|
+
padding: 0 0 0 8px;
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
.e-predecessor-dialog {
|
|
1398
|
+
background-color: #201f1e;
|
|
1399
|
+
}
|
|
1400
|
+
.e-predecessor-dialog .e-dlg-content {
|
|
1401
|
+
background-color: #201f1e;
|
|
1402
|
+
padding: 10px 9px 9px 14px !important;
|
|
1403
|
+
font-size: 12px;
|
|
1404
|
+
font-weight: 400;
|
|
1405
|
+
line-height: 1.8;
|
|
1406
|
+
margin-bottom: 0;
|
|
1407
|
+
}
|
|
1348
1408
|
|
|
1349
1409
|
/*! Gantt theme */
|
|
1350
1410
|
.e-gantt .e-gantt-splitter {
|
|
@@ -1374,7 +1434,7 @@
|
|
|
1374
1434
|
border-top-right-radius: 0px;
|
|
1375
1435
|
}
|
|
1376
1436
|
.e-gantt .e-grid .e-focused:not(.e-menu-item) {
|
|
1377
|
-
box-shadow: 0 0 0 1px #a19f9d inset !important;
|
|
1437
|
+
box-shadow: 0 0 0 1px #a19f9d inset !important; /* stylelint-disable-line declaration-no-important */
|
|
1378
1438
|
}
|
|
1379
1439
|
.e-gantt .e-temp-content {
|
|
1380
1440
|
border-color: #292827;
|
|
@@ -1389,7 +1449,7 @@
|
|
|
1389
1449
|
border-color: #292827;
|
|
1390
1450
|
}
|
|
1391
1451
|
.e-gantt .e-gantt-tree-grid-pane .e-timeline-single-header-outer-div {
|
|
1392
|
-
height: 45px !important;
|
|
1452
|
+
height: 45px !important; /* stylelint-disable-line declaration-no-important */
|
|
1393
1453
|
}
|
|
1394
1454
|
.e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active {
|
|
1395
1455
|
background: #292827;
|
|
@@ -1413,7 +1473,7 @@
|
|
|
1413
1473
|
line-height: 46px;
|
|
1414
1474
|
}
|
|
1415
1475
|
.e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
|
|
1416
|
-
height: 46px !important;
|
|
1476
|
+
height: 46px !important; /* stylelint-disable-line declaration-no-important */
|
|
1417
1477
|
}
|
|
1418
1478
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
1419
1479
|
height: 26px;
|
|
@@ -1446,7 +1506,7 @@
|
|
|
1446
1506
|
border-radius: 4px;
|
|
1447
1507
|
}
|
|
1448
1508
|
.e-gantt .e-gantt-chart .e-collapse-parent .e-gantt-child-taskbar-inner-div {
|
|
1449
|
-
border: 1px solid #
|
|
1509
|
+
border: 1px solid #fff;
|
|
1450
1510
|
border-bottom: 0;
|
|
1451
1511
|
border-top: 0;
|
|
1452
1512
|
}
|
|
@@ -1622,7 +1682,7 @@
|
|
|
1622
1682
|
border-top-left-radius: 2px;
|
|
1623
1683
|
}
|
|
1624
1684
|
.e-gantt .e-gantt-chart .e-task-label {
|
|
1625
|
-
color: #
|
|
1685
|
+
color: #fff;
|
|
1626
1686
|
font-size: 12px;
|
|
1627
1687
|
}
|
|
1628
1688
|
.e-gantt .e-gantt-chart .e-icon {
|
|
@@ -1703,73 +1763,73 @@
|
|
|
1703
1763
|
color: transparent;
|
|
1704
1764
|
}
|
|
1705
1765
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-task-label {
|
|
1706
|
-
color: transparent !important;
|
|
1766
|
+
color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1707
1767
|
}
|
|
1708
1768
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-line {
|
|
1709
|
-
border-color: #323130 !important;
|
|
1769
|
+
border-color: #323130 !important; /* stylelint-disable-line declaration-no-important */
|
|
1710
1770
|
}
|
|
1711
1771
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-right-arrow {
|
|
1712
|
-
border-left-color: #323130 !important;
|
|
1772
|
+
border-left-color: #323130 !important; /* stylelint-disable-line declaration-no-important */
|
|
1713
1773
|
}
|
|
1714
1774
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-left-arrow {
|
|
1715
|
-
border-right-color: #323130 !important;
|
|
1775
|
+
border-right-color: #323130 !important; /* stylelint-disable-line declaration-no-important */
|
|
1716
1776
|
}
|
|
1717
1777
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-taskbar-inner-div {
|
|
1718
|
-
background: #005a9e !important;
|
|
1719
|
-
border: #005a9e !important;
|
|
1778
|
+
background: #005a9e !important; /* stylelint-disable-line declaration-no-important */
|
|
1779
|
+
border: #005a9e !important; /* stylelint-disable-line declaration-no-important */
|
|
1720
1780
|
}
|
|
1721
1781
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-progressbar-inner-div {
|
|
1722
|
-
background-color: transparent !important;
|
|
1723
|
-
border: transparent !important;
|
|
1782
|
+
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1783
|
+
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1724
1784
|
}
|
|
1725
1785
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-top {
|
|
1726
|
-
border-bottom-color: #005a9e !important;
|
|
1786
|
+
border-bottom-color: #005a9e !important; /* stylelint-disable-line declaration-no-important */
|
|
1727
1787
|
}
|
|
1728
1788
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
|
|
1729
|
-
border-top-color: #005a9e !important;
|
|
1789
|
+
border-top-color: #005a9e !important; /* stylelint-disable-line declaration-no-important */
|
|
1730
1790
|
}
|
|
1731
1791
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
|
|
1732
|
-
background-color: #323130 !important;
|
|
1733
|
-
border: #323130 !important;
|
|
1792
|
+
background-color: #323130 !important; /* stylelint-disable-line declaration-no-important */
|
|
1793
|
+
border: #323130 !important; /* stylelint-disable-line declaration-no-important */
|
|
1734
1794
|
}
|
|
1735
1795
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-progressbar-inner-div {
|
|
1736
|
-
background-color: transparent !important;
|
|
1737
|
-
border: transparent !important;
|
|
1796
|
+
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1797
|
+
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1738
1798
|
}
|
|
1739
1799
|
.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;
|
|
1800
|
+
background: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1801
|
+
border: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1742
1802
|
}
|
|
1743
1803
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-top {
|
|
1744
|
-
border-bottom-color: #0078d4 !important;
|
|
1804
|
+
border-bottom-color: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1745
1805
|
}
|
|
1746
1806
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
|
|
1747
|
-
border-top-color: #0078d4 !important;
|
|
1807
|
+
border-top-color: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1748
1808
|
}
|
|
1749
1809
|
.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;
|
|
1810
|
+
background: #3baaff !important; /* stylelint-disable-line declaration-no-important */
|
|
1811
|
+
border: #3baaff !important; /* stylelint-disable-line declaration-no-important */
|
|
1752
1812
|
}
|
|
1753
1813
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-top {
|
|
1754
|
-
border-bottom-color: #3baaff !important;
|
|
1814
|
+
border-bottom-color: #3baaff !important; /* stylelint-disable-line declaration-no-important */
|
|
1755
1815
|
}
|
|
1756
1816
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
|
|
1757
|
-
border-top-color: #3baaff !important;
|
|
1817
|
+
border-top-color: #3baaff !important; /* stylelint-disable-line declaration-no-important */
|
|
1758
1818
|
}
|
|
1759
1819
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
|
|
1760
|
-
border-color: #0078d4 !important;
|
|
1820
|
+
border-color: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1761
1821
|
}
|
|
1762
1822
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-right-arrow {
|
|
1763
|
-
border-left-color: #0078d4 !important;
|
|
1823
|
+
border-left-color: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1764
1824
|
}
|
|
1765
1825
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-left-arrow {
|
|
1766
|
-
border-right-color: #0078d4 !important;
|
|
1826
|
+
border-right-color: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1767
1827
|
}
|
|
1768
1828
|
.e-gantt .e-icons {
|
|
1769
1829
|
color: #a19f9d;
|
|
1770
1830
|
}
|
|
1771
1831
|
.e-gantt .e-grid .e-icons:not(.e-stop):not(.e-check):not(.e-icon-left):not(.e-date-icon) {
|
|
1772
|
-
color: #a19f9d !important;
|
|
1832
|
+
color: #a19f9d !important; /* stylelint-disable-line declaration-no-important */
|
|
1773
1833
|
}
|
|
1774
1834
|
|
|
1775
1835
|
.e-gantt-dialog .e-dlg-header {
|