You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

93 lines
2.6 KiB
Plaintext

3 weeks ago
.container {
width: 100%;
3 weeks ago
height: 100%;
3 weeks ago
padding: 16px;
// background-color: #f5f5f5;
.tabs {
height: 100%;
background-color: transparent;
border-radius: 8px;
// box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
:global(.ant-tabs-nav) {
margin: 0;
padding: 0 20px;
background-color: transparent;
border-bottom: none;
}
3 weeks ago
3 weeks ago
:global(.ant-tabs-tab) {
padding: 16px 24px !important;
font-size: 14px !important;
font-weight: 400 !important;
color: #AFAFAF !important;
background: transparent !important;
border: none !important;
position: relative;
&:hover {
color: #AFAFAF !important;
background-color: transparent !important;
3 weeks ago
}
3 weeks ago
&.ant-tabs-tab-active {
color: #009D6F !important;
background-color: #fff !important;
border-bottom: none !important;
3 weeks ago
3 weeks ago
&::after {
content: '';
3 weeks ago
position: absolute;
3 weeks ago
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 38.36132812500014px;
height: 3.3613271713256965px;
background-color: #009D6F;
border-radius: 2px;
z-index: 1;
3 weeks ago
}
}
3 weeks ago
}
3 weeks ago
3 weeks ago
// 额外的全局样式覆盖,确保优先级足够高
:global(.ant-tabs-tab.ant-tabs-tab-active) {
color: #009D6F !important;
background-color: #fff !important;
border-bottom: none !important;
}
3 weeks ago
3 weeks ago
// 更强的选择器优先级
:global(.ant-tabs .ant-tabs-tab.ant-tabs-tab-active) {
color: #009D6F !important;
background-color: #fff !important;
border-bottom: none !important;
}
3 weeks ago
3 weeks ago
// 针对可能的嵌套结构
:global(.ant-tabs-nav .ant-tabs-tab.ant-tabs-tab-active) {
color: #009D6F !important;
background-color: #fff !important;
border-bottom: none !important;
3 weeks ago
}
3 weeks ago
// 覆盖Ant Design的默认下划线
:global(.ant-tabs-ink-bar) {
display: none !important;
}
3 weeks ago
3 weeks ago
:global(.ant-tabs-content-holder) {
height: calc(100% - 60px);
padding: 20px;
3 weeks ago
3 weeks ago
.ant-tabs-content {
3 weeks ago
height: 100%;
3 weeks ago
.ant-tabs-tabpane {
3 weeks ago
height: 100%;
}
}
}
}
}