@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
|
@@ -80,6 +80,9 @@
|
|
|
80
80
|
color: #000;
|
|
81
81
|
top: 12px;
|
|
82
82
|
}
|
|
83
|
+
.e-multiselect .e-multi-select-wrapper input {
|
|
84
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
85
|
+
}
|
|
83
86
|
.e-multiselect .e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
84
87
|
color: #4f4f4f;
|
|
85
88
|
font-family: inherit;
|
|
@@ -172,6 +175,8 @@
|
|
|
172
175
|
width: 30px;
|
|
173
176
|
}
|
|
174
177
|
|
|
178
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
179
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
175
180
|
@keyframes material-spinner-rotate {
|
|
176
181
|
0% {
|
|
177
182
|
transform: rotate(0);
|
|
@@ -188,6 +193,7 @@
|
|
|
188
193
|
transform: rotate(360deg);
|
|
189
194
|
}
|
|
190
195
|
}
|
|
196
|
+
/* stylelint-disable */
|
|
191
197
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
192
198
|
height: 64px;
|
|
193
199
|
}
|
|
@@ -243,10 +249,10 @@
|
|
|
243
249
|
height: 241px !important;
|
|
244
250
|
}
|
|
245
251
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
246
|
-
height: 63px !important;
|
|
252
|
+
height: 63px !important; /* stylelint-disable-line declaration-no-important */
|
|
247
253
|
}
|
|
248
254
|
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
249
|
-
padding: 16px 4px 12px 18px !important;
|
|
255
|
+
padding: 16px 4px 12px 18px !important; /* stylelint-disable-line declaration-no-important */
|
|
250
256
|
}
|
|
251
257
|
.e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
252
258
|
left: 2px !important;
|
|
@@ -282,7 +288,7 @@
|
|
|
282
288
|
width: 554px !important;
|
|
283
289
|
}
|
|
284
290
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
285
|
-
padding: 0 16px !important;
|
|
291
|
+
padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
286
292
|
}
|
|
287
293
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
288
294
|
padding: 16px 9px 0 18px;
|
|
@@ -300,10 +306,10 @@
|
|
|
300
306
|
height: 78px !important;
|
|
301
307
|
}
|
|
302
308
|
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
303
|
-
border-bottom: 0 !important;
|
|
309
|
+
border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
304
310
|
}
|
|
305
311
|
.e-bigger .e-gantt-dialog > .e-dlg-content {
|
|
306
|
-
border-radius: 0 !important;
|
|
312
|
+
border-radius: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
307
313
|
}
|
|
308
314
|
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
309
315
|
border-radius: 6px 6px 0px 0px;
|
|
@@ -311,28 +317,28 @@
|
|
|
311
317
|
}
|
|
312
318
|
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
313
319
|
border-radius: 50%;
|
|
314
|
-
height: auto !important;
|
|
320
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
315
321
|
width: auto;
|
|
316
322
|
}
|
|
317
323
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
318
324
|
margin-left: 6px !important;
|
|
319
325
|
}
|
|
320
326
|
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
321
|
-
font-size: 16px !important;
|
|
327
|
+
font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
322
328
|
}
|
|
323
329
|
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
324
330
|
min-height: 38px !important;
|
|
325
|
-
min-width: 35.82px !important;
|
|
331
|
+
min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
|
|
326
332
|
}
|
|
327
333
|
.e-bigger .e-gantt-dialog .e-btn.e-flat {
|
|
328
334
|
line-height: 24px;
|
|
329
|
-
padding: 6px 16px 6px 15px !important;
|
|
335
|
+
padding: 6px 16px 6px 15px !important; /* stylelint-disable-line declaration-no-important */
|
|
330
336
|
}
|
|
331
337
|
.e-bigger .e-gantt-dialog .e-btn.e-primary {
|
|
332
|
-
padding: 6px 21px 6px 23px !important;
|
|
338
|
+
padding: 6px 21px 6px 23px !important; /* stylelint-disable-line declaration-no-important */
|
|
333
339
|
}
|
|
334
340
|
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
|
|
335
|
-
font-size: 16px !important;
|
|
341
|
+
font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
336
342
|
}
|
|
337
343
|
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
338
344
|
font-size: 14px;
|
|
@@ -347,17 +353,17 @@
|
|
|
347
353
|
}
|
|
348
354
|
.e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
349
355
|
min-height: 38px !important;
|
|
350
|
-
min-width: 35.82px !important;
|
|
356
|
+
min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
|
|
351
357
|
}
|
|
352
358
|
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
353
359
|
min-height: 38px !important;
|
|
354
|
-
min-width: 35.82px !important;
|
|
360
|
+
min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
|
|
355
361
|
}
|
|
356
362
|
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
|
|
357
363
|
height: 40px;
|
|
358
364
|
}
|
|
359
365
|
.e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
|
|
360
|
-
min-width: 36px !important;
|
|
366
|
+
min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
|
|
361
367
|
}
|
|
362
368
|
.e-bigger .e-predecessor-tooltip {
|
|
363
369
|
background-color: #000;
|
|
@@ -369,7 +375,7 @@
|
|
|
369
375
|
color: #757575 !important;
|
|
370
376
|
}
|
|
371
377
|
.e-bigger .e-predecessor-tooltip .e-tip-content {
|
|
372
|
-
padding: 3px !important;
|
|
378
|
+
padding: 3px !important; /* stylelint-disable-line declaration-no-important */
|
|
373
379
|
}
|
|
374
380
|
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
375
381
|
background-color: #000;
|
|
@@ -471,7 +477,7 @@
|
|
|
471
477
|
margin: 0;
|
|
472
478
|
}
|
|
473
479
|
.e-gantt .e-gantt-splitter .e-pane {
|
|
474
|
-
overflow: hidden !important;
|
|
480
|
+
overflow: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
475
481
|
}
|
|
476
482
|
.e-gantt .e-temp-content {
|
|
477
483
|
border-left: 1px solid;
|
|
@@ -498,19 +504,19 @@
|
|
|
498
504
|
height: 45px;
|
|
499
505
|
}
|
|
500
506
|
.e-gantt .e-gantt-tree-grid-pane .e-headercontent {
|
|
501
|
-
border-right-width: 0 !important;
|
|
507
|
+
border-right-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
502
508
|
}
|
|
503
509
|
.e-gantt .e-gantt-tree-grid-pane .e-gridheader {
|
|
504
510
|
border-top-style: none;
|
|
505
511
|
border-top-width: 0;
|
|
506
|
-
padding-right: 0 !important;
|
|
512
|
+
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
507
513
|
}
|
|
508
514
|
.e-gantt .e-gantt-tree-grid-pane .e-columnheader,
|
|
509
515
|
.e-gantt .e-gantt-tree-grid-pane .e-headercell {
|
|
510
|
-
height: 63px !important;
|
|
516
|
+
height: 63px !important; /* stylelint-disable-line declaration-no-important */
|
|
511
517
|
}
|
|
512
518
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
|
|
513
|
-
overflow-x: scroll !important;
|
|
519
|
+
overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
|
|
514
520
|
}
|
|
515
521
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
|
|
516
522
|
width: calc(100% + 17px);
|
|
@@ -535,7 +541,7 @@
|
|
|
535
541
|
border-right: 0 solid;
|
|
536
542
|
}
|
|
537
543
|
.e-gantt .e-gantt-chart .e-chart-root-container .e-content {
|
|
538
|
-
-webkit-overflow-scrolling: touch;
|
|
544
|
+
-webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
|
|
539
545
|
overflow-x: scroll;
|
|
540
546
|
overflow-y: auto;
|
|
541
547
|
position: relative;
|
|
@@ -1102,7 +1108,7 @@
|
|
|
1102
1108
|
}
|
|
1103
1109
|
.e-gantt-dialog .e-richtexteditor {
|
|
1104
1110
|
border-bottom-width: 1px;
|
|
1105
|
-
height: 241px !important;
|
|
1111
|
+
height: 241px !important; /* stylelint-disable-line declaration-no-important */
|
|
1106
1112
|
overflow: hidden;
|
|
1107
1113
|
}
|
|
1108
1114
|
.e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
|
|
@@ -1114,10 +1120,10 @@
|
|
|
1114
1120
|
overflow: hidden;
|
|
1115
1121
|
}
|
|
1116
1122
|
.e-gantt-dialog > .e-dlg-content {
|
|
1117
|
-
padding: 0 !important;
|
|
1123
|
+
padding: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1118
1124
|
}
|
|
1119
1125
|
.e-gantt-dialog .e-dlg-header-content {
|
|
1120
|
-
border-bottom: 0 !important;
|
|
1126
|
+
border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1121
1127
|
}
|
|
1122
1128
|
.e-gantt-dialog .e-dlg-header-content {
|
|
1123
1129
|
border-radius: 3px 3px 0px 0px;
|
|
@@ -1125,8 +1131,8 @@
|
|
|
1125
1131
|
}
|
|
1126
1132
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1127
1133
|
border-radius: 50%;
|
|
1128
|
-
height: auto !important;
|
|
1129
|
-
width: auto !important;
|
|
1134
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1135
|
+
width: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1130
1136
|
}
|
|
1131
1137
|
|
|
1132
1138
|
.e-icon-rowselect::before {
|
|
@@ -1134,9 +1140,9 @@
|
|
|
1134
1140
|
}
|
|
1135
1141
|
|
|
1136
1142
|
.e-ganttpopup {
|
|
1137
|
-
-moz-user-select: none;
|
|
1138
|
-
-ms-user-select: none;
|
|
1139
|
-
-webkit-user-select: none;
|
|
1143
|
+
-moz-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1144
|
+
-ms-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1145
|
+
-webkit-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1140
1146
|
font-weight: normal;
|
|
1141
1147
|
position: absolute;
|
|
1142
1148
|
user-select: none;
|
|
@@ -1290,7 +1296,7 @@
|
|
|
1290
1296
|
border-top-right-radius: 0px;
|
|
1291
1297
|
}
|
|
1292
1298
|
.e-gantt .e-grid .e-focused:not(.e-menu-item) {
|
|
1293
|
-
box-shadow: 0 0 0 1px white inset !important;
|
|
1299
|
+
box-shadow: 0 0 0 1px white inset !important; /* stylelint-disable-line declaration-no-important */
|
|
1294
1300
|
}
|
|
1295
1301
|
.e-gantt .e-temp-content {
|
|
1296
1302
|
border-color: #757575;
|
|
@@ -1305,7 +1311,7 @@
|
|
|
1305
1311
|
border-color: #757575;
|
|
1306
1312
|
}
|
|
1307
1313
|
.e-gantt .e-gantt-tree-grid-pane .e-timeline-single-header-outer-div {
|
|
1308
|
-
height: 45px !important;
|
|
1314
|
+
height: 45px !important; /* stylelint-disable-line declaration-no-important */
|
|
1309
1315
|
}
|
|
1310
1316
|
.e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active {
|
|
1311
1317
|
background: #400074;
|
|
@@ -1329,7 +1335,7 @@
|
|
|
1329
1335
|
line-height: 46px;
|
|
1330
1336
|
}
|
|
1331
1337
|
.e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
|
|
1332
|
-
height: 46px !important;
|
|
1338
|
+
height: 46px !important; /* stylelint-disable-line declaration-no-important */
|
|
1333
1339
|
}
|
|
1334
1340
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
1335
1341
|
height: 32px;
|
|
@@ -1619,73 +1625,73 @@
|
|
|
1619
1625
|
color: transparent;
|
|
1620
1626
|
}
|
|
1621
1627
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-task-label {
|
|
1622
|
-
color: transparent !important;
|
|
1628
|
+
color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1623
1629
|
}
|
|
1624
1630
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-line {
|
|
1625
|
-
border-color: #8A8A8A !important;
|
|
1631
|
+
border-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
1626
1632
|
}
|
|
1627
1633
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-right-arrow {
|
|
1628
|
-
border-left-color: #8A8A8A !important;
|
|
1634
|
+
border-left-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
1629
1635
|
}
|
|
1630
1636
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-left-arrow {
|
|
1631
|
-
border-right-color: #8A8A8A !important;
|
|
1637
|
+
border-right-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
1632
1638
|
}
|
|
1633
1639
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-taskbar-inner-div {
|
|
1634
|
-
background: #D5D5D5 !important;
|
|
1635
|
-
border: #D5D5D5 !important;
|
|
1640
|
+
background: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1641
|
+
border: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1636
1642
|
}
|
|
1637
1643
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-progressbar-inner-div {
|
|
1638
|
-
background-color: transparent !important;
|
|
1639
|
-
border: transparent !important;
|
|
1644
|
+
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1645
|
+
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1640
1646
|
}
|
|
1641
1647
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-top {
|
|
1642
|
-
border-bottom-color: #D5D5D5 !important;
|
|
1648
|
+
border-bottom-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1643
1649
|
}
|
|
1644
1650
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
|
|
1645
|
-
border-top-color: #D5D5D5 !important;
|
|
1651
|
+
border-top-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1646
1652
|
}
|
|
1647
1653
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
|
|
1648
|
-
background-color: #8A8A8A !important;
|
|
1649
|
-
border: #8A8A8A !important;
|
|
1654
|
+
background-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
1655
|
+
border: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
1650
1656
|
}
|
|
1651
1657
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-progressbar-inner-div {
|
|
1652
|
-
background-color: transparent !important;
|
|
1653
|
-
border: transparent !important;
|
|
1658
|
+
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1659
|
+
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1654
1660
|
}
|
|
1655
1661
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-child-taskbar-inner-div {
|
|
1656
|
-
background: #6e06f1 !important;
|
|
1657
|
-
border: #6e06f1 !important;
|
|
1662
|
+
background: #6e06f1 !important; /* stylelint-disable-line declaration-no-important */
|
|
1663
|
+
border: #6e06f1 !important; /* stylelint-disable-line declaration-no-important */
|
|
1658
1664
|
}
|
|
1659
1665
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-top {
|
|
1660
|
-
border-bottom-color: #6e06f1 !important;
|
|
1666
|
+
border-bottom-color: #6e06f1 !important; /* stylelint-disable-line declaration-no-important */
|
|
1661
1667
|
}
|
|
1662
1668
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
|
|
1663
|
-
border-top-color: #6e06f1 !important;
|
|
1669
|
+
border-top-color: #6e06f1 !important; /* stylelint-disable-line declaration-no-important */
|
|
1664
1670
|
}
|
|
1665
1671
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
|
|
1666
|
-
background: #6f07e0 !important;
|
|
1667
|
-
border: #6f07e0 !important;
|
|
1672
|
+
background: #6f07e0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1673
|
+
border: #6f07e0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1668
1674
|
}
|
|
1669
1675
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-top {
|
|
1670
|
-
border-bottom-color: #6f07e0 !important;
|
|
1676
|
+
border-bottom-color: #6f07e0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1671
1677
|
}
|
|
1672
1678
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
|
|
1673
|
-
border-top-color: #6f07e0 !important;
|
|
1679
|
+
border-top-color: #6f07e0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1674
1680
|
}
|
|
1675
1681
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
|
|
1676
|
-
border-color: #6e06f1 !important;
|
|
1682
|
+
border-color: #6e06f1 !important; /* stylelint-disable-line declaration-no-important */
|
|
1677
1683
|
}
|
|
1678
1684
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-right-arrow {
|
|
1679
|
-
border-left-color: #6e06f1 !important;
|
|
1685
|
+
border-left-color: #6e06f1 !important; /* stylelint-disable-line declaration-no-important */
|
|
1680
1686
|
}
|
|
1681
1687
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-left-arrow {
|
|
1682
|
-
border-right-color: #6e06f1 !important;
|
|
1688
|
+
border-right-color: #6e06f1 !important; /* stylelint-disable-line declaration-no-important */
|
|
1683
1689
|
}
|
|
1684
1690
|
.e-gantt .e-icons {
|
|
1685
1691
|
color: rgba(0, 0, 0, 0.87);
|
|
1686
1692
|
}
|
|
1687
1693
|
.e-gantt .e-grid .e-icons:not(.e-stop):not(.e-check):not(.e-icon-left):not(.e-date-icon) {
|
|
1688
|
-
color: #000 !important;
|
|
1694
|
+
color: #000 !important; /* stylelint-disable-line declaration-no-important */
|
|
1689
1695
|
}
|
|
1690
1696
|
|
|
1691
1697
|
.e-gantt-dialog .e-dlg-header {
|
|
@@ -1 +1,21 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/highcontrast-light-definition.scss';
|
|
2
|
+
@import 'ej2-grids/styles/grid/highcontrast-light-definition.scss';
|
|
3
|
+
@import 'ej2-treegrid/styles/treegrid/highcontrast-light-definition.scss';
|
|
4
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/highcontrast-light-definition.scss';
|
|
5
|
+
@import 'ej2-calendars/styles/datepicker/highcontrast-light-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/datetimepicker/highcontrast-light-definition.scss';
|
|
7
|
+
@import 'ej2-buttons/styles/button/highcontrast-light-definition.scss';
|
|
8
|
+
@import 'ej2-dropdowns/styles/drop-down-list/highcontrast-light-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/combo-box/highcontrast-light-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/highcontrast-light-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/toolbar/highcontrast-light-definition.scss';
|
|
12
|
+
@import 'ej2-navigations/styles/tab/highcontrast-light-definition.scss';
|
|
13
|
+
@import 'ej2-navigations/styles/context-menu/highcontrast-light-definition.scss';
|
|
14
|
+
@import 'ej2-inputs/styles/input/highcontrast-light-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/numerictextbox/highcontrast-light-definition.scss';
|
|
16
|
+
@import 'ej2-popups/styles/dialog/highcontrast-light-definition.scss';
|
|
17
|
+
@import 'ej2-popups/styles/spinner/highcontrast-light-definition.scss';
|
|
18
|
+
@import 'ej2-popups/styles/tooltip/highcontrast-light-definition.scss';
|
|
19
|
+
@import 'ej2-layouts/styles/splitter/highcontrast-light-definition.scss';
|
|
20
|
+
@import 'highcontrast-light-definition.scss';
|
|
21
|
+
@import 'all.scss';
|