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.
65 lines
1.2 KiB
65 lines
1.2 KiB
@import '../style/var';
|
|
|
|
.van-search {
|
|
display: flex;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
padding: @search-padding;
|
|
background-color: @search-background-color;
|
|
|
|
&__content {
|
|
display: flex;
|
|
flex: 1;
|
|
padding-left: @padding-sm;
|
|
background-color: @search-content-background-color;
|
|
border-radius: @border-radius-sm;
|
|
|
|
&--round {
|
|
border-radius: @border-radius-max;
|
|
}
|
|
}
|
|
|
|
&__label {
|
|
padding: @search-label-padding;
|
|
color: @search-label-color;
|
|
font-size: @search-label-font-size;
|
|
line-height: @search-input-height;
|
|
}
|
|
|
|
.van-cell {
|
|
flex: 1;
|
|
padding: 5px @padding-xs 5px 0;
|
|
background-color: transparent;
|
|
|
|
&__left-icon {
|
|
color: @search-left-icon-color;
|
|
}
|
|
}
|
|
|
|
&--show-action {
|
|
padding-right: 0;
|
|
}
|
|
|
|
input {
|
|
&::-webkit-search-decoration,
|
|
&::-webkit-search-cancel-button,
|
|
&::-webkit-search-results-button,
|
|
&::-webkit-search-results-decoration {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
&__action {
|
|
padding: @search-action-padding;
|
|
color: @search-action-text-color;
|
|
font-size: @search-action-font-size;
|
|
line-height: @search-input-height;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
|
|
&:active {
|
|
background-color: @active-color;
|
|
}
|
|
}
|
|
}
|