[improvement] Slider: add less vars (#3125)

This commit is contained in:
neverland 2019-04-10 16:45:30 +08:00 committed by GitHub
parent e5fc82e96b
commit 26543e89eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 8 deletions

View File

@ -3,20 +3,20 @@
.van-slider {
position: relative;
border-radius: 999px;
background-color: @gray-light;
background-color: @slider-inactive-background-color;
&__bar {
position: relative;
border-radius: inherit;
background-color: @blue;
background-color: @slider-active-background-color;
}
&__button {
width: 20px;
height: 20px;
border-radius: 50%;
background-color: @white;
box-shadow: 0 1px 2px rgba(0, 0, 0, .5);
width: @slider-button-width;
height: @slider-button-height;
box-shadow: @slider-button-box-shadow;
border-radius: @slider-button-border-radius;
background-color: @slider-button-background-color;
&-wrapper {
position: absolute;
@ -37,7 +37,7 @@
}
&--disabled {
opacity: .3;
opacity: @slider-disabled-opacity;
}
&--vertical {

View File

@ -186,6 +186,16 @@
@radio-disabled-label-color: @gray;
@radio-disabled-background-color: @border-color;
// Slider
@slider-active-background-color: @blue;
@slider-inactive-background-color: @gray-light;
@slider-disabled-opacity: .3;
@slider-button-width: 20px;
@slider-button-height: 20px;
@slider-button-border-radius: 50%;
@slider-button-background-color: @white;
@slider-button-box-shadow: 0 1px 2px rgba(0, 0, 0, .5);
// Swipe
@swipe-indicator: 6px;