mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
83 lines
1.2 KiB
CSS
83 lines
1.2 KiB
CSS
@import './common/var.css';
|
|
|
|
.van-cell {
|
|
width: 100%;
|
|
display: flex;
|
|
padding: 10px 15px;
|
|
box-sizing: border-box;
|
|
line-height: 24px;
|
|
position: relative;
|
|
background-color: $white;
|
|
color: $text-color;
|
|
font-size: 14px;
|
|
overflow: hidden;
|
|
|
|
&:not(:last-child)::after {
|
|
left: 15px;
|
|
right: 0;
|
|
width: auto;
|
|
transform: scale(1, .5);
|
|
border-bottom-width: 1px;
|
|
}
|
|
|
|
&-group {
|
|
background-color: $white;
|
|
}
|
|
|
|
&__label {
|
|
font-size: 12px;
|
|
line-height: 1.2;
|
|
color: $gray-darker;
|
|
}
|
|
|
|
&__title,
|
|
&__value {
|
|
flex: 1;
|
|
}
|
|
|
|
&__value {
|
|
overflow: hidden;
|
|
text-align: right;
|
|
vertical-align: middle;
|
|
|
|
&--alone {
|
|
text-align: left;
|
|
}
|
|
}
|
|
|
|
&__left-icon {
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
&__right-icon {
|
|
color: $gray-dark;
|
|
font-size: 12px;
|
|
line-height: 24px;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
&--clickable {
|
|
&:active {
|
|
background-color: $active-color;
|
|
}
|
|
}
|
|
|
|
&--required {
|
|
overflow: visible;
|
|
|
|
&::before {
|
|
content: '*';
|
|
position: absolute;
|
|
left: 7px;
|
|
font-size: 14px;
|
|
color: $red;
|
|
}
|
|
}
|
|
|
|
&--center {
|
|
align-items: center;
|
|
}
|
|
}
|