@litianxiang/portal-ui 0.1.7 → 0.1.8
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 +39 -0
- package/package.json +1 -1
|
@@ -3464,6 +3464,45 @@
|
|
|
3464
3464
|
}
|
|
3465
3465
|
|
|
3466
3466
|
|
|
3467
|
+
// ==================== Tabs 标签页(全局默认风格) ====================
|
|
3468
|
+
.el-tabs {
|
|
3469
|
+
--el-tabs-header-height: 40px;
|
|
3470
|
+
|
|
3471
|
+
.el-tabs__header {
|
|
3472
|
+
margin: 0 0 8px;
|
|
3473
|
+
}
|
|
3474
|
+
|
|
3475
|
+
.el-tabs__nav-wrap::after {
|
|
3476
|
+
background-color: #dcdfe6;
|
|
3477
|
+
height: 1px;
|
|
3478
|
+
}
|
|
3479
|
+
|
|
3480
|
+
.el-tabs__item {
|
|
3481
|
+
height: 40px;
|
|
3482
|
+
line-height: 40px;
|
|
3483
|
+
padding: 0 18px;
|
|
3484
|
+
color: #303133;
|
|
3485
|
+
font-size: 15px;
|
|
3486
|
+
font-weight: 600;
|
|
3487
|
+
}
|
|
3488
|
+
|
|
3489
|
+
.el-tabs__item:hover {
|
|
3490
|
+
color: #c41230;
|
|
3491
|
+
}
|
|
3492
|
+
|
|
3493
|
+
.el-tabs__item.is-active {
|
|
3494
|
+
color: #c41230;
|
|
3495
|
+
font-weight: 700;
|
|
3496
|
+
}
|
|
3497
|
+
|
|
3498
|
+
.el-tabs__active-bar {
|
|
3499
|
+
height: 3px;
|
|
3500
|
+
border-radius: 2px 2px 0 0;
|
|
3501
|
+
background-color: #c41230;
|
|
3502
|
+
}
|
|
3503
|
+
}
|
|
3504
|
+
|
|
3505
|
+
|
|
3467
3506
|
// ==================== Tabs 标签页(卡片风格) ====================
|
|
3468
3507
|
.tabs-card {
|
|
3469
3508
|
position: relative;
|