change variable names #5711

This commit is contained in:
afc163 2017-04-11 17:56:38 +08:00
parent 0745f8b231
commit 92b8e8534e
2 changed files with 7 additions and 7 deletions

View File

@ -254,8 +254,8 @@
// Table
// --
@table-head-background-color: @background-color-base;
@table-row-background-hover : @primary-1;
@table-header-bg: @background-color-base;
@table-row-hover-bg: @primary-1;
// TimePicker
// ---

View File

@ -28,7 +28,7 @@
}
&-thead > tr > th {
background: @table-head-background-color;
background: @table-header-bg;
font-weight: 500;
transition: background .3s ease;
text-align: left;
@ -65,7 +65,7 @@
&.@{table-prefix-cls}-row-hover,
&:hover {
& > td {
background: @table-row-background-hover;
background: @table-row-hover-bg;
}
}
}
@ -76,13 +76,13 @@
&-footer {
padding: 16px 8px;
background: @table-head-background-color;
background: @table-header-bg;
border-radius: 0 0 @border-radius-base @border-radius-base;
position: relative;
&:before {
content: '';
height: 1px;
background: @table-head-background-color;
background: @table-header-bg;
position: absolute;
top: -1px;
width: 100%;
@ -159,7 +159,7 @@
}
&-header {
background: @table-head-background-color;
background: @table-header-bg;
overflow: hidden;
}