ant-design/style/components/table.less

368 lines
6.5 KiB
Plaintext
Raw Normal View History

2015-07-09 14:51:48 +08:00
@import "../mixins/index";
2015-09-10 11:04:31 +08:00
2015-08-20 16:55:42 +08:00
@table-prefix-cls: ~"@{css-prefix}table";
@table-border-color: @border-color-split;
@table-head-background-color: #f4f4f4;
2015-07-09 14:51:48 +08:00
2015-08-20 16:55:42 +08:00
.@{table-prefix-cls} {
2015-07-09 14:51:48 +08:00
font-size: @font-size-base;
color: @text-color;
&-body {
transition: opacity 0.3s ease;
}
2015-07-09 14:51:48 +08:00
table {
width: 100%;
max-width: 100%;
border-collapse: separate;
2015-07-15 17:57:19 +08:00
text-align: left;
border-radius: @border-radius-base;
overflow: hidden;
2015-07-09 14:51:48 +08:00
}
th {
background: @table-head-background-color;
font-weight: bold;
2015-07-15 17:57:19 +08:00
transition: background .3s ease;
position: relative;
2015-07-13 16:22:02 +08:00
2015-11-30 14:48:33 +08:00
.anticon-filter {
2015-07-16 18:26:17 +08:00
margin-left: 4px;
.iconfont-size-under-12px(10px);
2015-07-13 16:22:02 +08:00
cursor: pointer;
color: #aaa;
transition: all 0.3s ease;
&:hover {
color: #666;
}
}
2015-07-13 18:42:08 +08:00
2015-11-30 14:48:33 +08:00
.@{table-prefix-cls}-filter-selected.anticon-filter {
2015-07-13 18:42:08 +08:00
color: @primary-color;
}
2015-07-09 14:51:48 +08:00
}
td {
border-bottom: 1px solid @table-border-color;
}
tr {
transition: all .3s ease;
&:hover {
background: tint(@primary-color, 90%);
}
}
thead tr:hover {
background: none;
}
2015-08-20 16:55:42 +08:00
tr.@{table-prefix-cls}-row-selected {
2015-07-15 11:12:17 +08:00
background: #fafafa;
}
2015-08-20 16:55:42 +08:00
th.@{table-prefix-cls}-column-sort {
2015-11-26 19:32:55 +08:00
background: #eaeaea;
}
2015-11-26 19:32:55 +08:00
th,
td {
2015-07-09 14:51:48 +08:00
padding: 16px 8px;
}
2015-07-12 17:10:06 +08:00
2015-08-20 16:55:42 +08:00
th.@{table-prefix-cls}-selection-column,
td.@{table-prefix-cls}-selection-column {
2015-07-15 11:12:17 +08:00
text-align: center;
2015-12-09 21:55:07 +08:00
width: 60px;
2015-07-15 11:12:17 +08:00
}
2015-07-12 17:10:06 +08:00
&-loading {
position: relative;
.@{table-prefix-cls}-body {
background: #fff;
opacity: 0.5;
2015-07-16 18:26:17 +08:00
}
2015-10-27 10:34:05 +08:00
.@{table-prefix-cls}-spin-holder {
2015-07-16 18:26:17 +08:00
height: 20px;
line-height: 20px;
2015-10-27 10:34:05 +08:00
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;
2015-07-16 18:26:17 +08:00
}
2015-07-12 17:10:06 +08:00
}
2015-07-12 18:14:17 +08:00
2015-11-26 14:44:28 +08:00
&-middle {
2015-11-27 23:46:40 +08:00
th,
td {
2015-11-26 14:44:28 +08:00
padding: 10px 8px;
}
}
2015-07-12 18:14:17 +08:00
&-small {
table {
border: 1px solid @border-color-split;
padding: 0 8px;
}
2015-07-12 18:14:17 +08:00
th {
padding: 10px 8px;
background: #fff;
border-bottom: 1px solid @border-color-split;
2015-07-12 18:14:17 +08:00
}
2015-07-13 18:42:08 +08:00
2015-07-12 18:14:17 +08:00
td {
padding: 6px 8px;
}
.ant-table-row:last-child td {
border-bottom: 0;
}
}
2015-07-13 16:22:02 +08:00
&-column-sorter {
2015-07-16 18:26:17 +08:00
margin-left: 4px;
2015-07-13 16:22:02 +08:00
display: inline-block;
width: 12px;
height: 14px;
vertical-align: middle;
text-align: center;
&-up,
&-down {
line-height: 4px;
2015-07-13 16:22:02 +08:00
height: 6px;
display: block;
width: 12px;
2015-07-13 17:40:17 +08:00
cursor: pointer;
&:hover .anticon {
color: #666;
}
2015-07-13 16:22:02 +08:00
&.on {
.anticon-caret-up,
.anticon-caret-down {
color: @primary-color;
}
}
}
.anticon-caret-up,
.anticon-caret-down {
.iconfont-size-under-12px(6px);
2015-07-13 16:22:02 +08:00
line-height: 6px;
height: 6px;
color: #aaa;
&:before {
-moz-transform-origin: 53% 50%; /* fix firefox position */
}
}
}
2015-08-11 20:05:52 +08:00
2015-08-20 16:55:42 +08:00
&.@{table-prefix-cls}-bordered {
table {
border: 1px solid @border-color-split;
}
2015-08-11 20:05:52 +08:00
th {
border-bottom: 1px solid @border-color-split;
2015-08-11 20:05:52 +08:00
}
tr:last-child {
th,
td {
border-bottom: 0;
}
}
2015-11-26 19:32:55 +08:00
th,
td {
border-right: 1px solid @border-color-split;
2015-08-11 20:05:52 +08:00
&:last-child {
border-right: 0;
}
}
}
2015-08-28 17:20:02 +08:00
&-empty {
position: relative;
margin-bottom: 16px;
}
&-empty &-body {
height: 150px;
}
&-placeholder {
2015-08-28 17:20:02 +08:00
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%;
2015-08-28 17:20:02 +08:00
.anticon {
margin-right: 4px;
}
}
2015-07-09 14:51:48 +08:00
}
2015-08-20 16:55:42 +08:00
.@{table-prefix-cls}-pagination {
margin: 16px 0;
float: right;
}
2015-08-23 15:51:45 +08:00
.@{table-prefix-cls}-filter-dropdown {
min-width: 96px;
2015-08-23 15:51:45 +08:00
margin-left: -8px;
2015-12-10 12:13:13 +08:00
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;
2015-12-10 12:14:48 +08:00
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;
2016-01-10 22:51:03 +08:00
text-shadow: 0 0 2px tint(@primary-color, 80%);
}
}
2015-12-10 12:13:13 +08:00
}
2015-08-23 15:51:45 +08:00
.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;
}
2015-12-10 12:13:13 +08:00
&-btns {
overflow: hidden;
padding: 7px 15px;
border-top: 1px solid @border-color-split;
}
&-link {
2015-08-23 15:51:45 +08:00
color: @link-color;
&:hover {
color: @link-hover-color;
}
&:active {
color: @link-active-color;
}
&.confirm {
float: left;
}
&.clear {
float: right;
}
}
}
2015-09-10 11:04:31 +08:00
.@{table-prefix-cls} {
2015-09-10 12:21:41 +08:00
&-row {
2015-09-10 11:04:31 +08:00
&-expand-icon {
cursor: pointer;
display: inline-block;
width: 18px;
height: 18px;
text-align: center;
2015-09-15 12:16:43 +08:00
line-height: 15px;
border: 1px solid @border-color-split;
2015-09-10 11:04:31 +08:00
user-select: none;
2015-09-24 19:14:26 +08:00
background: #fff;
2015-09-10 11:04:31 +08:00
&-cell {
width: 18px;
}
}
&-expanded:after {
2015-11-26 19:32:55 +08:00
content: '-';
2015-09-10 11:04:31 +08:00
}
&-collapsed:after {
2015-11-26 19:32:55 +08:00
content: '+';
2015-09-10 11:04:31 +08:00
}
&-spaced {
visibility: hidden;
&:after {
content: '.';
}
}
2015-09-10 11:04:31 +08:00
}
2015-09-10 12:21:41 +08:00
tr&-expanded-row {
2015-11-26 19:32:55 +08:00
&,
&:hover {
2015-09-10 12:21:41 +08:00
background: #fbfbfb;
}
}
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
}
&-column-hidden {
display: none;
}
2016-01-22 12:22:57 +08:00
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;
2016-01-22 12:22:57 +08:00
left: 8px;
&:before {
content: '\e601';
.iconfont-size-under-12px(9px);
font-weight: bold;
font-family: anticon;
}
}
&-next-columns-page {
float: right;
2016-01-22 12:22:57 +08:00
margin-left: 8px;
&:before {
content: '\e600';
.iconfont-size-under-12px(9px);
font-weight: bold;
font-family: anticon;
}
}
2015-09-10 11:04:31 +08:00
}