mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
119 lines
1.8 KiB
SCSS
119 lines
1.8 KiB
SCSS
@import 'mixins/mixins';
|
|
@import 'common/var';
|
|
@import 'descriptions-item';
|
|
|
|
@include b(descriptions) {
|
|
box-sizing: border-box;
|
|
font-size: $--font-size-base;
|
|
color: $--color-text-primary;
|
|
|
|
@include e(header) {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: $--descriptions-header-margin-bottom;
|
|
|
|
@include e(title) {
|
|
font-size: $--descriptions-title-font-size;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
@include e(body) {
|
|
color: $--color-text-regular;
|
|
background-color: $--color-white;
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
|
|
th,
|
|
td {
|
|
box-sizing: border-box;
|
|
text-align: left;
|
|
font-weight: normal;
|
|
line-height: 1.5;
|
|
|
|
@include when(left) {
|
|
text-align: left;
|
|
}
|
|
|
|
@include when(center) {
|
|
text-align: center;
|
|
}
|
|
|
|
@include when(right) {
|
|
text-align: right;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.is-bordered {
|
|
th,
|
|
td {
|
|
border: $--descriptions-table-border;
|
|
padding: 12px 10px;
|
|
}
|
|
}
|
|
|
|
:not(.is-bordered) {
|
|
th,
|
|
td {
|
|
padding-bottom: 12px;
|
|
}
|
|
}
|
|
|
|
@include m(medium) {
|
|
&.is-bordered {
|
|
th,
|
|
td {
|
|
padding: 10px;
|
|
}
|
|
}
|
|
|
|
&:not(.is-bordered) {
|
|
th,
|
|
td {
|
|
padding-bottom: 10px;
|
|
}
|
|
}
|
|
}
|
|
|
|
@include m(small) {
|
|
font-size: 12px;
|
|
|
|
&.is-bordered {
|
|
th,
|
|
td {
|
|
padding: 8px 10px;
|
|
}
|
|
}
|
|
|
|
&:not(.is-bordered) {
|
|
th,
|
|
td {
|
|
padding-bottom: 8px;
|
|
}
|
|
}
|
|
}
|
|
|
|
@include m(mini) {
|
|
font-size: 12px;
|
|
|
|
&.is-bordered {
|
|
th,
|
|
td {
|
|
padding: 6px 10px;
|
|
}
|
|
}
|
|
|
|
&:not(.is-bordered) {
|
|
th,
|
|
td {
|
|
padding-bottom: 6px;
|
|
}
|
|
}
|
|
}
|
|
}
|