mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
fix(search): optimize the Cancel button click area (#5148)
* fix(search): optimize the Cancel button click area * test(search): fix test case failed
This commit is contained in:
parent
bcafa2b894
commit
5ef53f25e0
@ -38,7 +38,6 @@
|
||||
}
|
||||
|
||||
&__action {
|
||||
padding: var(--search-action-padding, @search-action-padding);
|
||||
font-size: var(--search-action-font-size, @search-action-font-size);
|
||||
line-height: var(--search-input-height, @search-input-height);
|
||||
color: var(--search-action-text-color, @search-action-text-color);
|
||||
@ -46,5 +45,9 @@
|
||||
&--hover {
|
||||
background-color: @active-color;
|
||||
}
|
||||
|
||||
&-button {
|
||||
padding: var(--search-action-padding, @search-action-padding);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -48,6 +48,6 @@
|
||||
hover-stay-time="70"
|
||||
>
|
||||
<slot wx:if="{{ useActionSlot }}" name="action" />
|
||||
<view wx:else bind:tap="onCancel" class="cancel-class">{{ actionText }}</view>
|
||||
<view wx:else bind:tap="onCancel" class="van-search__action-button cancel-class">{{ actionText }}</view>
|
||||
</view>
|
||||
</view>
|
||||
|
@ -222,7 +222,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
hoverStayTime="70"
|
||||
>
|
||||
<wx-view
|
||||
class="cancel-class"
|
||||
class="van-search__action-button cancel-class"
|
||||
bind:tap="onCancel"
|
||||
>
|
||||
取消
|
||||
|
Loading…
x
Reference in New Issue
Block a user