style: cluster creation steps

This commit is contained in:
jialin
2026-01-06 17:21:32 +08:00
parent 0ba8300959
commit 0eba1da6c4
21 changed files with 223 additions and 79 deletions
+3
View File
@@ -23,6 +23,8 @@ const Wrapper = styled.div<{ $token: any }>`
--ant-table-row-hover-bg: ${(props) => props.$token.rowHoverBg};
--ant-table-header-icon-color: ${(props) =>
props.$token.tableHeaderIconColor};
--ant-table-header-icon-hover-color: ${(props) =>
props.$token.tableHeaderIconHoverColor};
`;
const SealTable: React.FC<SealTableProps & { pagination: PaginationProps }> = (
@@ -152,6 +154,7 @@ const SealTable: React.FC<SealTableProps & { pagination: PaginationProps }> = (
$token={{
...token.Table,
tableHeaderIconColor: token.colorTextQuaternary,
tableHeaderIconHoverColor: token.colorTextSecondary,
colorBorderSecondary: token.colorBorderSecondary
}}
>
@@ -38,6 +38,16 @@
justify-content: center;
}
&:hover {
.sorter-header {
.sorter {
.anticon {
color: var(--ant-table-header-icon-hover-color);
}
}
}
}
.sorter-header {
display: flex;
flex: 1;
@@ -55,6 +65,7 @@
.anticon {
font-size: 12px;
color: var(--ant-table-header-icon-color);
transition: color var(--ant-motion-duration-slow);
}
.sorter-up {