mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
34 lines
717 B
Plaintext
34 lines
717 B
Plaintext
@import '../../style/themes/index';
|
|
@import '../../style/mixins/index';
|
|
|
|
@descriptions-prefix-cls: ~'@{ant-prefix}-descriptions';
|
|
|
|
.@{descriptions-prefix-cls} {
|
|
&-rtl {
|
|
direction: rtl;
|
|
}
|
|
|
|
&-item-label {
|
|
&::after {
|
|
.@{descriptions-prefix-cls}-rtl & {
|
|
margin: 0 @descriptions-item-label-colon-margin-left 0
|
|
@descriptions-item-label-colon-margin-right;
|
|
}
|
|
}
|
|
}
|
|
|
|
&-bordered {
|
|
.@{descriptions-prefix-cls}-item-label,
|
|
.@{descriptions-prefix-cls}-item-content {
|
|
.@{descriptions-prefix-cls}-rtl& {
|
|
border-right: none;
|
|
border-left: 1px solid @border-color-split;
|
|
|
|
&:last-child {
|
|
border-left: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|