@litianxiang/portal-ui 0.0.17 → 0.0.19
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/dist/styles/element-ui.scss +10 -4
- package/package.json +1 -1
|
@@ -3466,12 +3466,11 @@
|
|
|
3466
3466
|
}
|
|
3467
3467
|
|
|
3468
3468
|
.el-tabs {
|
|
3469
|
-
--el-tabs-header-height:
|
|
3469
|
+
--el-tabs-header-height: 40px;
|
|
3470
3470
|
|
|
3471
3471
|
.el-tabs__header {
|
|
3472
|
-
padding-left: 15px;
|
|
3473
3472
|
margin-bottom: 0;
|
|
3474
|
-
border-bottom:
|
|
3473
|
+
border-bottom: none;
|
|
3475
3474
|
}
|
|
3476
3475
|
|
|
3477
3476
|
.el-tabs__nav {
|
|
@@ -3482,10 +3481,17 @@
|
|
|
3482
3481
|
}
|
|
3483
3482
|
|
|
3484
3483
|
.el-tabs__item {
|
|
3484
|
+
position: relative;
|
|
3485
3485
|
font-size: var(--el-font-size);
|
|
3486
3486
|
font-weight: 400;
|
|
3487
3487
|
border-bottom: none !important;
|
|
3488
|
-
transition: color 0.
|
|
3488
|
+
transition: background-color 0.28s cubic-bezier(0.22, 1, 0.36, 1), color 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
|
|
3489
|
+
will-change: background-color, color, border-color;
|
|
3490
|
+
|
|
3491
|
+
.is-icon-close,
|
|
3492
|
+
.el-icon-close {
|
|
3493
|
+
transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
|
|
3494
|
+
}
|
|
3489
3495
|
|
|
3490
3496
|
&:hover {
|
|
3491
3497
|
color: var(--el-hover-text-color);
|