Merge "fix: Fix table header style"

This commit is contained in:
Zuul 2021-12-02 01:52:15 +00:00 committed by Gerrit Code Review
commit a78c4a9379

View File

@ -1,4 +1,4 @@
@import "~styles/variables"; @import '~styles/variables';
.main { .main {
overflow: hidden; overflow: hidden;
@ -25,13 +25,14 @@
background-color: @sider-open-background; background-color: @sider-open-background;
border-radius: @border-radius; border-radius: @border-radius;
} }
.ant-btn-primary:hover, .ant-btn-primary:focus { .ant-btn-primary:hover,
.ant-btn-primary:focus {
background-color: @hover-color; background-color: @hover-color;
border-color: @hover-color; border-color: @hover-color;
} }
.ant-btn-primary[disabled]:hover { .ant-btn-primary[disabled]:hover {
background-color: #F2F2F2; background-color: #f2f2f2;
border-color: #D2D2D2; border-color: #d2d2d2;
} }
.ant-table { .ant-table {
line-height: 1.5; line-height: 1.5;
@ -39,5 +40,8 @@
.ant-table-thead > tr > th { .ant-table-thead > tr > th {
padding: 0 16px; padding: 0 16px;
} }
.ant-table-thead > tr > th.ant-table-selection-column:first-child {
padding-left: 8px;
}
} }
} }