mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
43 lines
689 B
Plaintext
43 lines
689 B
Plaintext
@import '../common/style/var.less';
|
|
|
|
.van-badge {
|
|
display: block;
|
|
padding: 20px 12px 20px 9px;
|
|
overflow: hidden;
|
|
font-size: 14px;
|
|
line-height: 1.4;
|
|
color: @gray-darker;
|
|
word-break: break-all;
|
|
background-color: @background-color;
|
|
border-left: 3px solid transparent;
|
|
box-sizing: border-box;
|
|
user-select: none;
|
|
|
|
&--hover {
|
|
background-color: @active-color;
|
|
}
|
|
|
|
&::after {
|
|
border-bottom-width: 1px;
|
|
}
|
|
|
|
&--active {
|
|
font-weight: bold;
|
|
color: @text-color;
|
|
border-color: @red;
|
|
|
|
&::after {
|
|
border-right-width: 1px;
|
|
}
|
|
}
|
|
|
|
&--active,
|
|
&--active&--hover {
|
|
background-color: @white;
|
|
}
|
|
|
|
&__text {
|
|
position: relative;
|
|
}
|
|
}
|