element-assits 0.0.43 → 0.0.44
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/lib/index.js +1474 -1467
- package/lib/style.scss +79 -79
- package/package.json +1 -1
package/lib/style.scss
CHANGED
|
@@ -197,6 +197,24 @@ $--color-border-extralight: #F2F6FC !default;
|
|
|
197
197
|
}
|
|
198
198
|
}
|
|
199
199
|
|
|
200
|
+
.el-dialog.ea-modal {
|
|
201
|
+
&.is-closing {
|
|
202
|
+
margin: 0 0 50px !important;
|
|
203
|
+
}
|
|
204
|
+
&.is-fullscreen {
|
|
205
|
+
border-radius: 0;
|
|
206
|
+
margin: 0;
|
|
207
|
+
}
|
|
208
|
+
.el-dialog__header {
|
|
209
|
+
color: #555;
|
|
210
|
+
font-size: 18px;
|
|
211
|
+
.el-dialog__title {
|
|
212
|
+
color: inherit;
|
|
213
|
+
font-size: inherit;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
|
|
200
218
|
.ea-button-tooltip + .ea-button-tooltip {
|
|
201
219
|
margin-left: 10px;
|
|
202
220
|
}
|
|
@@ -262,24 +280,6 @@ td {
|
|
|
262
280
|
}
|
|
263
281
|
}
|
|
264
282
|
|
|
265
|
-
.el-dialog.ea-modal {
|
|
266
|
-
&.is-closing {
|
|
267
|
-
margin: 0 0 50px !important;
|
|
268
|
-
}
|
|
269
|
-
&.is-fullscreen {
|
|
270
|
-
border-radius: 0;
|
|
271
|
-
margin: 0;
|
|
272
|
-
}
|
|
273
|
-
.el-dialog__header {
|
|
274
|
-
color: #555;
|
|
275
|
-
font-size: 18px;
|
|
276
|
-
.el-dialog__title {
|
|
277
|
-
color: inherit;
|
|
278
|
-
font-size: inherit;
|
|
279
|
-
}
|
|
280
|
-
}
|
|
281
|
-
}
|
|
282
|
-
|
|
283
283
|
.ea-split-container {
|
|
284
284
|
display: flex;
|
|
285
285
|
&.is-down {
|
|
@@ -343,10 +343,6 @@ td {
|
|
|
343
343
|
}
|
|
344
344
|
}
|
|
345
345
|
|
|
346
|
-
.ea-number .el-input__inner {
|
|
347
|
-
text-align: left;
|
|
348
|
-
}
|
|
349
|
-
|
|
350
346
|
.ea-list {
|
|
351
347
|
.loading-text {
|
|
352
348
|
color: $--color-secondary-text;
|
|
@@ -399,6 +395,67 @@ td {
|
|
|
399
395
|
}
|
|
400
396
|
}
|
|
401
397
|
|
|
398
|
+
.ea-number .el-input__inner {
|
|
399
|
+
text-align: left;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
.ea-data-tree-body {
|
|
403
|
+
&.ea-data-tree-body__border {
|
|
404
|
+
border: 1px solid $--color-border-light;
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.ea-data-tree-row {
|
|
409
|
+
height: 32px;
|
|
410
|
+
line-height: 32px;
|
|
411
|
+
display: flex;
|
|
412
|
+
justify-content: flex-start;
|
|
413
|
+
position: relative;
|
|
414
|
+
padding-left: 20px;
|
|
415
|
+
&.odd { background-color: #F8F8F8; }
|
|
416
|
+
&:hover { background-color: #EBEEF5; }
|
|
417
|
+
.ea-data-tree-cell {
|
|
418
|
+
flex: 0 0 auto;
|
|
419
|
+
height: 100%;
|
|
420
|
+
font-size: 14px;
|
|
421
|
+
box-sizing: border-box;
|
|
422
|
+
padding: 0 8px;
|
|
423
|
+
position: relative;
|
|
424
|
+
overflow: hidden;
|
|
425
|
+
text-overflow: ellipsis;
|
|
426
|
+
white-space: nowrap;
|
|
427
|
+
word-break: break-all;
|
|
428
|
+
& > .ea-data-tree-checkbox {
|
|
429
|
+
position: absolute;
|
|
430
|
+
top: 0;
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
.ea-data-tree-icon {
|
|
434
|
+
cursor: pointer;
|
|
435
|
+
position: absolute;
|
|
436
|
+
height: 100%;
|
|
437
|
+
color: #CCC;
|
|
438
|
+
display: flex;
|
|
439
|
+
align-items: center;
|
|
440
|
+
z-index: 1;
|
|
441
|
+
&:hover {
|
|
442
|
+
color: #333;
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
.ea-data-tree-checkbox .el-checkbox__input.is-indeterminate .el-checkbox__inner {
|
|
448
|
+
background-color: $--color-secondary-text;
|
|
449
|
+
border-color: $--color-secondary-text;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.ea-data-tree-empty {
|
|
453
|
+
display: flex;
|
|
454
|
+
justify-content: center;
|
|
455
|
+
align-items: center;
|
|
456
|
+
color: $--color-secondary-text;
|
|
457
|
+
}
|
|
458
|
+
|
|
402
459
|
.vjs-table {
|
|
403
460
|
position: relative;
|
|
404
461
|
overflow: hidden;
|
|
@@ -598,63 +655,6 @@ td {
|
|
|
598
655
|
.ea-icon-more:before { content: "\e60e" }
|
|
599
656
|
.eafont.ea-icon-conf.has { color: #000 }
|
|
600
657
|
|
|
601
|
-
.ea-data-tree-body {
|
|
602
|
-
&.ea-data-tree-body__border {
|
|
603
|
-
border: 1px solid $--color-border-light;
|
|
604
|
-
}
|
|
605
|
-
}
|
|
606
|
-
|
|
607
|
-
.ea-data-tree-row {
|
|
608
|
-
height: 32px;
|
|
609
|
-
line-height: 32px;
|
|
610
|
-
display: flex;
|
|
611
|
-
justify-content: flex-start;
|
|
612
|
-
position: relative;
|
|
613
|
-
padding-left: 20px;
|
|
614
|
-
&.odd { background-color: #F8F8F8; }
|
|
615
|
-
&:hover { background-color: #EBEEF5; }
|
|
616
|
-
.ea-data-tree-cell {
|
|
617
|
-
flex: 0 0 auto;
|
|
618
|
-
height: 100%;
|
|
619
|
-
font-size: 14px;
|
|
620
|
-
box-sizing: border-box;
|
|
621
|
-
padding: 0 8px;
|
|
622
|
-
position: relative;
|
|
623
|
-
overflow: hidden;
|
|
624
|
-
text-overflow: ellipsis;
|
|
625
|
-
white-space: nowrap;
|
|
626
|
-
word-break: break-all;
|
|
627
|
-
& > .ea-data-tree-checkbox {
|
|
628
|
-
position: absolute;
|
|
629
|
-
top: 0;
|
|
630
|
-
}
|
|
631
|
-
}
|
|
632
|
-
.ea-data-tree-icon {
|
|
633
|
-
cursor: pointer;
|
|
634
|
-
position: absolute;
|
|
635
|
-
height: 100%;
|
|
636
|
-
color: #CCC;
|
|
637
|
-
display: flex;
|
|
638
|
-
align-items: center;
|
|
639
|
-
z-index: 1;
|
|
640
|
-
&:hover {
|
|
641
|
-
color: #333;
|
|
642
|
-
}
|
|
643
|
-
}
|
|
644
|
-
}
|
|
645
|
-
|
|
646
|
-
.ea-data-tree-checkbox .el-checkbox__input.is-indeterminate .el-checkbox__inner {
|
|
647
|
-
background-color: $--color-secondary-text;
|
|
648
|
-
border-color: $--color-secondary-text;
|
|
649
|
-
}
|
|
650
|
-
|
|
651
|
-
.ea-data-tree-empty {
|
|
652
|
-
display: flex;
|
|
653
|
-
justify-content: center;
|
|
654
|
-
align-items: center;
|
|
655
|
-
color: $--color-secondary-text;
|
|
656
|
-
}
|
|
657
|
-
|
|
658
658
|
.file-upload-dialog {
|
|
659
659
|
// 拖拽区域铺满
|
|
660
660
|
.el-upload,
|