You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
191 lines
3.7 KiB
191 lines
3.7 KiB
@import '../style/var';
|
|
|
|
.van-button {
|
|
position: relative;
|
|
display: inline-block;
|
|
box-sizing: border-box;
|
|
height: @button-default-height;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-size: @button-default-font-size;
|
|
line-height: @button-default-line-height;
|
|
text-align: center;
|
|
border-radius: @button-border-radius;
|
|
cursor: pointer;
|
|
transition: opacity @animation-duration-fast;
|
|
-webkit-appearance: none;
|
|
|
|
&::before {
|
|
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 */
|
|
transform: translate(-50%, -50%);
|
|
opacity: 0;
|
|
content: ' ';
|
|
}
|
|
|
|
&:active::before {
|
|
opacity: 0.1;
|
|
}
|
|
|
|
&--loading,
|
|
&--disabled {
|
|
&::before {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
&--default {
|
|
color: @button-default-color;
|
|
background-color: @button-default-background-color;
|
|
border: @button-border-width solid @button-default-border-color;
|
|
}
|
|
|
|
&--primary {
|
|
color: @button-primary-color;
|
|
background-color: @button-primary-background-color;
|
|
border: @button-border-width solid @button-primary-border-color;
|
|
}
|
|
|
|
&--info {
|
|
color: @button-info-color;
|
|
background-color: @button-info-background-color;
|
|
border: @button-border-width solid @button-info-border-color;
|
|
}
|
|
|
|
&--danger {
|
|
color: @button-danger-color;
|
|
background-color: @button-danger-background-color;
|
|
border: @button-border-width solid @button-danger-border-color;
|
|
}
|
|
|
|
&--warning {
|
|
color: @button-warning-color;
|
|
background-color: @button-warning-background-color;
|
|
border: @button-border-width solid @button-warning-border-color;
|
|
}
|
|
|
|
&--plain {
|
|
background-color: @button-plain-background-color;
|
|
|
|
&.van-button--primary {
|
|
color: @button-primary-background-color;
|
|
}
|
|
|
|
&.van-button--info {
|
|
color: @button-info-background-color;
|
|
}
|
|
|
|
&.van-button--danger {
|
|
color: @button-danger-background-color;
|
|
}
|
|
|
|
&.van-button--warning {
|
|
color: @button-warning-background-color;
|
|
}
|
|
}
|
|
|
|
&--large {
|
|
width: 100%;
|
|
height: @button-large-height;
|
|
}
|
|
|
|
&--normal {
|
|
padding: 0 15px;
|
|
font-size: @button-normal-font-size;
|
|
}
|
|
|
|
&--small {
|
|
height: @button-small-height;
|
|
padding: 0 @padding-xs;
|
|
font-size: @button-small-font-size;
|
|
}
|
|
|
|
&__loading {
|
|
color: inherit;
|
|
font-size: inherit;
|
|
}
|
|
|
|
&--mini {
|
|
height: @button-mini-height;
|
|
padding: 0 @padding-base;
|
|
font-size: @button-mini-font-size;
|
|
|
|
& + .van-button--mini {
|
|
margin-left: @padding-base;
|
|
}
|
|
}
|
|
|
|
&--block {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
&--disabled {
|
|
cursor: not-allowed;
|
|
opacity: @button-disabled-opacity;
|
|
}
|
|
|
|
&--loading {
|
|
cursor: default;
|
|
}
|
|
|
|
&--round {
|
|
border-radius: @button-round-border-radius;
|
|
}
|
|
|
|
&--square {
|
|
border-radius: 0;
|
|
}
|
|
|
|
// align-items are ignored when flex container is a button in legacy safari
|
|
// see: https://bugs.webkit.org/show_bug.cgi?id=169700
|
|
&__content {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
|
|
// fix icon vertical align
|
|
// see: https://github.com/youzan/vant/issues/7617
|
|
&::before {
|
|
content: ' ';
|
|
}
|
|
}
|
|
|
|
&__icon {
|
|
font-size: 1.2em;
|
|
line-height: inherit;
|
|
}
|
|
|
|
&__icon + &__text,
|
|
&__loading + &__text,
|
|
&__text + &__icon,
|
|
&__text + &__loading {
|
|
margin-left: @padding-base;
|
|
}
|
|
|
|
&--hairline {
|
|
border-width: 0;
|
|
|
|
&::after {
|
|
border-color: inherit;
|
|
border-radius: @button-border-radius * 2;
|
|
}
|
|
|
|
&.van-button--round::after {
|
|
border-radius: @button-round-border-radius;
|
|
}
|
|
|
|
&.van-button--square::after {
|
|
border-radius: 0;
|
|
}
|
|
}
|
|
}
|