mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
129 lines
2.3 KiB
Plaintext
129 lines
2.3 KiB
Plaintext
@import '../common/style/var.less';
|
||
|
||
.van-button {
|
||
position: relative;
|
||
display: inline-block;
|
||
height: 44px;
|
||
padding: 0;
|
||
font-size: 16px;
|
||
line-height: 42px;
|
||
text-align: center;
|
||
-webkit-text-size-adjust: 100%;
|
||
vertical-align: middle;
|
||
border-radius: 2px;
|
||
box-sizing: border-box;
|
||
-webkit-appearance: none;
|
||
|
||
&::after {
|
||
position: absolute;
|
||
top: 50%;
|
||
left: 50%;
|
||
width: 100%;
|
||
height: 100%;
|
||
background-color: @black;
|
||
border: inherit;
|
||
border-color: @black;
|
||
border-radius: inherit; /* inherit parent's border radius */
|
||
content: ' ';
|
||
opacity: 0;
|
||
transform: translate(-50%, -50%);
|
||
}
|
||
|
||
&--active::after {
|
||
opacity: 0.15;
|
||
}
|
||
|
||
&--unclickable::after {
|
||
display: none;
|
||
}
|
||
|
||
&--default {
|
||
color: @button-default-color;
|
||
background-color: @button-default-background-color;
|
||
border: 1px solid @button-default-border-color;
|
||
}
|
||
|
||
&--primary {
|
||
color: @button-primary-color;
|
||
background-color: @button-primary-background-color;
|
||
border: 1px solid @button-primary-border-color;
|
||
}
|
||
|
||
&--danger {
|
||
color: @button-danger-color;
|
||
background-color: @button-danger-background-color;
|
||
border: 1px solid @button-danger-border-color;
|
||
}
|
||
|
||
&--warning {
|
||
color: @button-warning-color;
|
||
background-color: @button-warning-background-color;
|
||
border: 1px solid @button-warning-border-color;
|
||
}
|
||
|
||
&--plain {
|
||
background-color: @white;
|
||
|
||
&.van-button--primary {
|
||
color: @button-primary-background-color;
|
||
}
|
||
|
||
&.van-button--danger {
|
||
color: @button-danger-background-color;
|
||
}
|
||
|
||
&.van-button--warning {
|
||
color: @button-warning-background-color;
|
||
}
|
||
}
|
||
|
||
&--large {
|
||
width: 100%;
|
||
height: 50px;
|
||
line-height: 48px;
|
||
}
|
||
|
||
&--normal {
|
||
padding: 0 15px;
|
||
font-size: 14px;
|
||
}
|
||
|
||
&--small {
|
||
height: 30px;
|
||
min-width: 60px;
|
||
padding: 0 8px;
|
||
font-size: 12px;
|
||
line-height: 28px;
|
||
}
|
||
|
||
/* mini图标默认宽度50px,文字不能超过4个 */
|
||
&--mini {
|
||
display: inline-block;
|
||
width: 50px;
|
||
height: 22px;
|
||
font-size: 10px;
|
||
line-height: 20px;
|
||
|
||
& + .van-button--mini {
|
||
margin-left: 5px;
|
||
}
|
||
}
|
||
|
||
&--block {
|
||
display: block;
|
||
width: 100%;
|
||
}
|
||
|
||
&--round {
|
||
border-radius: 10em;
|
||
}
|
||
|
||
&--square {
|
||
border-radius: 0;
|
||
}
|
||
|
||
&--disabled {
|
||
opacity: 0.5;
|
||
}
|
||
}
|