@syncfusion/ej2-vue-gantt 20.1.58 → 20.1.59
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 +9 -0
- package/dist/ej2-vue-gantt.umd.min.js +29 -2
- package/dist/ej2-vue-gantt.umd.min.js.map +1 -1
- package/dist/global/ej2-vue-gantt.min.js +2 -2
- package/package.json +6 -6
- package/styles/bootstrap-dark.css +217 -11
- package/styles/bootstrap.css +218 -13
- package/styles/bootstrap4.css +220 -11
- package/styles/bootstrap5-dark.css +218 -13
- package/styles/bootstrap5.css +218 -13
- package/styles/fabric-dark.css +216 -10
- package/styles/fabric.css +217 -11
- package/styles/fluent-dark.css +217 -11
- package/styles/fluent.css +217 -11
- package/styles/gantt/bootstrap-dark.css +217 -11
- package/styles/gantt/bootstrap.css +218 -13
- package/styles/gantt/bootstrap4.css +220 -11
- package/styles/gantt/bootstrap5-dark.css +218 -13
- package/styles/gantt/bootstrap5.css +218 -13
- package/styles/gantt/fabric-dark.css +216 -10
- package/styles/gantt/fabric.css +217 -11
- package/styles/gantt/fluent-dark.css +217 -11
- package/styles/gantt/fluent.css +217 -11
- package/styles/gantt/highcontrast-light.css +209 -11
- package/styles/gantt/highcontrast.css +217 -11
- package/styles/gantt/material-dark.css +224 -11
- package/styles/gantt/material.css +224 -11
- package/styles/gantt/tailwind-dark.css +223 -11
- package/styles/gantt/tailwind.css +223 -11
- package/styles/highcontrast-light.css +209 -11
- package/styles/highcontrast.css +217 -11
- package/styles/material-dark.css +224 -11
- package/styles/material.css +224 -11
- package/styles/tailwind-dark.css +223 -11
- package/styles/tailwind.css +223 -11
|
@@ -194,20 +194,214 @@
|
|
|
194
194
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
195
195
|
height: 32px;
|
|
196
196
|
}
|
|
197
|
+
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
198
|
+
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
199
|
+
padding-left: 10px;
|
|
200
|
+
padding-right: 10px;
|
|
201
|
+
width: 30px;
|
|
202
|
+
}
|
|
203
|
+
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
|
|
204
|
+
border-radius: 4px !important;
|
|
205
|
+
font-size: 12px !important;
|
|
206
|
+
height: 26px !important;
|
|
207
|
+
padding: 4px 11px 4px 8px !important;
|
|
208
|
+
top: 36px !important;
|
|
209
|
+
}
|
|
210
|
+
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
211
|
+
border-bottom: 6px solid transparent;
|
|
212
|
+
border-right: 6px solid transparent;
|
|
213
|
+
border-right-color: #FFF;
|
|
214
|
+
border-top: 6px solid transparent;
|
|
215
|
+
top: 43px !important;
|
|
216
|
+
}
|
|
217
|
+
.e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper::before,
|
|
218
|
+
.e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper::before {
|
|
219
|
+
content: "\e92c";
|
|
220
|
+
}
|
|
221
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right,
|
|
222
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left,
|
|
223
|
+
.e-bigger .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
|
|
224
|
+
.e-bigger .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
|
|
225
|
+
border-radius: 50%;
|
|
226
|
+
display: inline-block;
|
|
227
|
+
position: absolute;
|
|
228
|
+
}
|
|
229
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
230
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
231
|
+
border-style: solid;
|
|
232
|
+
border-width: 1px;
|
|
233
|
+
box-sizing: content-box;
|
|
234
|
+
cursor: pointer;
|
|
235
|
+
display: inline-block;
|
|
236
|
+
}
|
|
237
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
238
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
239
|
+
background-color: #ffd939;
|
|
240
|
+
border-color: #000;
|
|
241
|
+
}
|
|
242
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
243
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
|
|
244
|
+
background-color: #ffd939;
|
|
245
|
+
border-color: #000;
|
|
246
|
+
outline: 2px solid #e7f1ff;
|
|
247
|
+
}
|
|
197
248
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
198
249
|
height: 63px !important;
|
|
199
250
|
}
|
|
251
|
+
.e-bigger .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
252
|
+
background-color: #000000;
|
|
253
|
+
border-color: #000000;
|
|
254
|
+
color: #F9FAFB;
|
|
255
|
+
font-size: 12px;
|
|
256
|
+
line-height: 18px;
|
|
257
|
+
padding: 0 8px 0 0;
|
|
258
|
+
}
|
|
259
|
+
.e-bigger .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
|
|
260
|
+
background-color: #000000;
|
|
261
|
+
border-color: #000000;
|
|
262
|
+
color: #F9FAFB;
|
|
263
|
+
font-size: 12px;
|
|
264
|
+
line-height: 18px;
|
|
265
|
+
padding: 0 0 0 8px;
|
|
266
|
+
}
|
|
267
|
+
.e-bigger .e-tooltip-wrap .e-tip-content {
|
|
268
|
+
padding: 3px !important;
|
|
269
|
+
}
|
|
270
|
+
.e-bigger .e-grid .e-flmenu-valuediv {
|
|
271
|
+
padding: 20px 0 0 !important;
|
|
272
|
+
}
|
|
273
|
+
.e-bigger .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
274
|
+
padding: 0 16px !important;
|
|
275
|
+
}
|
|
200
276
|
.e-bigger .e-columnmenu {
|
|
201
277
|
top: 45px;
|
|
202
278
|
}
|
|
279
|
+
.e-bigger .e-gantt-dialog {
|
|
280
|
+
border-radius: 6px;
|
|
281
|
+
width: 554px !important;
|
|
282
|
+
}
|
|
203
283
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
204
|
-
padding: 16px
|
|
284
|
+
padding: 16px 9px 0 18px;
|
|
205
285
|
}
|
|
206
286
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
207
|
-
padding: 16px 18px 0
|
|
287
|
+
padding: 16px 18px 0 9px;
|
|
208
288
|
}
|
|
209
289
|
.e-bigger .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
210
|
-
padding: 16px 18px 0
|
|
290
|
+
padding: 16px 18px 0 9px;
|
|
291
|
+
}
|
|
292
|
+
.e-bigger .e-gantt-dialog .e-edit-form-row {
|
|
293
|
+
height: 241px !important;
|
|
294
|
+
}
|
|
295
|
+
.e-bigger .e-gantt-dialog .e-edit-form-column {
|
|
296
|
+
height: 78px !important;
|
|
297
|
+
}
|
|
298
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
299
|
+
border-bottom: 0 !important;
|
|
300
|
+
}
|
|
301
|
+
.e-bigger .e-gantt-dialog > .e-dlg-content {
|
|
302
|
+
border-radius: 0 !important;
|
|
303
|
+
}
|
|
304
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
305
|
+
border-radius: 6px 6px 0px 0px;
|
|
306
|
+
padding-bottom: 4px;
|
|
307
|
+
}
|
|
308
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
309
|
+
border-radius: 50%;
|
|
310
|
+
height: auto !important;
|
|
311
|
+
width: auto !important;
|
|
312
|
+
}
|
|
313
|
+
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
314
|
+
margin-left: 6px !important;
|
|
315
|
+
}
|
|
316
|
+
.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
317
|
+
font-size: 16px !important;
|
|
318
|
+
}
|
|
319
|
+
.e-bigger .e-float-input.e-control-wrapper {
|
|
320
|
+
width: 250px !important;
|
|
321
|
+
}
|
|
322
|
+
.e-bigger .e-predecessor-tooltip {
|
|
323
|
+
background-color: #000000;
|
|
324
|
+
}
|
|
325
|
+
.e-bigger .e-predecessor-dialog {
|
|
326
|
+
background-color: #1a1a1a;
|
|
327
|
+
}
|
|
328
|
+
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
329
|
+
background-color: #1a1a1a;
|
|
330
|
+
padding: 10px 9px 9px 14px !important;
|
|
331
|
+
}
|
|
332
|
+
.e-bigger .e-dialog .e-dlg-header-content {
|
|
333
|
+
padding: 16px 4px 12px 18px !important;
|
|
334
|
+
}
|
|
335
|
+
.e-bigger .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
336
|
+
left: 2px !important;
|
|
337
|
+
}
|
|
338
|
+
.e-bigger .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
339
|
+
font-size: 12px !important;
|
|
340
|
+
}
|
|
341
|
+
.e-bigger .e-dialog .e-footer-content {
|
|
342
|
+
height: 76px !important;
|
|
343
|
+
padding: 19px 18px 19px 16px !important;
|
|
344
|
+
}
|
|
345
|
+
.e-bigger .e-dialog .e-footer-content .e-btn {
|
|
346
|
+
margin-left: 12px;
|
|
347
|
+
}
|
|
348
|
+
.e-bigger .e-dialog .e-dlg-header {
|
|
349
|
+
line-height: 28px;
|
|
350
|
+
}
|
|
351
|
+
.e-bigger .e-tab .e-content {
|
|
352
|
+
height: 241px !important;
|
|
353
|
+
}
|
|
354
|
+
.e-bigger .e-filter-popup {
|
|
355
|
+
width: 307px !important;
|
|
356
|
+
}
|
|
357
|
+
.e-bigger .e-dlg-content {
|
|
358
|
+
border-radius: 0px !important;
|
|
359
|
+
padding: 20px 18px 0px 18px !important;
|
|
360
|
+
}
|
|
361
|
+
.e-bigger .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
362
|
+
font-size: 14px;
|
|
363
|
+
line-height: 22px;
|
|
364
|
+
}
|
|
365
|
+
.e-bigger .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
366
|
+
font-size: 14px;
|
|
367
|
+
line-height: 22px;
|
|
368
|
+
}
|
|
369
|
+
.e-bigger .e-float-input.e-control-wrapper input {
|
|
370
|
+
height: 38px !important;
|
|
371
|
+
}
|
|
372
|
+
.e-bigger .e-left-btn:disabled {
|
|
373
|
+
color: #757575 !important;
|
|
374
|
+
}
|
|
375
|
+
.e-bigger .e-right-btn:disabled {
|
|
376
|
+
color: #757575 !important;
|
|
377
|
+
}
|
|
378
|
+
.e-bigger .e-input-group-icon.e-date-icon {
|
|
379
|
+
min-width: 36px !important;
|
|
380
|
+
}
|
|
381
|
+
.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
382
|
+
min-height: 38px !important;
|
|
383
|
+
min-width: 35.82px !important;
|
|
384
|
+
}
|
|
385
|
+
.e-bigger .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
386
|
+
min-height: 38px !important;
|
|
387
|
+
min-width: 35.82px !important;
|
|
388
|
+
}
|
|
389
|
+
.e-bigger .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
390
|
+
min-height: 38px !important;
|
|
391
|
+
min-width: 35.82px !important;
|
|
392
|
+
}
|
|
393
|
+
.e-bigger .e-input-group.e-control-wrapper {
|
|
394
|
+
height: 40px;
|
|
395
|
+
}
|
|
396
|
+
.e-bigger .e-datetime-wrapper .e-time-icon.e-icons::before {
|
|
397
|
+
font-size: 16px !important;
|
|
398
|
+
}
|
|
399
|
+
.e-bigger .e-btn.e-flat {
|
|
400
|
+
line-height: 24px;
|
|
401
|
+
padding: 6px 16px 6px 15px !important;
|
|
402
|
+
}
|
|
403
|
+
.e-bigger .e-btn.e-primary {
|
|
404
|
+
padding: 6px 21px 6px 23px !important;
|
|
211
405
|
}
|
|
212
406
|
|
|
213
407
|
.e-gantt {
|
|
@@ -362,9 +556,11 @@
|
|
|
362
556
|
position: absolute;
|
|
363
557
|
}
|
|
364
558
|
.e-gantt .e-gantt-chart .e-chart-root-container .e-holiday-container {
|
|
559
|
+
height: 100%;
|
|
365
560
|
position: absolute;
|
|
366
561
|
}
|
|
367
562
|
.e-gantt .e-gantt-chart .e-chart-root-container .e-weekend-container {
|
|
563
|
+
height: 100%;
|
|
368
564
|
position: absolute;
|
|
369
565
|
}
|
|
370
566
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
@@ -613,37 +809,35 @@
|
|
|
613
809
|
cursor: col-resize;
|
|
614
810
|
}
|
|
615
811
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
|
|
616
|
-
border-style: solid;
|
|
617
812
|
border-width: 1px;
|
|
618
813
|
box-sizing: content-box;
|
|
619
814
|
cursor: col-resize;
|
|
620
815
|
height: 2px;
|
|
621
816
|
position: absolute;
|
|
622
817
|
top: 7px;
|
|
623
|
-
width: 12px;
|
|
624
818
|
}
|
|
625
819
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
626
820
|
border-bottom-style: solid;
|
|
627
|
-
border-bottom-width:
|
|
821
|
+
border-bottom-width: 8px;
|
|
628
822
|
border-left: 7px solid transparent;
|
|
629
823
|
border-right: 7px solid transparent;
|
|
630
824
|
cursor: col-resize;
|
|
631
825
|
height: 0;
|
|
632
|
-
left:
|
|
826
|
+
left: 0;
|
|
633
827
|
position: absolute;
|
|
634
828
|
top: -7px;
|
|
635
829
|
width: 0;
|
|
636
830
|
}
|
|
637
831
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
638
832
|
border-bottom-style: solid;
|
|
639
|
-
border-bottom-width:
|
|
833
|
+
border-bottom-width: 8px;
|
|
640
834
|
border-left: 6px solid transparent;
|
|
641
835
|
border-right: 6px solid transparent;
|
|
642
836
|
cursor: col-resize;
|
|
643
837
|
height: 0;
|
|
644
|
-
left:
|
|
838
|
+
left: 1px;
|
|
645
839
|
position: absolute;
|
|
646
|
-
top: -
|
|
840
|
+
top: -7px;
|
|
647
841
|
width: 0;
|
|
648
842
|
}
|
|
649
843
|
.e-gantt .e-gantt-chart .e-baseline-bar {
|
|
@@ -1070,6 +1264,10 @@
|
|
|
1070
1264
|
height: 100%;
|
|
1071
1265
|
}
|
|
1072
1266
|
|
|
1267
|
+
.e-predecessor-tooltip {
|
|
1268
|
+
visibility: hidden;
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1073
1271
|
/*! Gantt theme */
|
|
1074
1272
|
.e-gantt .e-gantt-splitter {
|
|
1075
1273
|
border-color: #757575;
|
|
@@ -1287,7 +1485,7 @@
|
|
|
1287
1485
|
}
|
|
1288
1486
|
.e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
1289
1487
|
.e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
1290
|
-
background-color: #
|
|
1488
|
+
background-color: #ffd939;
|
|
1291
1489
|
border-color: #000;
|
|
1292
1490
|
}
|
|
1293
1491
|
.e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
@@ -279,26 +279,228 @@
|
|
|
279
279
|
content: "\e903";
|
|
280
280
|
}
|
|
281
281
|
|
|
282
|
+
.e-gantt-tooltip-arrow-left::before {
|
|
283
|
+
content: "\e85b";
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.e-gantt-tooltip-arrow-right::before {
|
|
287
|
+
content: "\e85f";
|
|
288
|
+
}
|
|
289
|
+
|
|
282
290
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
283
291
|
height: 64px;
|
|
284
292
|
}
|
|
285
293
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
286
294
|
height: 32px;
|
|
287
295
|
}
|
|
296
|
+
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
297
|
+
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
298
|
+
padding-left: 10px;
|
|
299
|
+
padding-right: 10px;
|
|
300
|
+
width: 30px;
|
|
301
|
+
}
|
|
302
|
+
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
|
|
303
|
+
border-radius: 4px !important;
|
|
304
|
+
font-size: 12px !important;
|
|
305
|
+
height: 26px !important;
|
|
306
|
+
padding: 4px 11px 4px 8px !important;
|
|
307
|
+
top: 36px !important;
|
|
308
|
+
}
|
|
309
|
+
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
310
|
+
border-bottom: 6px solid transparent;
|
|
311
|
+
border-right: 6px solid transparent;
|
|
312
|
+
border-right-color: #FFF;
|
|
313
|
+
border-top: 6px solid transparent;
|
|
314
|
+
top: 43px !important;
|
|
315
|
+
}
|
|
316
|
+
.e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper::before,
|
|
317
|
+
.e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper::before {
|
|
318
|
+
content: "\e92c";
|
|
319
|
+
}
|
|
320
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right,
|
|
321
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left,
|
|
322
|
+
.e-bigger .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
|
|
323
|
+
.e-bigger .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
|
|
324
|
+
border-radius: 50%;
|
|
325
|
+
display: inline-block;
|
|
326
|
+
position: absolute;
|
|
327
|
+
}
|
|
328
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
329
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
330
|
+
border-style: solid;
|
|
331
|
+
border-width: 1px;
|
|
332
|
+
box-sizing: content-box;
|
|
333
|
+
cursor: pointer;
|
|
334
|
+
display: inline-block;
|
|
335
|
+
}
|
|
336
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
337
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
338
|
+
background-color: #ffd939;
|
|
339
|
+
border-color: #000;
|
|
340
|
+
}
|
|
341
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
342
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
|
|
343
|
+
background-color: #ffd939;
|
|
344
|
+
border-color: #000;
|
|
345
|
+
outline: 2px solid #685708;
|
|
346
|
+
}
|
|
288
347
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
289
348
|
height: 63px !important;
|
|
290
349
|
}
|
|
350
|
+
.e-bigger .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
351
|
+
background-color: #000000;
|
|
352
|
+
border-color: #000000;
|
|
353
|
+
color: #F9FAFB;
|
|
354
|
+
font-size: 12px;
|
|
355
|
+
line-height: 18px;
|
|
356
|
+
padding: 0 8px 0 0;
|
|
357
|
+
}
|
|
358
|
+
.e-bigger .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
|
|
359
|
+
background-color: #000000;
|
|
360
|
+
border-color: #000000;
|
|
361
|
+
color: #F9FAFB;
|
|
362
|
+
font-size: 12px;
|
|
363
|
+
line-height: 18px;
|
|
364
|
+
padding: 0 0 0 8px;
|
|
365
|
+
}
|
|
366
|
+
.e-bigger .e-tooltip-wrap .e-tip-content {
|
|
367
|
+
padding: 3px !important;
|
|
368
|
+
}
|
|
369
|
+
.e-bigger .e-grid .e-flmenu-valuediv {
|
|
370
|
+
padding: 20px 0 0 !important;
|
|
371
|
+
}
|
|
372
|
+
.e-bigger .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
373
|
+
padding: 0 16px !important;
|
|
374
|
+
}
|
|
291
375
|
.e-bigger .e-columnmenu {
|
|
292
376
|
top: 45px;
|
|
293
377
|
}
|
|
378
|
+
.e-bigger .e-gantt-dialog {
|
|
379
|
+
border-radius: 6px;
|
|
380
|
+
width: 554px !important;
|
|
381
|
+
}
|
|
294
382
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
295
|
-
padding: 16px
|
|
383
|
+
padding: 16px 9px 0 18px;
|
|
296
384
|
}
|
|
297
385
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
298
|
-
padding: 16px 18px 0
|
|
386
|
+
padding: 16px 18px 0 9px;
|
|
299
387
|
}
|
|
300
388
|
.e-bigger .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
301
|
-
padding: 16px 18px 0
|
|
389
|
+
padding: 16px 18px 0 9px;
|
|
390
|
+
}
|
|
391
|
+
.e-bigger .e-gantt-dialog .e-edit-form-row {
|
|
392
|
+
height: 241px !important;
|
|
393
|
+
}
|
|
394
|
+
.e-bigger .e-gantt-dialog .e-edit-form-column {
|
|
395
|
+
height: 78px !important;
|
|
396
|
+
}
|
|
397
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
398
|
+
border-bottom: 0 !important;
|
|
399
|
+
}
|
|
400
|
+
.e-bigger .e-gantt-dialog > .e-dlg-content {
|
|
401
|
+
border-radius: 0 !important;
|
|
402
|
+
}
|
|
403
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
404
|
+
border-radius: 6px 6px 0px 0px;
|
|
405
|
+
padding-bottom: 4px;
|
|
406
|
+
}
|
|
407
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
408
|
+
border-radius: 50%;
|
|
409
|
+
height: auto !important;
|
|
410
|
+
width: auto !important;
|
|
411
|
+
}
|
|
412
|
+
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
413
|
+
margin-left: 6px !important;
|
|
414
|
+
}
|
|
415
|
+
.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
416
|
+
font-size: 16px !important;
|
|
417
|
+
}
|
|
418
|
+
.e-bigger .e-float-input.e-control-wrapper {
|
|
419
|
+
width: 250px !important;
|
|
420
|
+
}
|
|
421
|
+
.e-bigger .e-predecessor-tooltip {
|
|
422
|
+
background-color: #000000;
|
|
423
|
+
}
|
|
424
|
+
.e-bigger .e-predecessor-dialog {
|
|
425
|
+
background-color: #1a1a1a;
|
|
426
|
+
}
|
|
427
|
+
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
428
|
+
background-color: #1a1a1a;
|
|
429
|
+
padding: 10px 9px 9px 14px !important;
|
|
430
|
+
}
|
|
431
|
+
.e-bigger .e-dialog .e-dlg-header-content {
|
|
432
|
+
padding: 16px 4px 12px 18px !important;
|
|
433
|
+
}
|
|
434
|
+
.e-bigger .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
435
|
+
left: 2px !important;
|
|
436
|
+
}
|
|
437
|
+
.e-bigger .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
438
|
+
font-size: 12px !important;
|
|
439
|
+
}
|
|
440
|
+
.e-bigger .e-dialog .e-footer-content {
|
|
441
|
+
height: 76px !important;
|
|
442
|
+
padding: 19px 18px 19px 16px !important;
|
|
443
|
+
}
|
|
444
|
+
.e-bigger .e-dialog .e-footer-content .e-btn {
|
|
445
|
+
margin-left: 12px;
|
|
446
|
+
}
|
|
447
|
+
.e-bigger .e-dialog .e-dlg-header {
|
|
448
|
+
line-height: 28px;
|
|
449
|
+
}
|
|
450
|
+
.e-bigger .e-tab .e-content {
|
|
451
|
+
height: 241px !important;
|
|
452
|
+
}
|
|
453
|
+
.e-bigger .e-filter-popup {
|
|
454
|
+
width: 307px !important;
|
|
455
|
+
}
|
|
456
|
+
.e-bigger .e-dlg-content {
|
|
457
|
+
border-radius: 0px !important;
|
|
458
|
+
padding: 20px 18px 0px 18px !important;
|
|
459
|
+
}
|
|
460
|
+
.e-bigger .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
461
|
+
font-size: 14px;
|
|
462
|
+
line-height: 22px;
|
|
463
|
+
}
|
|
464
|
+
.e-bigger .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
465
|
+
font-size: 14px;
|
|
466
|
+
line-height: 22px;
|
|
467
|
+
}
|
|
468
|
+
.e-bigger .e-float-input.e-control-wrapper input {
|
|
469
|
+
height: 38px !important;
|
|
470
|
+
}
|
|
471
|
+
.e-bigger .e-left-btn:disabled {
|
|
472
|
+
color: #757575 !important;
|
|
473
|
+
}
|
|
474
|
+
.e-bigger .e-right-btn:disabled {
|
|
475
|
+
color: #757575 !important;
|
|
476
|
+
}
|
|
477
|
+
.e-bigger .e-input-group-icon.e-date-icon {
|
|
478
|
+
min-width: 36px !important;
|
|
479
|
+
}
|
|
480
|
+
.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
481
|
+
min-height: 38px !important;
|
|
482
|
+
min-width: 35.82px !important;
|
|
483
|
+
}
|
|
484
|
+
.e-bigger .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
485
|
+
min-height: 38px !important;
|
|
486
|
+
min-width: 35.82px !important;
|
|
487
|
+
}
|
|
488
|
+
.e-bigger .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
489
|
+
min-height: 38px !important;
|
|
490
|
+
min-width: 35.82px !important;
|
|
491
|
+
}
|
|
492
|
+
.e-bigger .e-input-group.e-control-wrapper {
|
|
493
|
+
height: 40px;
|
|
494
|
+
}
|
|
495
|
+
.e-bigger .e-datetime-wrapper .e-time-icon.e-icons::before {
|
|
496
|
+
font-size: 16px !important;
|
|
497
|
+
}
|
|
498
|
+
.e-bigger .e-btn.e-flat {
|
|
499
|
+
line-height: 24px;
|
|
500
|
+
padding: 6px 16px 6px 15px !important;
|
|
501
|
+
}
|
|
502
|
+
.e-bigger .e-btn.e-primary {
|
|
503
|
+
padding: 6px 21px 6px 23px !important;
|
|
302
504
|
}
|
|
303
505
|
|
|
304
506
|
.e-gantt {
|
|
@@ -453,9 +655,11 @@
|
|
|
453
655
|
position: absolute;
|
|
454
656
|
}
|
|
455
657
|
.e-gantt .e-gantt-chart .e-chart-root-container .e-holiday-container {
|
|
658
|
+
height: 100%;
|
|
456
659
|
position: absolute;
|
|
457
660
|
}
|
|
458
661
|
.e-gantt .e-gantt-chart .e-chart-root-container .e-weekend-container {
|
|
662
|
+
height: 100%;
|
|
459
663
|
position: absolute;
|
|
460
664
|
}
|
|
461
665
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
@@ -704,37 +908,35 @@
|
|
|
704
908
|
cursor: col-resize;
|
|
705
909
|
}
|
|
706
910
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
|
|
707
|
-
border-style: solid;
|
|
708
911
|
border-width: 1px;
|
|
709
912
|
box-sizing: content-box;
|
|
710
913
|
cursor: col-resize;
|
|
711
914
|
height: 2px;
|
|
712
915
|
position: absolute;
|
|
713
916
|
top: 7px;
|
|
714
|
-
width: 12px;
|
|
715
917
|
}
|
|
716
918
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
717
919
|
border-bottom-style: solid;
|
|
718
|
-
border-bottom-width:
|
|
920
|
+
border-bottom-width: 8px;
|
|
719
921
|
border-left: 7px solid transparent;
|
|
720
922
|
border-right: 7px solid transparent;
|
|
721
923
|
cursor: col-resize;
|
|
722
924
|
height: 0;
|
|
723
|
-
left:
|
|
925
|
+
left: 0;
|
|
724
926
|
position: absolute;
|
|
725
927
|
top: -7px;
|
|
726
928
|
width: 0;
|
|
727
929
|
}
|
|
728
930
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
729
931
|
border-bottom-style: solid;
|
|
730
|
-
border-bottom-width:
|
|
932
|
+
border-bottom-width: 8px;
|
|
731
933
|
border-left: 6px solid transparent;
|
|
732
934
|
border-right: 6px solid transparent;
|
|
733
935
|
cursor: col-resize;
|
|
734
936
|
height: 0;
|
|
735
|
-
left:
|
|
937
|
+
left: 1px;
|
|
736
938
|
position: absolute;
|
|
737
|
-
top: -
|
|
939
|
+
top: -7px;
|
|
738
940
|
width: 0;
|
|
739
941
|
}
|
|
740
942
|
.e-gantt .e-gantt-chart .e-baseline-bar {
|
|
@@ -1161,6 +1363,10 @@
|
|
|
1161
1363
|
height: 100%;
|
|
1162
1364
|
}
|
|
1163
1365
|
|
|
1366
|
+
.e-predecessor-tooltip {
|
|
1367
|
+
visibility: hidden;
|
|
1368
|
+
}
|
|
1369
|
+
|
|
1164
1370
|
/*! Gantt theme */
|
|
1165
1371
|
.e-gantt .e-gantt-splitter {
|
|
1166
1372
|
border-color: #969696;
|
|
@@ -1378,7 +1584,7 @@
|
|
|
1378
1584
|
}
|
|
1379
1585
|
.e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
1380
1586
|
.e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
1381
|
-
background-color: #
|
|
1587
|
+
background-color: #ffd939;
|
|
1382
1588
|
border-color: #000;
|
|
1383
1589
|
}
|
|
1384
1590
|
.e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|