mirror of
https://github.com/youzan/vant.git
synced 2025-10-22 11:54:02 +00:00
[bugfix] add click feedback of buttons in components (#248)
* [bugfix] CouponList always show empty info * [bugfix] add click feedback of buttons in components
This commit is contained in:
@@ -59,5 +59,9 @@
|
||||
color: $blue;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
&:active {
|
||||
background-color: $active-color;
|
||||
}
|
||||
}
|
||||
}
|
@@ -8,7 +8,15 @@
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
&__cancel,
|
||||
&__confirm {
|
||||
padding: 0 15px;
|
||||
|
||||
&:active {
|
||||
background-color: $active-color;
|
||||
}
|
||||
}
|
||||
|
||||
&__cancel {
|
||||
|
@@ -51,6 +51,10 @@
|
||||
&__action-text {
|
||||
padding: 0 10px;
|
||||
color: $green;
|
||||
|
||||
&:active {
|
||||
background-color: $active-color;
|
||||
}
|
||||
}
|
||||
|
||||
.van-icon-search {
|
||||
|
@@ -183,7 +183,7 @@
|
||||
height: 50px;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
background: $orange;
|
||||
background: #f85;
|
||||
color: $white;
|
||||
font-size: 16px;
|
||||
line-height: 50px;
|
||||
|
@@ -44,6 +44,17 @@
|
||||
}
|
||||
}
|
||||
|
||||
&__minus,
|
||||
&__plus {
|
||||
&:active {
|
||||
background-color: $active-color;
|
||||
}
|
||||
|
||||
&--disabled:active {
|
||||
background-color: $background-color;
|
||||
}
|
||||
}
|
||||
|
||||
&__minus {
|
||||
border-radius: 2px 0 0 2px;
|
||||
|
||||
|
Reference in New Issue
Block a user