2020-03-05 12:17:50 +08:00
|
|
|
@import '../../style/themes/default';
|
|
|
|
@import '../../style/mixins/index';
|
|
|
|
|
|
|
|
@descriptions-prefix-cls: ~'@{ant-prefix}-descriptions';
|
|
|
|
|
|
|
|
.@{descriptions-prefix-cls} {
|
2020-08-02 15:13:53 +08:00
|
|
|
&-header {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2020-03-30 09:53:10 +08:00
|
|
|
margin-bottom: @descriptions-title-margin-bottom;
|
2020-08-02 15:13:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-title {
|
|
|
|
flex: auto;
|
|
|
|
overflow: hidden;
|
2020-03-05 12:17:50 +08:00
|
|
|
color: @heading-color;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: @font-size-lg;
|
|
|
|
line-height: @line-height-base;
|
2020-08-02 15:13:53 +08:00
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-extra {
|
|
|
|
margin-left: auto;
|
|
|
|
color: @descriptions-extra-color;
|
|
|
|
font-size: @font-size-base;
|
2020-03-05 12:17:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-view {
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
border-radius: @border-radius-base;
|
|
|
|
table {
|
|
|
|
width: 100%;
|
|
|
|
table-layout: fixed;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-row {
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-04-30 10:55:54 +08:00
|
|
|
padding-bottom: @descriptions-item-padding-bottom;
|
2020-03-05 12:17:50 +08:00
|
|
|
}
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-item-label {
|
|
|
|
color: @heading-color;
|
|
|
|
font-weight: normal;
|
|
|
|
font-size: @font-size-base;
|
|
|
|
line-height: @line-height-base;
|
2020-06-21 23:15:22 +08:00
|
|
|
text-align: start;
|
2020-03-05 12:17:50 +08:00
|
|
|
|
|
|
|
&::after {
|
2020-05-31 16:00:40 +08:00
|
|
|
& when (@descriptions-item-trailing-colon=true) {
|
|
|
|
content: ':';
|
|
|
|
}
|
|
|
|
& when not (@descriptions-item-trailing-colon=true) {
|
|
|
|
content: ' ';
|
|
|
|
}
|
|
|
|
|
2020-03-05 12:17:50 +08:00
|
|
|
position: relative;
|
|
|
|
top: -0.5px;
|
2020-05-31 16:00:40 +08:00
|
|
|
margin: 0 @descriptions-item-label-colon-margin-right 0
|
|
|
|
@descriptions-item-label-colon-margin-left;
|
2020-03-05 12:17:50 +08:00
|
|
|
}
|
|
|
|
|
2020-05-31 16:00:40 +08:00
|
|
|
&.@{descriptions-prefix-cls}-item-no-colon::after {
|
|
|
|
content: ' ';
|
2020-03-05 12:17:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-item-no-label {
|
|
|
|
&::after {
|
|
|
|
margin: 0;
|
|
|
|
content: '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-item-content {
|
|
|
|
display: table-cell;
|
2020-08-23 16:06:08 +08:00
|
|
|
flex: 1;
|
2020-03-05 12:17:50 +08:00
|
|
|
color: @text-color;
|
|
|
|
font-size: @font-size-base;
|
|
|
|
line-height: @line-height-base;
|
2020-10-25 23:07:27 +08:00
|
|
|
word-break: break-word;
|
2020-09-20 14:53:20 +08:00
|
|
|
overflow-wrap: break-word;
|
2020-03-05 12:17:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-item {
|
|
|
|
padding-bottom: 0;
|
2020-08-23 16:06:08 +08:00
|
|
|
vertical-align: top;
|
|
|
|
|
|
|
|
&-container {
|
|
|
|
display: flex;
|
2020-11-15 17:03:30 +08:00
|
|
|
|
|
|
|
.@{descriptions-prefix-cls}-item-label,
|
|
|
|
.@{descriptions-prefix-cls}-item-content {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: baseline;
|
|
|
|
}
|
2020-08-23 16:06:08 +08:00
|
|
|
}
|
2020-03-05 12:17:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-middle {
|
|
|
|
.@{descriptions-prefix-cls}-row {
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-03-30 09:53:10 +08:00
|
|
|
padding-bottom: @padding-sm;
|
2020-03-05 12:17:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-small {
|
|
|
|
.@{descriptions-prefix-cls}-row {
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-03-30 09:53:10 +08:00
|
|
|
padding-bottom: @padding-xs;
|
2020-03-05 12:17:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-03-23 13:51:37 +08:00
|
|
|
|
|
|
|
@import './rtl';
|