ant-design/style/components/table.less

61 lines
990 B
Plaintext
Raw Normal View History

2015-07-09 14:51:48 +08:00
@import "../mixins/index";
@tablePrefixClass: ~"@{css-prefix}table";
@table-border-color: #e9e9e9;
@table-head-background-color: #f3f3f3;
.@{tablePrefixClass} {
font-size: @font-size-base;
color: @text-color;
border-radius: 6px;
overflow: hidden;
table {
width: 100%;
max-width: 100%;
border-collapse: separate;
}
th {
background: @table-head-background-color;
text-align: left;
font-weight: bold;
}
td {
border-bottom: 1px solid @table-border-color;
}
tr {
transition: all .3s ease;
&:hover {
background: tint(@primary-color, 90%);
}
}
th, td {
padding: 16px 8px;
}
2015-07-12 17:10:06 +08:00
&-loading {
opacity: 0.7;
min-height: 150px;
}
2015-07-12 18:14:17 +08:00
&-small {
border: 1px solid #e9e9e9;
padding: 0 8px;
th {
padding: 10px 8px;
background: #fff;
border-bottom: 1px solid #e9e9e9;
}
td {
padding: 6px 8px;
}
.ant-table-row:last-child td {
border-bottom: 0;
}
}
2015-07-09 14:51:48 +08:00
}