mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-07 17:44:35 +08:00
change variable names #5711
This commit is contained in:
parent
0745f8b231
commit
92b8e8534e
@ -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
|
||||
// ---
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user