You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
376 lines
6.6 KiB
376 lines
6.6 KiB
@import "../mixins/index";
|
|
|
|
@table-prefix-cls: ~"@{css-prefix}table";
|
|
@table-border-color: @border-color-split;
|
|
@table-head-background-color: #f4f4f4;
|
|
|
|
.@{table-prefix-cls} {
|
|
font-size: @font-size-base;
|
|
color: @text-color;
|
|
|
|
&-body {
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
border-collapse: separate;
|
|
text-align: left;
|
|
border-radius: @border-radius-base;
|
|
overflow: hidden;
|
|
}
|
|
|
|
th {
|
|
background: @table-head-background-color;
|
|
font-weight: bold;
|
|
transition: background .3s ease;
|
|
position: relative;
|
|
|
|
.anticon-filter {
|
|
margin-left: 4px;
|
|
.iconfont-size-under-12px(10px);
|
|
cursor: pointer;
|
|
color: #aaa;
|
|
transition: all 0.3s ease;
|
|
&:hover {
|
|
color: #666;
|
|
}
|
|
}
|
|
|
|
.@{table-prefix-cls}-filter-selected.anticon-filter {
|
|
color: @primary-color;
|
|
}
|
|
}
|
|
|
|
td {
|
|
border-bottom: 1px solid @table-border-color;
|
|
}
|
|
|
|
tr {
|
|
transition: all .3s ease;
|
|
&:hover {
|
|
background: tint(@primary-color, 90%);
|
|
}
|
|
}
|
|
|
|
thead tr:hover {
|
|
background: none;
|
|
}
|
|
|
|
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;
|
|
width: 60px;
|
|
}
|
|
|
|
&-header + &-body {
|
|
overflow: auto;
|
|
height: 360px;
|
|
}
|
|
|
|
&-header table {
|
|
border-radius: @border-radius-base @border-radius-base 0 0;
|
|
}
|
|
|
|
&-loading {
|
|
position: relative;
|
|
.@{table-prefix-cls}-body {
|
|
background: #fff;
|
|
opacity: 0.5;
|
|
}
|
|
.@{table-prefix-cls}-spin-holder {
|
|
height: 20px;
|
|
line-height: 20px;
|
|
left: 50%;
|
|
top: 50%;
|
|
margin-left: -30px;
|
|
position: absolute;
|
|
}
|
|
.@{table-prefix-cls}-with-pagination {
|
|
margin-top: -20px;
|
|
}
|
|
.@{table-prefix-cls}-without-pagination {
|
|
margin-top: 10px;
|
|
}
|
|
}
|
|
|
|
&-middle {
|
|
th,
|
|
td {
|
|
padding: 10px 8px;
|
|
}
|
|
}
|
|
|
|
&-small {
|
|
table {
|
|
border: 1px solid @border-color-split;
|
|
padding: 0 8px;
|
|
}
|
|
|
|
th {
|
|
padding: 10px 8px;
|
|
background: #fff;
|
|
border-bottom: 1px solid @border-color-split;
|
|
}
|
|
|
|
td {
|
|
padding: 6px 8px;
|
|
}
|
|
.ant-table-row:last-child td {
|
|
border-bottom: 0;
|
|
}
|
|
}
|
|
|
|
&-column-sorter {
|
|
margin-left: 4px;
|
|
display: inline-block;
|
|
width: 12px;
|
|
height: 14px;
|
|
vertical-align: middle;
|
|
text-align: center;
|
|
&-up,
|
|
&-down {
|
|
line-height: 4px;
|
|
height: 6px;
|
|
display: block;
|
|
width: 12px;
|
|
cursor: pointer;
|
|
&:hover .anticon {
|
|
color: #666;
|
|
}
|
|
&.on {
|
|
.anticon-caret-up,
|
|
.anticon-caret-down {
|
|
color: @primary-color;
|
|
}
|
|
}
|
|
}
|
|
.anticon-caret-up,
|
|
.anticon-caret-down {
|
|
.iconfont-size-under-12px(6px);
|
|
line-height: 6px;
|
|
height: 6px;
|
|
color: #aaa;
|
|
&:before {
|
|
-moz-transform-origin: 53% 50%; /* fix firefox position */
|
|
}
|
|
}
|
|
}
|
|
|
|
&.@{table-prefix-cls}-bordered {
|
|
table {
|
|
border: 1px solid @border-color-split;
|
|
}
|
|
|
|
th {
|
|
border-bottom: 1px solid @border-color-split;
|
|
}
|
|
|
|
tr:last-child {
|
|
th,
|
|
td {
|
|
border-bottom: 0;
|
|
}
|
|
}
|
|
|
|
th,
|
|
td {
|
|
border-right: 1px solid @border-color-split;
|
|
&:last-child {
|
|
border-right: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
&-empty {
|
|
position: relative;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
&-empty &-body {
|
|
height: 150px;
|
|
}
|
|
|
|
&-placeholder {
|
|
height: 100px;
|
|
line-height: 100px;
|
|
text-align: center;
|
|
font-size: 12px;
|
|
color: #999;
|
|
border-bottom: 1px solid @border-color-split;
|
|
position: absolute;
|
|
top: 50px;
|
|
left: 0;
|
|
width: 100%;
|
|
.anticon {
|
|
margin-right: 4px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.@{table-prefix-cls}-pagination {
|
|
margin: 16px 0;
|
|
float: right;
|
|
}
|
|
|
|
.@{table-prefix-cls}-filter-dropdown {
|
|
min-width: 96px;
|
|
margin-left: -8px;
|
|
background: #fff;
|
|
border-radius: @border-radius-base;
|
|
border: 1px solid @border-color-base;
|
|
box-shadow: @box-shadow-base;
|
|
|
|
.ant-dropdown-menu {
|
|
border: 0;
|
|
box-shadow: none;
|
|
border-radius: @border-radius-base @border-radius-base 0 0;
|
|
|
|
&-sub {
|
|
border-radius: @border-radius-base;
|
|
border: 1px solid @border-color-base;
|
|
box-shadow: @box-shadow-base;
|
|
}
|
|
|
|
.ant-dropdown-submenu-contain-selected {
|
|
.ant-dropdown-menu-submenu-title:after {
|
|
color: @primary-color;
|
|
font-weight: bold;
|
|
text-shadow: 0 0 2px tint(@primary-color, 80%);
|
|
}
|
|
}
|
|
}
|
|
|
|
.ant-dropdown-menu-item {
|
|
overflow: hidden;
|
|
}
|
|
|
|
> .ant-dropdown-menu > .ant-dropdown-menu-item:last-child,
|
|
> .ant-dropdown-menu > .ant-dropdown-menu-submenu:last-child .ant-dropdown-menu-submenu-title {
|
|
border-radius: 0;
|
|
}
|
|
|
|
&-btns {
|
|
overflow: hidden;
|
|
padding: 7px 15px;
|
|
border-top: 1px solid @border-color-split;
|
|
}
|
|
|
|
&-link {
|
|
color: @link-color;
|
|
&:hover {
|
|
color: @link-hover-color;
|
|
}
|
|
&:active {
|
|
color: @link-active-color;
|
|
}
|
|
&.confirm {
|
|
float: left;
|
|
}
|
|
&.clear {
|
|
float: right;
|
|
}
|
|
}
|
|
}
|
|
|
|
.@{table-prefix-cls} {
|
|
&-row {
|
|
&-expand-icon {
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
width: 18px;
|
|
height: 18px;
|
|
text-align: center;
|
|
line-height: 15px;
|
|
border: 1px solid @border-color-split;
|
|
user-select: none;
|
|
background: #fff;
|
|
&-cell {
|
|
width: 18px;
|
|
}
|
|
}
|
|
|
|
&-expanded:after {
|
|
content: '-';
|
|
}
|
|
|
|
&-collapsed:after {
|
|
content: '+';
|
|
}
|
|
|
|
&-spaced {
|
|
visibility: hidden;
|
|
&:after {
|
|
content: '.';
|
|
}
|
|
}
|
|
}
|
|
tr&-expanded-row {
|
|
&,
|
|
&:hover {
|
|
background: #fbfbfb;
|
|
}
|
|
}
|
|
|
|
.@{table-prefix-cls}-row-indent + .@{table-prefix-cls}-row-expand-icon {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
&-column-hidden {
|
|
display: none;
|
|
}
|
|
th&-column-has-prev,
|
|
td&-column-has-prev {
|
|
padding-left: 24px;
|
|
}
|
|
&-prev-columns-page,
|
|
&-next-columns-page {
|
|
cursor: pointer;
|
|
color: #666;
|
|
z-index: 1;
|
|
&:hover {
|
|
color: @primary-color;
|
|
}
|
|
&-disabled {
|
|
cursor: not-allowed;
|
|
color: #bbb;
|
|
&:hover {
|
|
color: #bbb;
|
|
}
|
|
}
|
|
}
|
|
&-prev-columns-page {
|
|
position: absolute;
|
|
left: 8px;
|
|
&:before {
|
|
content: '\e601';
|
|
.iconfont-size-under-12px(9px);
|
|
font-weight: bold;
|
|
font-family: anticon;
|
|
}
|
|
}
|
|
&-next-columns-page {
|
|
float: right;
|
|
margin-left: 8px;
|
|
&:before {
|
|
content: '\e600';
|
|
.iconfont-size-under-12px(9px);
|
|
font-weight: bold;
|
|
font-family: anticon;
|
|
}
|
|
}
|
|
}
|
|
|