diff --git a/app/assets/stylesheets/darkswarm/active_table_search.css.scss b/app/assets/stylesheets/darkswarm/active_table_search.css.scss index 1c26fcb74f..486e79178a 100644 --- a/app/assets/stylesheets/darkswarm/active_table_search.css.scss +++ b/app/assets/stylesheets/darkswarm/active_table_search.css.scss @@ -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); } } diff --git a/app/views/groups/index.html.haml b/app/views/groups/index.html.haml index 4b34420390..8e9fc457a1 100644 --- a/app/views/groups/index.html.haml +++ b/app/views/groups/index.html.haml @@ -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} diff --git a/app/views/shared/components/_enterprise_search.html.haml b/app/views/shared/components/_enterprise_search.html.haml index 293ccd6620..cadfce92f6 100644 --- a/app/views/shared/components/_enterprise_search.html.haml +++ b/app/views/shared/components/_enterprise_search.html.haml @@ -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}