|
|
|
@import "../mixins/index";
|
|
|
|
@table-prefix-cls: ~"@{css-prefix}table";
|
|
|
|
@table-border-color: #e9e9e9;
|
|
|
|
@table-head-background-color: #f3f3f3;
|
|
|
|
|
|
|
|
.@{table-prefix-cls} {
|
|
|
|
font-size: @font-size-base;
|
|
|
|
color: @text-color;
|
|
|
|
transition: opacity 0.3s ease;
|
|
|
|
|
|
|
|
table {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
border-collapse: separate;
|
|
|
|
text-align: left;
|
|
|
|
border-radius: @border-radius-base;
|
|
|
|
}
|
|
|
|
|
|
|
|
th {
|
|
|
|
background: @table-head-background-color;
|
|
|
|
font-weight: bold;
|
|
|
|
transition: background .3s ease;
|
|
|
|
text-align: left;
|
|
|
|
|
|
|
|
.anticon-bars {
|
|
|
|
margin-left: 4px;
|
|
|
|
position: relative;
|
|
|
|
top: -1px;
|
|
|
|
.iconfont-size-under-12px(10px);
|
|
|
|
cursor: pointer;
|
|
|
|
color: #aaa;
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
&:hover {
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.@{table-prefix-cls}-filter-dropdown {
|
|
|
|
min-width: 88px;
|
|
|
|
margin-left: -8px;
|
|
|
|
margin-top: -6px;
|
|
|
|
.ant-dropdown-menu-item {
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 7px 8px;
|
|
|
|
position: relative;
|
|
|
|
&.ant-dropdown-menu-item-selected:after {
|
|
|
|
content: '\e613';
|
|
|
|
font-family: 'anticon';
|
|
|
|
font-weight: bold;
|
|
|
|
position: absolute;
|
|
|
|
top: 6px;
|
|
|
|
color: @primary-color;
|
|
|
|
.iconfont-size-under-12px(10px);
|
|
|
|
right: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a.@{table-prefix-cls}-filter-dropdown-link {
|
|
|
|
color: @link-color;
|
|
|
|
&:hover {
|
|
|
|
color: @link-hover-color;
|
|
|
|
}
|
|
|
|
&:active {
|
|
|
|
color: @link-active-color;
|
|
|
|
}
|
|
|
|
&.confirm {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
&.clear {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.@{table-prefix-cls}-filter-selected.anticon-bars {
|
|
|
|
color: @primary-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
border-radius: 6px 0 0 0;
|
|
|
|
}
|
|
|
|
&:last-child {
|
|
|
|
border-radius: 0 6px 0 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
|
|
|
border-bottom: 1px solid @table-border-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr {
|
|
|
|
transition: all .3s ease;
|
|
|
|
&:hover {
|
|
|
|
background: tint(@primary-color, 90%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tr.@{table-prefix-cls}-row-selected {
|
|
|
|
background: #fafafa;
|
|
|
|
}
|
|
|
|
|
|
|
|
th.@{table-prefix-cls}-column-sort {
|
|
|
|
background: #EAEAEA;
|
|
|
|
}
|
|
|
|
|
|
|
|
th, td {
|
|
|
|
padding: 16px 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
th.@{table-prefix-cls}-selection-column,
|
|
|
|
td.@{table-prefix-cls}-selection-column {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-loading {
|
|
|
|
.ant-table-body {
|
|
|
|
opacity: 0.42;
|
|
|
|
}
|
|
|
|
position: relative;
|
|
|
|
&:after {
|
|
|
|
position: absolute;
|
|
|
|
display: inline-block;
|
|
|
|
.animation(loadingCircle 1.5s infinite linear);
|
|
|
|
content:"\e610";
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
margin-top: -10px;
|
|
|
|
margin-left: -10px;
|
|
|
|
font-family: anticon;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
line-height: 20px;
|
|