@litianxiang/portal-ui 0.0.18 → 0.0.20
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 +12 -2
- package/package.json +1 -1
|
@@ -3466,7 +3466,7 @@
|
|
|
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
3472
|
margin-bottom: 0;
|
|
@@ -3481,10 +3481,17 @@
|
|
|
3481
3481
|
}
|
|
3482
3482
|
|
|
3483
3483
|
.el-tabs__item {
|
|
3484
|
+
position: relative;
|
|
3484
3485
|
font-size: var(--el-font-size);
|
|
3485
3486
|
font-weight: 400;
|
|
3486
3487
|
border-bottom: none !important;
|
|
3487
|
-
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
|
+
}
|
|
3488
3495
|
|
|
3489
3496
|
&:hover {
|
|
3490
3497
|
color: var(--el-hover-text-color);
|
|
@@ -3496,6 +3503,9 @@
|
|
|
3496
3503
|
background: var(--el-btn-bg);
|
|
3497
3504
|
color: var(--el-btn-text);
|
|
3498
3505
|
font-weight: 400;
|
|
3506
|
+
border-top-color: #9f0f27 !important;
|
|
3507
|
+
border-bottom-color: #9f0f27 !important;
|
|
3508
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -1px 0 rgba(0, 0, 0, 0.08);
|
|
3499
3509
|
}
|
|
3500
3510
|
|
|
3501
3511
|
.el-tabs__nav-next, .el-tabs__nav-prev {
|