Merge pull request #5466 from Matt-Yorkley/shop-search-fix

Fix search bar in /shops and /groups
This commit is contained in:
Pau Pérez Fabregat
2020-05-22 18:40:27 +02:00
committed by GitHub
3 changed files with 3 additions and 5 deletions

View File

@@ -158,7 +158,7 @@ products .filter-box {
@include placeholder(rgba(0, 0, 0, 0.4), #777);
input[type="text"] {
input[type="text"], input[type="search"] {
@include big-input(rgba(0, 0, 0, 0.3), #777, $clr-brick);
}
}

View File

@@ -15,10 +15,9 @@
.small-12.columns
%p
%input{type: "search",
"ng-model" => "search",
"ng-model" => "query",
placeholder: t(:groups_search),
inputmode: "search",
name: "search",
"ng-debounce" => "150",
"ofn-disable-enter" => true}

View File

@@ -1,9 +1,8 @@
#active-table-search.row
.small-12.columns
%input{type: "search",
"ng-model" => "search",
"ng-model" => "query",
placeholder: t('search_by_name'),
inputmode: "search",
name: "name",
"ng-debounce" => "500",
"ofn-disable-enter" => true}