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.

647 lines
14 KiB

@import "../../style/themes/default";
@import "../../style/mixins/index";
9 years ago
@table-prefix-cls: ~"@{ant-prefix}-table";
@table-header-icon-color: #bfbfbf;
.@{table-prefix-cls}-wrapper {
.clearfix;
}
.@{table-prefix-cls} {
.reset-component;
position: relative;
clear: both;
&-body {
transition: opacity .3s;
}
&-empty &-body {
overflow: auto !important;
}
table {
width: 100%;
border-collapse: collapse;
text-align: left;
border-radius: @border-radius-base @border-radius-base 0 0;
}
&-thead > tr > th {
background: @table-header-bg;
transition: background .3s ease;
text-align: left;
color: @table-header-color;
font-weight: 500;
border-bottom: @border-width-base @border-style-base @border-color-split;
&[colspan] {
text-align: center;
}
.@{iconfont-css-prefix}-filter,
.@{table-prefix-cls}-filter-icon {
font-size: @font-size-sm;
cursor: pointer;
color: @table-header-icon-color;
transition: all .3s;
width: 28px;
position: absolute;
top: 0;
right: 0;
height: 100%;
text-align: center;
> svg {
position: absolute;
top: 50%;
left: 50%;
margin-top: -@font-size-sm / 2 + 1px;
margin-left: -@font-size-sm / 2;
}
}
10 years ago
.@{table-prefix-cls}-filter-selected.@{iconfont-css-prefix}-filter {
10 years ago
color: @primary-color;
}
.@{table-prefix-cls}-column-sorter {
position: absolute;
right: 6px;
top: 50%;
width: 14px;
height: @font-size-lg + 1px;
margin-top: -(@font-size-lg + 1px) / 2;
text-align: center;
color: @table-header-icon-color;
transition: all .3s;
&-up,
&-down {
.iconfont-size-under-12px(11px);
line-height: 4px;
height: 4px;
transition: all .3s;
display: block;
&.on {
color: @primary-color;
}
}
&-down {
margin-top: 4px;
}
}
&.@{table-prefix-cls}-column-has-actions {
position: relative;
&.@{table-prefix-cls}-column-has-filters {
.@{iconfont-css-prefix}-filter,
.@{table-prefix-cls}-filter-icon {
&.@{table-prefix-cls}-filter-open {
color: @text-color-secondary;
background: #ebebeb;
}
}
// Very complicated styles logic but neccessary
&:hover {
.@{iconfont-css-prefix}-filter,
.@{table-prefix-cls}-filter-icon {
&:hover {
color: @text-color-secondary;
background: #ebebeb;
}
&:active {
color: @text-color;
}
}
}
}
&.@{table-prefix-cls}-column-has-sorters {
cursor: pointer;
&:hover {
background: #f5f5f5;
.@{iconfont-css-prefix}-filter,
.@{table-prefix-cls}-filter-icon {
background: #f5f5f5;
}
}
&:active {
.@{table-prefix-cls}-column-sorter-up:not(.on),
.@{table-prefix-cls}-column-sorter-down:not(.on) {
color: @text-color-secondary;
}
}
}
&.@{table-prefix-cls}-align-right {
padding-right: 30px;
&.@{table-prefix-cls}-column-has-sorters.@{table-prefix-cls}-column-has-filters {
padding-right: 54px;
}
}
}
.@{table-prefix-cls}-column-sorters {
&:before {
position: absolute;
content: '';
top: 0;
left: 0;
right: 0;
bottom: 0;
background: transparent;
transition: all .3s;
}
&:hover:before {
background: rgba(0, 0, 0, .04);
}
}
&.@{table-prefix-cls}-column-has-filters .@{table-prefix-cls}-column-sorter {
right: 28px + 6px;
}
&.@{table-prefix-cls}-column-has-sorters {
user-select: none;
}
}
&-thead > tr:first-child > th {
&:first-child {
border-top-left-radius: @border-radius-base;
}
&:last-child {
border-top-right-radius: @border-radius-base;
}
}
&-thead > tr:not(:last-child) > th {
&[colspan] {
border-bottom: 0;
}
}
&-tbody > tr > td {
border-bottom: @border-width-base @border-style-base @border-color-split;
transition: all .3s, border 0s;
}
&-thead > tr,
&-tbody > tr {
transition: all .3s, height 0s;
&.@{table-prefix-cls}-row-hover,
&:hover {
& > td {
background: @table-row-hover-bg;
}
}
}
&-thead > tr:hover {
background: none;
}
&-footer {
padding: @table-padding-vertical @table-padding-horizontal;
background: @table-header-bg;
border-radius: 0 0 @border-radius-base @border-radius-base;
position: relative;
border-top: @border-width-base @border-style-base @border-color-split;
&:before {
content: '';
height: 1px;
background: @table-header-bg;
position: absolute;
top: -1px;
width: 100%;
left: 0;
}
}
&.@{table-prefix-cls}-bordered &-footer {
border: @border-width-base @border-style-base @border-color-split;
}
&-title {
padding: @table-padding-vertical 0;
position: relative;
top: 1px;
border-radius: @border-radius-base @border-radius-base 0 0;
}
&.@{table-prefix-cls}-bordered &-title {
border: @border-width-base @border-style-base @border-color-split;
padding-left: @table-padding-horizontal;
padding-right: @table-padding-horizontal;
}
&-title + &-content {
position: relative;
border-radius: @border-radius-base @border-radius-base 0 0;
overflow: hidden;
.@{table-prefix-cls}-bordered & {
&,
table,
.@{table-prefix-cls}-thead > tr:first-child > th {
border-radius: 0;
}
}
}
// https://github.com/ant-design/ant-design/issues/4373
&-without-column-header &-title + &-content,
&-without-column-header table {
border-radius: 0;
}
&-tbody > tr.@{table-prefix-cls}-row-selected td {
background: @table-selected-row-bg;
}
&-thead > tr > th.@{table-prefix-cls}-column-sort {
background: @table-header-sort-bg;
}
&-tbody > tr > td.@{table-prefix-cls}-column-sort {
background: @table-body-sort-bg;
}
&-thead > tr > th,
&-tbody > tr > td {
padding: @table-padding-vertical @table-padding-horizontal;
word-break: break-word;
6 years ago
-ms-word-break: break-all;
}
&-thead > tr > th.@{table-prefix-cls}-selection-column-custom {
padding-left: 16px;
padding-right: 0;
}
&-thead > tr > th.@{table-prefix-cls}-selection-column,
&-tbody > tr > td.@{table-prefix-cls}-selection-column {
text-align: center;
min-width: 62px;
width: 62px;
7 years ago
.@{ant-prefix}-radio-wrapper {
margin-right: 0;
}
}
&-expand-icon-th,
&-row-expand-icon-cell {
text-align: center;
min-width: 50px;
width: 50px;
}
&-header {
background: @table-header-bg;
overflow: hidden;
}
&-header table {
border-radius: @border-radius-base @border-radius-base 0 0;
}
&-loading {
position: relative;
.@{table-prefix-cls}-body {
background: @component-background;
opacity: 0.5;
9 years ago
}
</