隐患排查结构
parent
d7c085262b
commit
daf7b79cf8
@ -0,0 +1,39 @@
|
||||
/* 移除下滑线 */
|
||||
.custom-tabs .ant-tabs-ink-bar {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
/* 未选中状态 */
|
||||
.custom-tabs .ant-tabs-tab {
|
||||
background: #f0f0f0 !important;
|
||||
border: none !important;
|
||||
border-radius: 6px !important;
|
||||
margin-right: 8px !important;
|
||||
padding: 8px 16px !important;
|
||||
transition: all 0.3s ease !important;
|
||||
}
|
||||
|
||||
/* 选中状态 - 背景变为蓝色 */
|
||||
.custom-tabs .ant-tabs-tab-active {
|
||||
background: #2E4CD4 !important;
|
||||
}
|
||||
|
||||
/* 选中状态 - 文字变为白色 */
|
||||
.custom-tabs .ant-tabs-tab-active .ant-tabs-tab-btn {
|
||||
color: white !important;
|
||||
font-weight: 500 !important;
|
||||
}
|
||||
|
||||
/* 移除底部边框 */
|
||||
.custom-tabs .ant-tabs-nav::before {
|
||||
border-bottom: none !important;
|
||||
}
|
||||
|
||||
/* 悬停效果 */
|
||||
.custom-tabs .ant-tabs-tab:hover {
|
||||
background: #e6e6e6 !important;
|
||||
}
|
||||
|
||||
.custom-tabs .ant-tabs-tab-active:hover {
|
||||
background: #40a9ff !important;
|
||||
}
|
||||
Loading…
Reference in New Issue