mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-15 17:31:25 +08:00
dda45e4796
* feat: support narrow theme mode * chore: rename narrow to compact * chore: height part * chore: preview compact mode * chore: to make site corrected * chore: preview site * docs: 📖 document compact theme usage * docs: tweak theme doc * docs: 📖 Add description about double css bundle size * chore: preview * chore: for preview * chore: adjust pagination * chore: compact mode done! * chore: remove useless todo * chore: fix review bug * chore: fix review bug * chore: fix card margin * chore: fix review bug * chore: fix review bug * chore: improve i18n and transition * Update site/theme/static/common.less Co-Authored-By: 偏右 <afc163@gmail.com> * chore: fix button size and description padding * chore: update snapshots * chore: add compact css bundlesize limit * chore: compact dist support Co-authored-by: afc163 <afc163@gmail.com>
37 lines
1.2 KiB
Plaintext
37 lines
1.2 KiB
Plaintext
@import './index';
|
|
|
|
.table-size(@size, @padding-vertical, @padding-horizontal) {
|
|
.@{table-prefix-cls}.@{table-prefix-cls}-@{size} {
|
|
.@{table-prefix-cls}-title,
|
|
.@{table-prefix-cls}-footer,
|
|
.@{table-prefix-cls}-thead > tr > th,
|
|
.@{table-prefix-cls}-tbody > tr > td {
|
|
padding: @padding-vertical @padding-horizontal;
|
|
}
|
|
|
|
.@{table-prefix-cls}-filter-column {
|
|
margin: -@padding-vertical -@padding-horizontal;
|
|
}
|
|
|
|
.@{table-prefix-cls}-expanded-row-fixed {
|
|
margin: -@padding-vertical -@padding-horizontal;
|
|
}
|
|
}
|
|
}
|
|
|
|
// ================================================================
|
|
// = Middle =
|
|
// ================================================================
|
|
.table-size(~'middle', @table-padding-vertical-md, @table-padding-horizontal-md);
|
|
|
|
// ================================================================
|
|
// = Small =
|
|
// ================================================================
|
|
.table-size(~'small', @table-padding-vertical-sm, @table-padding-horizontal-sm);
|
|
|
|
.@{table-prefix-cls}.@{table-prefix-cls}-small {
|
|
.@{table-prefix-cls}-thead > tr > th {
|
|
background-color: @table-header-bg-sm;
|
|
}
|
|
}
|