Skip to content

Commit

Permalink
change variable names ant-design#5711
Browse files Browse the repository at this point in the history
  • Loading branch information
afc163 committed Apr 11, 2017
1 parent 0745f8b commit 92b8e85
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions components/style/themes/default.less
Original file line number Diff line number Diff line change
Expand Up @@ -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
// ---
Expand Down
10 changes: 5 additions & 5 deletions components/table/style/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -65,7 +65,7 @@
&.@{table-prefix-cls}-row-hover,
&:hover {
& > td {
background: @table-row-background-hover;
background: @table-row-hover-bg;
}
}
}
Expand All @@ -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%;
Expand Down Expand Up @@ -159,7 +159,7 @@
}

&-header {
background: @table-head-background-color;
background: @table-header-bg;
overflow: hidden;
}

Expand Down

0 comments on commit 92b8e85

Please sign in to comment.