127 lines
2.4 KiB
CSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@import '../common/style/var.css';
.van-button {
position: relative;
padding: 0;
display: inline-block;
height: 44px;
line-height: 42px;
border-radius: 3px;
box-sizing: border-box;
font-size: 16px;
text-align: center;
vertical-align: middle;
-webkit-appearance: none;
-webkit-text-size-adjust: 100%;
&::after {
content: " ";
position: absolute;
top: 50%;
left: 50%;
opacity: 0;
width: 100%;
height: 100%;
border: inherit;
border-color: $black;
background-color: $black;
border-radius: inherit; /* inherit parent's border radius */
transform: translate(-50%, -50%);
}
&:active::after {
opacity: .3;
}
&--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;
padding: 0 8px;
min-width: 60px;
font-size: 12px;
line-height: 28px;
}
/* mini图标默认宽度50px文字不能超过4个 */
&--mini {
display: inline-block;
width: 50px;
height: 22px;
line-height: 20px;
font-size: 10px;
& + .van-button--mini {
margin-left: 5px;
}
}
&--block {
width: 100%;
display: block;
}
&--square {
border-radius: 0;
}
&--disabled {
color: $button-disabled-color;
background-color: $button-disabled-background-color;
border: 1px solid $button-disabled-border-color;
}
}