2019-05-06 12:04:39 +08:00
|
|
|
@import '../../style/themes/index';
|
2018-12-07 20:02:01 +08:00
|
|
|
@import '../../style/mixins/index';
|
2015-09-10 11:04:31 +08:00
|
|
|
|
2018-12-07 20:02:01 +08:00
|
|
|
@table-prefix-cls: ~'@{ant-prefix}-table';
|
2018-09-17 15:28:49 +08:00
|
|
|
@table-header-icon-color: #bfbfbf;
|
2018-10-23 04:02:28 +08:00
|
|
|
@table-header-sort-active-bg: darken(@table-header-bg, 3%);
|
|
|
|
@table-header-filter-active-bg: darken(@table-header-sort-active-bg, 5%);
|
2019-04-11 00:54:46 +08:00
|
|
|
@table-selection-column-width: 60px;
|
2015-07-09 14:51:48 +08:00
|
|
|
|
2017-02-20 11:35:01 +08:00
|
|
|
.@{table-prefix-cls}-wrapper {
|
|
|
|
.clearfix;
|
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{table-prefix-cls} {
|
2017-09-22 18:33:29 +08:00
|
|
|
.reset-component;
|
2019-04-15 10:52:00 +08:00
|
|
|
|
2016-03-24 16:16:37 +08:00
|
|
|
position: relative;
|
2018-03-02 12:00:28 +08:00
|
|
|
clear: both;
|
2015-09-15 11:40:58 +08:00
|
|
|
|
|
|
|
&-body {
|
2018-12-07 20:02:01 +08:00
|
|
|
transition: opacity 0.3s;
|
2015-09-15 11:40:58 +08:00
|
|
|
}
|
2015-07-09 14:51:48 +08:00
|
|
|
|
2018-07-04 12:09:28 +08:00
|
|
|
&-empty &-body {
|
2019-06-21 15:20:01 +08:00
|
|
|
// https://github.com/ant-design/ant-design/issues/11135
|
|
|
|
overflow-x: auto !important;
|
|
|
|
// https://github.com/ant-design/ant-design/issues/17175
|
|
|
|
overflow-y: hidden !important;
|
2018-07-04 12:09:28 +08:00
|
|
|
}
|
|
|
|
|
2015-07-09 14:51:48 +08:00
|
|
|
table {
|
|
|
|
width: 100%;
|
2015-07-15 17:57:19 +08:00
|
|
|
text-align: left;
|
2018-12-21 11:46:52 +08:00
|
|
|
border-radius: @table-border-radius-base @table-border-radius-base 0 0;
|
2019-02-15 10:48:07 +08:00
|
|
|
border-collapse: collapse;
|
2015-07-09 14:51:48 +08:00
|
|
|
}
|
|
|
|
|
2019-06-05 10:17:41 +08:00
|
|
|
&-thead > tr > th {
|
|
|
|
color: @table-header-color;
|
|
|
|
font-weight: 500;
|
|
|
|
text-align: left;
|
2019-02-15 10:48:07 +08:00
|
|
|
background: @table-header-bg;
|
2019-06-05 10:17:41 +08:00
|
|
|
border-bottom: @border-width-base @border-style-base @border-color-split;
|
|
|
|
transition: background 0.3s ease;
|
2015-07-13 16:22:02 +08:00
|
|
|
|
2019-06-05 10:17:41 +08:00
|
|
|
&[colspan] {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2018-05-04 14:33:06 +08:00
|
|
|
|
2019-06-05 10:17:41 +08:00
|
|
|
.@{iconfont-css-prefix}-filter,
|
|
|
|
.@{table-prefix-cls}-filter-icon {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
width: 28px;
|
|
|
|
height: 100%;
|
|
|
|
color: @table-header-icon-color;
|
|
|
|
font-size: @font-size-sm;
|
|
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: all 0.3s;
|
2015-07-13 18:42:08 +08:00
|
|
|
|
2019-06-05 10:17:41 +08:00
|
|
|
> svg {
|
2019-04-18 22:24:26 +08:00
|
|
|
position: absolute;
|
2019-06-05 10:17:41 +08:00
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
margin-top: -@font-size-sm / 2 + 1px;
|
|
|
|
margin-left: -@font-size-sm / 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.@{table-prefix-cls}-filter-selected.@{iconfont-css-prefix}-filter {
|
|
|
|
color: @primary-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.@{table-prefix-cls}-column-sorter {
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
|
|
.@{table-prefix-cls}-column-sorter-inner {
|
|
|
|
height: 1em;
|
|
|
|
margin-top: 0.35em;
|
|
|
|
margin-left: 0.57142857em;
|
2019-03-31 14:01:24 +08:00
|
|
|
color: @table-header-icon-color;
|
2019-06-05 10:17:41 +08:00
|
|
|
line-height: 1em;
|
2019-03-31 14:01:24 +08:00
|
|
|
text-align: center;
|
2018-12-07 20:02:01 +08:00
|
|
|
transition: all 0.3s;
|
2019-03-31 14:01:24 +08:00
|
|
|
|
2019-06-05 10:17:41 +08:00
|
|
|
.@{table-prefix-cls}-column-sorter-up,
|
|
|
|
.@{table-prefix-cls}-column-sorter-down {
|
|
|
|
.iconfont-size-under-12px(11px);
|
2019-04-15 10:52:00 +08:00
|
|
|
|
2019-06-05 10:17:41 +08:00
|
|
|
display: block;
|
2019-03-31 14:01:24 +08:00
|
|
|
height: 1em;
|
|
|
|
line-height: 1em;
|
|
|
|
transition: all 0.3s;
|
2019-06-05 10:17:41 +08:00
|
|
|
&.on {
|
|
|
|
color: @primary-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-full {
|
|
|
|
margin-top: -0.15em;
|
2019-03-31 14:01:24 +08:00
|
|
|
|
|
|
|
.@{table-prefix-cls}-column-sorter-up,
|
|
|
|
.@{table-prefix-cls}-column-sorter-down {
|
2019-06-05 10:17:41 +08:00
|
|
|
height: 0.5em;
|
|
|
|
line-height: 0.5em;
|
2019-03-31 14:01:24 +08:00
|
|
|
}
|
|
|
|
|
2019-06-05 10:17:41 +08:00
|
|
|
.@{table-prefix-cls}-column-sorter-down {
|
|
|
|
margin-top: 0.125em;
|
2019-03-31 14:01:24 +08:00
|
|
|
}
|
|
|
|
}
|
2018-09-17 17:33:02 +08:00
|
|
|
}
|
2019-06-05 10:17:41 +08:00
|
|
|
}
|
2018-09-17 17:33:02 +08:00
|
|
|
|
2019-06-05 10:17:41 +08:00
|
|
|
&.@{table-prefix-cls}-column-has-actions {
|
|
|
|
position: relative;
|
|
|
|
background-clip: padding-box; // For Firefox background bug, https://github.com/ant-design/ant-design/issues/12628
|
|
|
|
/* stylelint-disable-next-line */
|
|
|
|
-webkit-background-clip: border-box; // For Chrome extra space: https://github.com/ant-design/ant-design/issues/14926
|
2019-04-18 22:24:26 +08:00
|
|
|
|
2019-06-05 10:17:41 +08:00
|
|
|
&.@{table-prefix-cls}-column-has-filters {
|
|
|
|
// https://github.com/ant-design/ant-design/issues/12650
|
|
|
|
padding-right: 30px !important;
|
2019-04-18 22:24:26 +08:00
|
|
|
|
2019-06-05 10:17:41 +08:00
|
|
|
.@{iconfont-css-prefix}-filter,
|
|
|
|
.@{table-prefix-cls}-filter-icon {
|
|
|
|
&.@{table-prefix-cls}-filter-open {
|
|
|
|
color: @text-color-secondary;
|
|
|
|
background: @table-header-filter-active-bg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Very complicated styles logic but necessary
|
|
|
|
&:hover {
|
2018-10-06 18:20:43 +08:00
|
|
|
.@{iconfont-css-prefix}-filter,
|
|
|
|
.@{table-prefix-cls}-filter-icon {
|
2019-06-05 10:17:41 +08:00
|
|
|
&:hover {
|
2018-10-06 18:20:43 +08:00
|
|
|
color: @text-color-secondary;
|
2018-10-23 04:02:28 +08:00
|
|
|
background: @table-header-filter-active-bg;
|
2018-10-06 18:20:43 +08:00
|
|
|
}
|
2019-06-05 10:17:41 +08:00
|
|
|
&:active {
|
|
|
|
color: @text-color;
|
2018-10-06 18:20:43 +08:00
|
|
|
}
|
2018-09-17 18:06:58 +08:00
|
|
|
}
|
|
|
|
}
|
2019-06-05 10:17:41 +08:00
|
|
|
}
|
2018-09-17 18:06:58 +08:00
|
|
|
|
2019-06-05 10:17:41 +08:00
|
|
|
&.@{table-prefix-cls}-column-has-sorters {
|
|
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
|
|
background: @table-header-sort-active-bg;
|
|
|
|
.@{iconfont-css-prefix}-filter,
|
|
|
|
.@{table-prefix-cls}-filter-icon {
|
2018-10-23 04:02:28 +08:00
|
|
|
background: @table-header-sort-active-bg;
|
2018-10-06 18:20:43 +08:00
|
|
|
}
|
2019-06-05 10:17:41 +08:00
|
|
|
}
|
|
|
|
&:active {
|
|
|
|
.@{table-prefix-cls}-column-sorter-up:not(.on),
|
|
|
|
.@{table-prefix-cls}-column-sorter-down:not(.on) {
|
|
|
|
color: @text-color-secondary;
|
2018-10-06 18:20:43 +08:00
|
|
|
}
|
2018-09-17 17:33:02 +08:00
|
|
|
}
|
2018-10-10 13:45:11 +08:00
|
|
|
}
|
2019-06-05 10:17:41 +08:00
|
|
|
}
|
2018-09-17 17:33:02 +08:00
|
|
|
|
2019-06-05 10:17:41 +08:00
|
|
|
.@{table-prefix-cls}-header-column {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2019-03-31 14:01:24 +08:00
|
|
|
|
2019-06-05 10:17:41 +08:00
|
|
|
.@{table-prefix-cls}-column-sorters {
|
|
|
|
display: table;
|
2019-03-31 14:01:24 +08:00
|
|
|
|
2019-06-05 10:17:41 +08:00
|
|
|
> .@{table-prefix-cls}-column-title {
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2019-04-06 12:56:07 +08:00
|
|
|
|
2019-06-05 10:17:41 +08:00
|
|
|
> *:not(.@{table-prefix-cls}-column-sorter) {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
&::before {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
background: transparent;
|
|
|
|
transition: all 0.3s;
|
|
|
|
content: '';
|
|
|
|
}
|
|
|
|
&:hover::before {
|
|
|
|
background: rgba(0, 0, 0, 0.04);
|
2019-04-06 12:56:07 +08:00
|
|
|
}
|
2018-09-17 17:33:02 +08:00
|
|
|
}
|
2019-06-05 10:17:41 +08:00
|
|
|
}
|
2018-09-17 17:33:02 +08:00
|
|
|
|
2019-06-05 10:17:41 +08:00
|
|
|
&.@{table-prefix-cls}-column-has-sorters {
|
|
|
|
user-select: none;
|
2018-09-17 17:57:01 +08:00
|
|
|
}
|
2015-07-09 14:51:48 +08:00
|
|
|
}
|
|
|
|
|
2018-03-18 11:14:31 +08:00
|
|
|
&-thead > tr:first-child > th {
|
|
|
|
&:first-child {
|
2018-12-21 11:46:52 +08:00
|
|
|
border-top-left-radius: @table-border-radius-base;
|
2018-03-18 11:14:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
2018-12-21 11:46:52 +08:00
|
|
|
border-top-right-radius: @table-border-radius-base;
|
2018-03-18 11:14:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-04 14:29:27 +08:00
|
|
|
&-thead > tr:not(:last-child) > th {
|
|
|
|
&[colspan] {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-14 16:18:12 +08:00
|
|
|
&-tbody > tr > td {
|
2017-01-31 16:05:10 +08:00
|
|
|
border-bottom: @border-width-base @border-style-base @border-color-split;
|
2018-12-07 20:02:01 +08:00
|
|
|
transition: all 0.3s, border 0s;
|
2015-07-09 14:51:48 +08:00
|
|
|
}
|
|
|
|
|
2016-08-14 16:18:12 +08:00
|
|
|
&-thead > tr,
|
|
|
|
&-tbody > tr {
|
2018-12-07 20:02:01 +08:00
|
|
|
transition: all 0.3s, height 0s;
|
2016-03-30 12:05:21 +08:00
|
|
|
&.@{table-prefix-cls}-row-hover,
|
2015-07-09 14:51:48 +08:00
|
|
|
&:hover {
|
2018-11-02 18:23:26 +08:00
|
|
|
&:not(.@{table-prefix-cls}-expanded-row) > td {
|
2017-04-11 17:56:38 +08:00
|
|
|
background: @table-row-hover-bg;
|
2017-02-28 11:31:01 +08:00
|
|
|
}
|
2015-07-09 14:51:48 +08:00
|
|
|
}
|
2019-06-03 10:05:37 +08:00
|
|
|
&.@{table-prefix-cls}-row-selected > td {
|
|
|
|
&.@{table-prefix-cls}-column-sort {
|
|
|
|
background: @table-body-selected-sort-bg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
&.@{table-prefix-cls}-row-selected > td {
|
|
|
|
background: @table-selected-row-hover-bg;
|
|
|
|
&.@{table-prefix-cls}-column-sort {
|
|
|
|
background: @table-body-selected-sort-bg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-09 14:51:48 +08:00
|
|
|
}
|
|
|
|
|
2019-06-05 10:17:41 +08:00
|
|
|
&-thead > tr:hover {
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
|
2016-03-24 17:57:03 +08:00
|
|
|
&-footer {
|
2019-02-15 10:48:07 +08:00
|
|
|
position: relative;
|
2017-04-26 10:16:26 +08:00
|
|
|
padding: @table-padding-vertical @table-padding-horizontal;
|
2017-04-11 17:56:38 +08:00
|
|
|
background: @table-header-bg;
|
2017-09-27 22:32:49 +08:00
|
|
|
border-top: @border-width-base @border-style-base @border-color-split;
|
2019-02-15 10:48:07 +08:00
|
|
|
border-radius: 0 0 @table-border-radius-base @table-border-radius-base;
|
|
|
|
&::before {
|
2016-11-15 20:06:41 +08:00
|
|
|
position: absolute;
|
|
|
|
top: -1px;
|
|
|
|
left: 0;
|
2019-02-15 10:48:07 +08:00
|
|
|
width: 100%;
|
|
|
|
height: 1px;
|
|
|
|
background: @table-header-bg;
|
|
|
|
content: '';
|
2016-11-15 20:06:41 +08:00
|
|
|
}
|
2016-03-06 00:08:53 +08:00
|
|
|
}
|
|
|
|
|
2016-05-05 16:21:51 +08:00
|
|
|
&.@{table-prefix-cls}-bordered &-footer {
|
2017-01-31 16:05:10 +08:00
|
|
|
border: @border-width-base @border-style-base @border-color-split;
|
2016-05-05 16:21:51 +08:00
|
|
|
}
|
|
|
|
|
2016-07-21 15:14:42 +08:00
|
|
|
&-title {
|
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
2019-02-15 10:48:07 +08:00
|
|
|
padding: @table-padding-vertical 0;
|
2018-12-21 11:46:52 +08:00
|
|
|
border-radius: @table-border-radius-base @table-border-radius-base 0 0;
|
2016-07-21 15:14:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&.@{table-prefix-cls}-bordered &-title {
|
2017-04-26 10:16:26 +08:00
|
|
|
padding-right: @table-padding-horizontal;
|
2019-02-15 10:48:07 +08:00
|
|
|
padding-left: @table-padding-horizontal;
|
|
|
|
border: @border-width-base @border-style-base @border-color-split;
|
2016-07-21 15:14:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-title + &-content {
|
|
|
|
position: relative;
|
2019-02-15 10:48:07 +08:00
|
|
|
border-radius: @table-border-radius-base @table-border-radius-base 0 0;
|
2019-06-03 16:46:31 +08:00
|
|
|
|
2016-11-14 14:37:04 +08:00
|
|
|
.@{table-prefix-cls}-bordered & {
|
|
|
|
&,
|
2018-03-18 11:14:31 +08:00
|
|
|
table,
|
|
|
|
.@{table-prefix-cls}-thead > tr:first-child > th {
|
2016-11-14 14:37:04 +08:00
|
|
|
border-radius: 0;
|
|
|
|
}
|
2016-07-21 15:14:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-27 18:24:30 +08:00
|
|
|
// https://github.com/ant-design/ant-design/issues/4373
|
|
|
|
&-without-column-header &-title + &-content,
|
|
|
|
&-without-column-header table {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
2019-02-14 17:47:20 +08:00
|
|
|
// https://github.com/ant-design/ant-design/issues/14834
|
|
|
|
&-without-column-header&-bordered&-empty &-placeholder {
|
|
|
|
border-top: 1px solid @border-color-split;
|
|
|
|
border-radius: @border-radius-base;
|
|
|
|
}
|
|
|
|
|
2017-11-18 00:03:30 +08:00
|
|
|
&-tbody > tr.@{table-prefix-cls}-row-selected td {
|
2019-05-06 12:04:39 +08:00
|
|
|
color: @table-selected-row-color;
|
2017-11-18 00:03:30 +08:00
|
|
|
background: @table-selected-row-bg;
|
|
|
|
}
|
|
|
|
|
2016-08-17 14:55:03 +08:00
|
|
|
&-thead > tr > th.@{table-prefix-cls}-column-sort {
|
2017-06-24 00:37:19 +08:00
|
|
|
background: @table-header-sort-bg;
|
2015-07-15 11:43:00 +08:00
|
|
|
}
|
|
|
|
|
2018-09-17 18:49:07 +08:00
|
|
|
&-tbody > tr > td.@{table-prefix-cls}-column-sort {
|
|
|
|
background: @table-body-sort-bg;
|
|
|
|
}
|
|
|
|
|
2016-08-14 16:18:12 +08:00
|
|
|
&-thead > tr > th,
|
|
|
|
&-tbody > tr > td {
|
2017-04-26 10:16:26 +08:00
|
|
|
padding: @table-padding-vertical @table-padding-horizontal;
|
2015-07-09 14:51:48 +08:00
|
|
|
}
|
2015-07-12 17:10:06 +08:00
|
|
|
|
2017-01-10 14:03:04 +08:00
|
|
|
&-expand-icon-th,
|
|
|
|
&-row-expand-icon-cell {
|
2017-03-06 18:10:54 +08:00
|
|
|
width: 50px;
|
2019-02-15 10:48:07 +08:00
|
|
|
min-width: 50px;
|
|
|
|
text-align: center;
|
2015-07-15 11:12:17 +08:00
|
|
|
}
|
|
|
|
|
2016-03-24 16:16:37 +08:00
|
|
|
&-header {
|
|
|
|
overflow: hidden;
|
2019-02-15 10:48:07 +08:00
|
|
|
background: @table-header-bg;
|
2016-03-24 16:16:37 +08:00
|
|
|
}
|
|
|
|
|
2016-01-24 15:39:34 +08:00
|
|
|
&-header table {
|
2018-12-21 11:46:52 +08:00
|
|
|
border-radius: @table-border-radius-base @table-border-radius-base 0 0;
|
2016-01-24 15:39:34 +08:00
|
|
|
}
|
|
|
|
|
2015-07-12 17:10:06 +08:00
|
|
|
&-loading {
|
2015-09-15 11:40:58 +08:00
|
|
|
position: relative;
|
|
|
|
.@{table-prefix-cls}-body {
|
2016-11-29 11:56:10 +08:00
|
|
|
background: @component-background;
|
2015-10-28 19:33:25 +08:00
|
|
|
opacity: 0.5;
|
2015-07-16 18:26:17 +08:00
|
|
|
}
|
2015-10-27 10:34:05 +08:00
|
|
|
.@{table-prefix-cls}-spin-holder {
|
2019-02-15 10:48:07 +08:00
|
|
|
position: absolute;
|
2015-10-27 10:34:05 +08:00
|
|
|
top: 50%;
|
2019-02-15 10:48:07 +08:00
|
|
|
left: 50%;
|
|
|
|
height: 20px;
|
2015-10-27 10:34:05 +08:00
|
|
|
margin-left: -30px;
|
2019-02-15 10:48:07 +08:00
|
|
|
line-height: 20px;
|
2015-10-27 10:34:05 +08:00
|
|
|
}
|
|
|
|
.@{table-prefix-cls}-with-pagination {
|
|
|
|
margin-top: -20px;
|
|
|
|
}
|
|
|
|
.@{table-prefix-cls}-without-pagination {
|
|
|
|
margin-top: 10px;
|
2015-07-16 18:26:17 +08:00
|
|
|
}
|
2015-07-12 17:10:06 +08:00
|
|
|
}
|
2015-07-12 18:14:17 +08:00
|
|
|
|
2016-05-21 18:08:09 +08:00
|
|
|
&-bordered {
|
2016-10-10 22:38:15 +08:00
|
|
|
.@{table-prefix-cls}-header > table,
|
|
|
|
.@{table-prefix-cls}-body > table,
|
|
|
|
.@{table-prefix-cls}-fixed-left table,
|
|
|
|
.@{table-prefix-cls}-fixed-right table {
|
2017-01-31 16:05:10 +08:00
|
|
|
border: @border-width-base @border-style-base @border-color-split;
|
2016-11-11 17:57:27 +08:00
|
|
|
border-right: 0;
|
|
|
|
border-bottom: 0;
|
2015-08-19 16:10:08 +08:00
|
|
|
}
|
2015-08-11 20:05:52 +08:00
|
|
|
|
2017-01-19 22:40:30 +08:00
|
|
|
&.@{table-prefix-cls}-empty {
|
|
|
|
.@{table-prefix-cls}-placeholder {
|
2017-01-31 16:05:10 +08:00
|
|
|
border-right: @border-width-base @border-style-base @border-color-split;
|
2019-02-15 10:48:07 +08:00
|
|
|
border-left: @border-width-base @border-style-base @border-color-split;
|
2017-01-19 22:40:30 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-21 18:08:09 +08:00
|
|
|
&.@{table-prefix-cls}-fixed-header {
|
2016-10-10 22:38:15 +08:00
|
|
|
.@{table-prefix-cls}-header > table {
|
|
|
|
border-bottom: 0;
|
2016-05-21 18:08:09 +08:00
|
|
|
}
|
2016-10-10 22:38:15 +08:00
|
|
|
|
|
|
|
.@{table-prefix-cls}-body > table {
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-top-right-radius: 0;
|
2016-07-11 13:50:15 +08:00
|
|
|
}
|
2016-10-10 22:38:15 +08:00
|
|
|
|
2019-02-19 14:55:31 +08:00
|
|
|
.@{table-prefix-cls}-header + .@{table-prefix-cls}-body > table,
|
2016-10-10 22:38:15 +08:00
|
|
|
.@{table-prefix-cls}-body-inner > table {
|
|
|
|
border-top: 0;
|
2016-07-11 13:50:15 +08:00
|
|
|
}
|
2016-05-21 18:08:09 +08:00
|
|
|
}
|
|
|
|
|
2018-05-04 14:29:27 +08:00
|
|
|
.@{table-prefix-cls}-thead > tr:not(:last-child) > th {
|
2017-01-31 16:05:10 +08:00
|
|
|
border-bottom: @border-width-base @border-style-base @border-color-split;
|
2015-08-11 20:05:52 +08:00
|
|
|
}
|
|
|
|
|
2016-08-14 16:18:12 +08:00
|
|
|
.@{table-prefix-cls}-thead > tr > th,
|
|
|
|
.@{table-prefix-cls}-tbody > tr > td {
|
2017-01-31 16:05:10 +08:00
|
|
|
border-right: @border-width-base @border-style-base @border-color-split;
|
2016-09-09 13:55:41 +08:00
|
|
|
}
|
2015-08-11 20:05:52 +08:00
|
|
|
}
|
2015-08-28 17:20:02 +08:00
|
|
|
|
2015-09-15 11:40:58 +08:00
|
|
|
&-placeholder {
|
2017-02-15 12:08:17 +08:00
|
|
|
position: relative;
|
2019-02-15 10:48:07 +08:00
|
|
|
z-index: 1;
|
2019-06-21 15:20:01 +08:00
|
|
|
margin-top: -1px;
|
2017-04-26 10:16:26 +08:00
|
|
|
padding: @table-padding-vertical @table-padding-horizontal;
|
2019-04-03 18:59:02 +08:00
|
|
|
color: @disabled-color;
|
2019-02-15 10:48:07 +08:00
|
|
|
font-size: @font-size-base;
|
|
|
|
text-align: center;
|
2016-11-29 11:56:10 +08:00
|
|
|
background: @component-background;
|
2019-06-21 15:20:01 +08:00
|
|
|
border-top: @border-width-base @border-style-base @border-color-split;
|
2017-01-31 16:05:10 +08:00
|
|
|
border-bottom: @border-width-base @border-style-base @border-color-split;
|
2019-02-15 10:48:07 +08:00
|
|
|
border-radius: 0 0 @border-radius-base @border-radius-base;
|
2016-09-14 16:18:33 +08:00
|
|
|
.@{iconfont-css-prefix} {
|
2015-08-28 17:20:02 +08:00
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
}
|
2015-07-14 15:35:17 +08:00
|
|
|
|
2017-11-21 10:19:11 +08:00
|
|
|
&-pagination.@{ant-prefix}-pagination {
|
2016-03-24 16:16:37 +08:00
|
|
|
float: right;
|
2019-02-15 10:48:07 +08:00
|
|
|
margin: 16px 0;
|
2016-03-24 16:16:37 +08:00
|
|
|
}
|
2015-08-23 15:51:45 +08:00
|
|
|
|
2016-03-24 16:16:37 +08:00
|
|
|
&-filter-dropdown {
|
2019-02-15 10:48:07 +08:00
|
|
|
position: relative;
|
2016-03-24 16:16:37 +08:00
|
|
|
min-width: 96px;
|
|
|
|
margin-left: -8px;
|
2016-11-29 11:56:10 +08:00
|
|
|
background: @component-background;
|
2016-03-24 16:16:37 +08:00
|
|
|
border-radius: @border-radius-base;
|
|
|
|
box-shadow: @box-shadow-base;
|
2015-12-10 12:13:13 +08:00
|
|
|
|
2016-09-14 16:18:33 +08:00
|
|
|
.@{ant-prefix}-dropdown-menu {
|
2016-03-24 16:16:37 +08:00
|
|
|
border: 0;
|
|
|
|
border-radius: @border-radius-base @border-radius-base 0 0;
|
2019-02-15 10:48:07 +08:00
|
|
|
box-shadow: none;
|
2017-02-21 15:54:14 +08:00
|
|
|
|
|
|
|
// https://github.com/ant-design/ant-design/issues/4916
|
|
|
|
&-without-submenu {
|
|
|
|
max-height: 400px;
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
2016-01-10 21:10:10 +08:00
|
|
|
|
2016-06-01 11:46:27 +08:00
|
|
|
&-item > label + span {
|
2017-09-27 20:03:17 +08:00
|
|
|
padding-right: 0;
|
2016-06-01 11:46:27 +08:00
|
|
|
}
|
|
|
|
|
2016-03-24 16:16:37 +08:00
|
|
|
&-sub {
|
|
|
|
border-radius: @border-radius-base;
|
|
|
|
box-shadow: @box-shadow-base;
|
|
|
|
}
|
2016-01-10 21:10:10 +08:00
|
|
|
|
2016-09-14 16:18:33 +08:00
|
|
|
.@{ant-prefix}-dropdown-submenu-contain-selected {
|
2019-02-15 10:48:07 +08:00
|
|
|
.@{ant-prefix}-dropdown-menu-submenu-title::after {
|
2016-03-24 16:16:37 +08:00
|
|
|
color: @primary-color;
|
|
|
|
font-weight: bold;
|
2017-03-16 23:36:35 +08:00
|
|
|
text-shadow: 0 0 2px @primary-2;
|
2016-03-24 16:16:37 +08:00
|
|
|
}
|
2016-01-10 21:10:10 +08:00
|
|
|
}
|
|
|
|
}
|
2015-12-10 12:13:13 +08:00
|
|
|
|
2016-09-14 16:18:33 +08:00
|
|
|
.@{ant-prefix}-dropdown-menu-item {
|
2016-03-24 16:16:37 +08:00
|
|
|
overflow: hidden;
|
2015-08-23 15:51:45 +08:00
|
|
|
}
|
2016-03-24 16:16:37 +08:00
|
|
|
|
2016-09-14 16:18:33 +08:00
|
|
|
> .@{ant-prefix}-dropdown-menu > .@{ant-prefix}-dropdown-menu-item:last-child,
|
2018-12-07 20:02:01 +08:00
|
|
|
> .@{ant-prefix}-dropdown-menu
|
|
|
|
> .@{ant-prefix}-dropdown-menu-submenu:last-child
|
|
|
|
.@{ant-prefix}-dropdown-menu-submenu-title {
|
2016-03-24 16:16:37 +08:00
|
|
|
border-radius: 0;
|
2015-08-23 15:51:45 +08:00
|
|
|
}
|
2016-03-24 16:16:37 +08:00
|
|
|
|
|
|
|
&-btns {
|
2017-05-02 16:07:16 +08:00
|
|
|
padding: 7px 8px;
|
2019-02-15 10:48:07 +08:00
|
|
|
overflow: hidden;
|
2017-01-31 16:05:10 +08:00
|
|
|
border-top: @border-width-base @border-style-base @border-color-split;
|
2015-08-23 15:51:45 +08:00
|
|
|
}
|
2016-03-24 16:16:37 +08:00
|
|
|
|
|
|
|
&-link {
|
|
|
|
color: @link-color;
|
|
|
|
&:hover {
|
|
|
|
color: @link-hover-color;
|
|
|
|
}
|
|
|
|
&:active {
|
|
|
|
color: @link-active-color;
|
|
|
|
}
|
|
|
|
&.confirm {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
&.clear {
|
|
|
|
float: right;
|
|
|
|
}
|
2015-08-23 15:51:45 +08:00
|
|
|
}
|
|
|
|
}
|
2015-09-10 11:04:31 +08:00
|
|
|
|
2017-02-23 19:29:47 +08:00
|
|
|
&-selection {
|
2019-01-29 14:02:22 +08:00
|
|
|
white-space: nowrap;
|
|
|
|
|
2017-03-24 11:44:36 +08:00
|
|
|
&-select-all-custom {
|
2017-03-06 17:14:34 +08:00
|
|
|
margin-right: 4px !important;
|
|
|
|
}
|
2017-02-23 19:29:47 +08:00
|
|
|
|
|
|
|
.@{iconfont-css-prefix}-down {
|
2017-09-27 22:32:49 +08:00
|
|
|
color: @table-header-icon-color;
|
2018-12-07 20:02:01 +08:00
|
|
|
transition: all 0.3s;
|
2017-02-23 19:29:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-menu {
|
|
|
|
min-width: 96px;
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-left: -30px;
|
|
|
|
background: @component-background;
|
|
|
|
border-radius: @border-radius-base;
|
|
|
|
box-shadow: @box-shadow-base;
|
|
|
|
|
|
|
|
.@{ant-prefix}-action-down {
|
2017-09-27 22:32:49 +08:00
|
|
|
color: @table-header-icon-color;
|
2017-02-23 19:29:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-down {
|
|
|
|
display: inline-block;
|
2019-02-15 10:48:07 +08:00
|
|
|
padding: 0;
|
2017-03-06 17:14:34 +08:00
|
|
|
line-height: 1;
|
2019-02-15 10:48:07 +08:00
|
|
|
cursor: pointer;
|
2017-05-03 16:23:08 +08:00
|
|
|
&:hover .@{iconfont-css-prefix}-down {
|
2018-12-04 13:11:31 +08:00
|
|
|
color: fade(@black, 60%);
|
2017-05-03 16:23:08 +08:00
|
|
|
}
|
2017-02-23 19:29:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-10 12:21:41 +08:00
|
|
|
&-row {
|
2015-09-10 11:04:31 +08:00
|
|
|
&-expand-icon {
|
|
|
|
display: inline-block;
|
2016-06-01 12:07:11 +08:00
|
|
|
width: 17px;
|
|
|
|
height: 17px;
|
2016-07-11 13:50:15 +08:00
|
|
|
line-height: 14px;
|
2019-02-15 10:48:07 +08:00
|
|
|
text-align: center;
|
|
|
|
background: @component-background;
|
2017-01-31 16:05:10 +08:00
|
|
|
border: @border-width-base @border-style-base @border-color-split;
|
2019-02-15 10:48:07 +08:00
|
|
|
cursor: pointer;
|
2015-09-10 11:04:31 +08:00
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
2019-02-15 10:48:07 +08:00
|
|
|
&-expanded::after {
|
2015-11-26 19:32:55 +08:00
|
|
|
content: '-';
|
2015-09-10 11:04:31 +08:00
|
|
|
}
|
|
|
|
|
2019-02-15 10:48:07 +08:00
|
|
|
&-collapsed::after {
|
2015-11-26 19:32:55 +08:00
|
|
|
content: '+';
|
2015-09-10 11:04:31 +08:00
|
|
|
}
|
2015-12-28 21:41:42 +08:00
|
|
|
|
2015-12-29 14:25:38 +08:00
|
|
|
&-spaced {
|
2015-12-28 21:41:42 +08:00
|
|
|
visibility: hidden;
|
2019-02-15 10:48:07 +08:00
|
|
|
&::after {
|
2015-12-28 21:41:42 +08:00
|
|
|
content: '.';
|
|
|
|
}
|
|
|
|
}
|
2015-09-10 11:04:31 +08:00
|
|
|
}
|
2016-03-24 16:16:37 +08:00
|
|
|
|
2015-09-10 12:21:41 +08:00
|
|
|
tr&-expanded-row {
|
2015-11-26 19:32:55 +08:00
|
|
|
&,
|
|
|
|
&:hover {
|
2018-03-24 13:18:38 +08:00
|
|
|
background: @table-expanded-row-bg;
|
2015-09-10 12:21:41 +08:00
|
|
|
}
|
2018-11-02 18:23:26 +08:00
|
|
|
|
2018-11-08 20:52:38 +08:00
|
|
|
td > .@{table-prefix-cls}-wrapper {
|
2018-11-02 18:23:26 +08:00
|
|
|
margin: -@table-padding-vertical -@table-padding-horizontal -@table-padding-vertical - 1px;
|
|
|
|
}
|
2015-09-10 12:21:41 +08:00
|
|
|
}
|
2015-12-25 15:45:44 +08:00
|
|
|
|
|
|
|
.@{table-prefix-cls}-row-indent + .@{table-prefix-cls}-row-expand-icon {
|
2016-01-20 14:15:21 +08:00
|
|
|
margin-right: 8px;
|
2015-12-25 15:45:44 +08:00
|
|
|
}
|
2016-01-20 17:14:34 +08:00
|
|
|
|
2016-03-24 16:16:37 +08:00
|
|
|
&-scroll {
|
|
|
|
overflow: auto;
|
2017-01-19 16:08:09 +08:00
|
|
|
overflow-x: hidden;
|
2016-06-02 17:35:25 +08:00
|
|
|
table {
|
2018-03-27 15:53:14 +08:00
|
|
|
width: auto;
|
2016-06-02 17:35:25 +08:00
|
|
|
min-width: 100%;
|
2019-01-25 15:35:48 +08:00
|
|
|
|
|
|
|
// https://github.com/ant-design/ant-design/issues/14545
|
|
|
|
.@{table-prefix-cls}-fixed-columns-in-body {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
2016-06-02 17:35:25 +08:00
|
|
|
}
|
2016-03-24 16:16:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-body-inner {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2017-06-30 11:24:28 +08:00
|
|
|
&-fixed-header > &-content > &-scroll > &-body {
|
2016-06-16 21:56:13 +08:00
|
|
|
position: relative;
|
2016-11-29 11:56:10 +08:00
|
|
|
background: @component-background;
|
2016-06-16 21:56:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-fixed-header &-body-inner {
|
2016-06-21 12:18:25 +08:00
|
|
|
overflow: scroll;
|
2016-03-24 17:01:41 +08:00
|
|
|
}
|
|
|
|
|
2016-06-21 12:18:25 +08:00
|
|
|
&-fixed-header &-scroll &-header {
|
2017-02-16 12:00:00 +08:00
|
|
|
margin-bottom: -20px;
|
2019-02-15 10:48:07 +08:00
|
|
|
padding-bottom: 20px;
|
|
|
|
overflow: scroll;
|
2018-09-08 21:24:35 +08:00
|
|
|
// Workaround for additional scroll bar on the table header
|
|
|
|
// https://github.com/ant-design/ant-design/issues/6515#issuecomment-419634369
|
|
|
|
opacity: 0.9999;
|
2019-06-04 16:18:25 +08:00
|
|
|
|
|
|
|
&::-webkit-scrollbar {
|
2019-06-12 18:12:11 +08:00
|
|
|
border: 1px solid @border-color-split;
|
|
|
|
border-width: 0 0 1px 0;
|
2019-06-04 16:18:25 +08:00
|
|
|
}
|
2016-06-16 21:56:13 +08:00
|
|
|
}
|
|
|
|
|
2019-06-04 14:20:18 +08:00
|
|
|
&-hide-scrollbar {
|
|
|
|
// https://github.com/ant-design/ant-design/issues/4637
|
|
|
|
// https://stackoverflow.com/a/54101063
|
|
|
|
// https://github.com/react-component/table/pull/333
|
|
|
|
scrollbar-color: transparent transparent;
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-12 19:39:28 +08:00
|
|
|
// optimize header style of borderd table after hide extra scrollbar
|
|
|
|
&-bordered&-fixed-header &-scroll &-header {
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
border: 1px solid @border-color-split;
|
|
|
|
border-width: 1px 1px 1px 0;
|
|
|
|
}
|
|
|
|
&.@{table-prefix-cls}-hide-scrollbar .@{table-prefix-cls}-thead > tr > th:last-child {
|
|
|
|
border-right-color: transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-24 16:16:37 +08:00
|
|
|
&-fixed-left,
|
|
|
|
&-fixed-right {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2019-02-15 10:48:07 +08:00
|
|
|
z-index: @zindex-table-fixed;
|
2016-03-24 16:16:37 +08:00
|
|
|
overflow: hidden;
|
2016-03-25 12:37:54 +08:00
|
|
|
border-radius: 0;
|
2019-02-15 10:48:07 +08:00
|
|
|
transition: box-shadow 0.3s ease;
|
2016-03-24 16:16:37 +08:00
|
|
|
table {
|
|
|
|
width: auto;
|
2016-11-29 11:56:10 +08:00
|
|
|
background: @component-background;
|
2016-03-24 16:16:37 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-11 13:50:15 +08:00
|
|
|
&-fixed-header &-fixed-left &-body-outer &-fixed,
|
|
|
|
&-fixed-header &-fixed-right &-body-outer &-fixed {
|
2016-06-01 12:07:11 +08:00
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
2016-03-24 16:16:37 +08:00
|
|
|
&-fixed-left {
|
|
|
|
left: 0;
|
2017-01-19 21:51:53 +08:00
|
|
|
box-shadow: 6px 0 6px -4px @shadow-color;
|
2016-05-21 18:08:09 +08:00
|
|
|
.@{table-prefix-cls}-header {
|
|
|
|
overflow-y: hidden;
|
|
|
|
}
|
|
|
|
// hide scrollbar in left fixed columns
|
|
|
|
.@{table-prefix-cls}-body-inner {
|
2016-03-24 16:16:37 +08:00
|
|
|
margin-right: -20px;
|
2016-05-21 18:08:09 +08:00
|
|
|
padding-right: 20px;
|
|
|
|
}
|
|
|
|
.@{table-prefix-cls}-fixed-header & .@{table-prefix-cls}-body-inner {
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
&,
|
|
|
|
table {
|
2018-12-21 11:46:52 +08:00
|
|
|
border-radius: @table-border-radius-base 0 0 0;
|
2016-03-24 16:16:37 +08:00
|
|
|
}
|
2018-03-03 16:42:31 +08:00
|
|
|
.ant-table-thead > tr > th:last-child {
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
}
|
2016-03-24 16:16:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-fixed-right {
|
|
|
|
right: 0;
|
2017-01-19 21:51:53 +08:00
|
|
|
box-shadow: -6px 0 6px -4px @shadow-color;
|
2016-05-21 18:08:09 +08:00
|
|
|
&,
|
|
|
|
table {
|
2018-12-21 11:46:52 +08:00
|
|
|
border-radius: 0 @table-border-radius-base 0 0;
|
2016-05-21 18:08:09 +08:00
|
|
|
}
|
2016-06-01 14:45:07 +08:00
|
|
|
// hide expand row content in right-fixed Table
|
|
|
|
// https://github.com/ant-design/ant-design/issues/1898
|
|
|
|
.@{table-prefix-cls}-expanded-row {
|
|
|
|
color: transparent;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2018-03-03 16:42:31 +08:00
|
|
|
.ant-table-thead > tr > th:first-child {
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
}
|
2016-03-24 16:16:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&&-scroll-position-left &-fixed-left {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&&-scroll-position-right &-fixed-right {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
2019-04-21 13:54:15 +08:00
|
|
|
|
|
|
|
// ========================== Row Selection ==========================
|
|
|
|
colgroup {
|
|
|
|
> col.@{table-prefix-cls}-selection-col {
|
|
|
|
width: @table-selection-column-width;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-thead > tr > th.@{table-prefix-cls}-selection-column-custom {
|
|
|
|
.@{table-prefix-cls}-selection {
|
|
|
|
margin-right: -15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-thead > tr > th.@{table-prefix-cls}-selection-column,
|
|
|
|
&-tbody > tr > td.@{table-prefix-cls}-selection-column {
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
.@{ant-prefix}-radio-wrapper {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-row[class*='@{table-prefix-cls}-row-level-0'] .@{table-prefix-cls}-selection-column > span {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2015-09-10 11:04:31 +08:00
|
|
|
}
|
2017-12-10 16:20:02 +08:00
|
|
|
|
2019-06-05 10:17:41 +08:00
|
|
|
/**
|
|
|
|
* Another fix of Firefox:
|
|
|
|
*/
|
|
|
|
@supports (-moz-appearance: meterbar) {
|
2019-07-15 14:23:00 +08:00
|
|
|
// https://github.com/ant-design/ant-design/issues/12628
|
2019-06-05 10:17:41 +08:00
|
|
|
.@{table-prefix-cls}-thead > tr > th.@{table-prefix-cls}-column-has-actions {
|
|
|
|
background-clip: padding-box;
|
|
|
|
}
|
2019-07-15 14:23:00 +08:00
|
|
|
|
|
|
|
// https://github.com/ant-design/ant-design/issues/17611
|
|
|
|
.@{table-prefix-cls} table {
|
|
|
|
border-collapse: separate;
|
|
|
|
border-spacing: 0;
|
|
|
|
}
|
2019-06-05 10:17:41 +08:00
|
|
|
}
|
|
|
|
|
2017-12-10 16:20:02 +08:00
|
|
|
@import './size';
|