1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- @import '~antd/lib/style/themes/default.less';
- .descriptionList {
- // offset the padding-bottom of last row
- :global {
- .ant-row {
- margin-bottom: -16px;
- overflow: hidden;
- }
- }
- .title {
- font-size: 14px;
- color: @heading-color;
- font-weight: 500;
- margin-bottom: 16px;
- }
- .term {
- // Line-height is 22px IE dom height will calculate error
- line-height: 20px;
- padding-bottom: 16px;
- margin-right: 8px;
- color: @heading-color;
- white-space: nowrap;
- display: table-cell;
- &:after {
- content: ':';
- margin: 0 8px 0 2px;
- position: relative;
- top: -0.5px;
- }
- }
- .detail {
- line-height: 20px;
- width: 100%;
- padding-bottom: 16px;
- color: @text-color;
- display: table-cell;
- }
- &.small {
- // offset the padding-bottom of last row
- :global {
- .ant-row {
- margin-bottom: -8px;
- }
- }
- .title {
- margin-bottom: 12px;
- color: @text-color;
- }
- .term,
- .detail {
- padding-bottom: 8px;
- }
- }
- &.large {
- .title {
- font-size: 16px;
- }
- }
- &.vertical {
- .term {
- padding-bottom: 8px;
- display: block;
- }
- .detail {
- display: block;
- }
- }
- }
|