mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +08:00
[improvement] optimize active color (#1437)
This commit is contained in:
parent
ca3b9e6510
commit
5984383dc8
@ -1 +1,4 @@
|
||||
/* pages/stepper/index.wxss */
|
||||
page {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
@ -32,11 +32,5 @@ Page({
|
||||
title: `点击标签 ${event.detail.index + 1}`,
|
||||
icon: 'none'
|
||||
});
|
||||
},
|
||||
|
||||
onPageScroll(event) {
|
||||
this.setData({
|
||||
scrollTop: event.scrollTop
|
||||
});
|
||||
}
|
||||
});
|
||||
|
@ -15,7 +15,7 @@
|
||||
// Default colors
|
||||
@text-color: #333;
|
||||
@border-color: #eee;
|
||||
@active-color: #e8e8e8;
|
||||
@active-color: #f2f3f5;
|
||||
@background-color: #f8f8f8;
|
||||
@background-color-light: #fafafa;
|
||||
|
||||
@ -113,7 +113,8 @@
|
||||
@search-background-color: #f7f8fA;
|
||||
|
||||
// Stepper
|
||||
@stepper-background-color: #f2f3f5;
|
||||
@stepper-active-color: #e8e8e8;
|
||||
@stepper-background-color: @active-color;
|
||||
@stepper-button-disabled-color: #f7f8fa;
|
||||
@stepper-input-disabled-color: @active-color;
|
||||
@stepper-border-radius: 4px;
|
||||
@stepper-input-disabled-color: #f2f3f5;
|
||||
|
@ -39,7 +39,7 @@
|
||||
}
|
||||
|
||||
&--hover {
|
||||
background-color: @active-color;
|
||||
background-color: @stepper-active-color;
|
||||
}
|
||||
|
||||
&--disabled {
|
||||
|
Loading…
x
Reference in New Issue
Block a user