123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- :global {
- .van-search {
- padding-left: 14px;
- padding-right: 14px;
- input {
- -webkit-user-select: text !important;
- user-select: text !important;
- }
- .van-search__field {
- padding: 0.13333rem var(--van-padding-xs) 0.13333rem 0 !important;
- background: transparent !important;
- }
- }
- }
- .col-search {
- --van-cell-background-color: transparent;
- // padding-left: 14px;
- // padding-right: 14px;
- :global {
- .van-field__left-icon {
- display: flex;
- align-items: center;
- }
- .van-field__right-icon {
- font-size: 0;
- }
- .van-search__action {
- display: flex;
- }
- .van-field__control {
- font-size: 14px;
- }
- }
- &.default {
- :global {
- .van-search__content {
- background: #f3f3f3;
- }
- }
- }
- &.white {
- :global {
- .van-search__content {
- background: #fff;
- }
- }
- }
- &.transparent {
- :global {
- .van-search__content {
- background: rgba(255, 255, 255, 0.16);
- input::placeholder {
- color: #fff;
- }
- input {
- color: #fff;
- }
- .van-field__clear {
- color: #fff;
- }
- }
- }
- }
- .searchBtn {
- width: 56px;
- height: 28px;
- padding: 0;
- font-size: 14px;
- --van-button-mini-height: 28px;
- --van-font-size-xs: 14px;
- }
- }
|