Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: table customizing variable #15971

Merged
merged 2 commits into from Apr 9, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions components/style/themes/default.less
Expand Up @@ -391,6 +391,7 @@
@table-header-sort-bg: @background-color-base;
@table-body-sort-bg: rgba(0, 0, 0, 0.01);
@table-row-hover-bg: @primary-1;
@table-selected-row-color: @text-color;
hextion marked this conversation as resolved.
Show resolved Hide resolved
@table-selected-row-bg: #fafafa;
@table-expanded-row-bg: #fbfbfb;
@table-padding-vertical: 16px;
Expand Down
1 change: 1 addition & 0 deletions components/table/style/index.less
Expand Up @@ -291,6 +291,7 @@
}

&-tbody > tr.@{table-prefix-cls}-row-selected td {
color: @table-selected-row-color;
background: @table-selected-row-bg;
}

Expand Down