Merge "fix: Fix selection style in header table"

This commit is contained in:
Zuul 2021-12-02 08:21:27 +00:00 committed by Gerrit Code Review
commit cb4502f61c
2 changed files with 11 additions and 11 deletions

View File

@ -40,8 +40,5 @@
.ant-table-thead > tr > th {
padding: 0 16px;
}
.ant-table-thead > tr > th.ant-table-selection-column:first-child {
padding-left: 8px;
}
}
}

View File

@ -185,19 +185,22 @@
.ant-table-footer {
padding: 8px 16px;
}
.ant-table-thead > tr > th.ant-table-selection-column:first-child {
padding-left: 8px;
}
}
.tip{
.tip {
color: @color-text-body;
}
.linkClass{
color:@blue-1;
.linkClass {
color: @blue-1;
cursor: pointer;
-moz-user-select:none; /*Firefox*/
-webkit-user-select:none; /*Webkit*/
-ms-user-select:none; /*IE10*/
-khtml-user-select:none; /*Early browsers*/
user-select:none;
-moz-user-select: none; /*Firefox*/
-webkit-user-select: none; /*Webkit*/
-ms-user-select: none; /*IE10*/
-khtml-user-select: none; /*Early browsers*/
user-select: none;
}
}