You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
717 B
33 lines
717 B
@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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|