rex 66679ef6a1
[new feature] Search: update style & add new prop label shape & add new slot label
+ update style
+ add new prop label & shape
+ add new slot label
2019-03-12 17:34:27 +08:00

60 lines
934 B
Plaintext

@import '../common/style/var.less';
.van-search {
display: flex;
padding: 10px 16px;
align-items: center;
box-sizing: border-box;
&__content {
display: flex;
padding-left: 10px;
background-color: @search-background-color;
border-radius: 2px;
flex: 1;
&--round {
border-radius: 17px;
}
}
&__label {
padding: 0 5px;
font-size: 14px;
line-height: 34px;
color: @text-color;
}
&__field {
flex: 1;
&__left-icon {
color: @gray-dark;
}
}
&--withaction {
padding-right: 0;
}
input {
&::-webkit-search-decoration,
&::-webkit-search-cancel-button,
&::-webkit-search-results-button,
&::-webkit-search-results-decoration {
display: none;
}
}
&__action {
padding: 0 10px;
font-size: 14px;
line-height: 34px;
color: @text-color;
&--hover {
background-color: @active-color;
}
}
}