mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +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>
143 lines
2.6 KiB
Plaintext
143 lines
2.6 KiB
Plaintext
@import '../../style/themes/default';
|
|
@import '../../style/mixins/index';
|
|
|
|
@descriptions-prefix-cls: ~'@{ant-prefix}-descriptions';
|
|
|
|
.@{descriptions-prefix-cls} {
|
|
&-title {
|
|
margin-bottom: @descriptions-title-margin-bottom;
|
|
color: @heading-color;
|
|
font-weight: bold;
|
|
font-size: @font-size-lg;
|
|
line-height: @line-height-base;
|
|
}
|
|
|
|
&-view {
|
|
width: 100%;
|
|
overflow: hidden;
|
|
border-radius: @border-radius-base;
|
|
table {
|
|
width: 100%;
|
|
table-layout: fixed;
|
|
}
|
|
}
|
|
|
|
&-row {
|
|
> th,
|
|
> td {
|
|
padding-bottom: @padding-md;
|
|
}
|
|
&:last-child {
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
|
|
&-item-label {
|
|
color: @heading-color;
|
|
font-weight: normal;
|
|
font-size: @font-size-base;
|
|
line-height: @line-height-base;
|
|
|
|
&::after {
|
|
position: relative;
|
|
top: -0.5px;
|
|
margin: 0 8px 0 2px;
|
|
content: ' ';
|
|
}
|
|
}
|
|
|
|
&-item-colon {
|
|
&::after {
|
|
content: ':';
|
|
}
|
|
}
|
|
|
|
&-item-no-label {
|
|
&::after {
|
|
margin: 0;
|
|
content: '';
|
|
}
|
|
}
|
|
|
|
&-item-content {
|
|
display: table-cell;
|
|
color: @text-color;
|
|
font-size: @font-size-base;
|
|
line-height: @line-height-base;
|
|
}
|
|
|
|
&-item {
|
|
padding-bottom: 0;
|
|
> span {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
&-middle {
|
|
.@{descriptions-prefix-cls}-row {
|
|
> th,
|
|
> td {
|
|
padding-bottom: @padding-sm;
|
|
}
|
|
}
|
|
}
|
|
|
|
&-small {
|
|
.@{descriptions-prefix-cls}-row {
|
|
> th,
|
|
> td {
|
|
padding-bottom: @padding-xs;
|
|
}
|
|
}
|
|
}
|
|
|
|
&-bordered {
|
|
.@{descriptions-prefix-cls}-view {
|
|
border: 1px solid @border-color-split;
|
|
> table {
|
|
table-layout: auto;
|
|
}
|
|
}
|
|
|
|
.@{descriptions-prefix-cls}-item-label,
|
|
.@{descriptions-prefix-cls}-item-content {
|
|
padding: @descriptions-default-padding;
|
|
border-right: 1px solid @border-color-split;
|
|
|
|
&:last-child {
|
|
border-right: none;
|
|
}
|
|
}
|
|
|
|
.@{descriptions-prefix-cls}-item-label {
|
|
background-color: @descriptions-bg;
|
|
&::after {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.@{descriptions-prefix-cls}-row {
|
|
border-bottom: 1px solid @border-color-split;
|
|
&:last-child {
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
|
|
&.@{descriptions-prefix-cls}-middle {
|
|
.@{descriptions-prefix-cls}-item-label,
|
|
.@{descriptions-prefix-cls}-item-content {
|
|
padding: @descriptions-middle-padding;
|
|
}
|
|
}
|
|
|
|
&.@{descriptions-prefix-cls}-small {
|
|
.@{descriptions-prefix-cls}-item-label,
|
|
.@{descriptions-prefix-cls}-item-content {
|
|
padding: @descriptions-small-padding;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@import './rtl';
|