diff options
| author | jpl | 2017-03-17 10:56:13 +0100 | 
|---|---|---|
| committer | jpl | 2017-03-17 10:56:13 +0100 | 
| commit | 085c1271814a01a87c8f3367e45c200766dc8738 (patch) | |
| tree | f37f39ff7fc9d02134ac7db18714cb211a64370e /app/views | |
| parent | e9fcdfcfad70b8d54b55a2e33c3bb24c9fe7bf19 (diff) | |
| download | chouette-core-085c1271814a01a87c8f3367e45c200766dc8738.tar.bz2 | |
Fix search_bar styles regression
Diffstat (limited to 'app/views')
| -rw-r--r-- | app/views/companies/index.html.slim | 2 | ||||
| -rw-r--r-- | app/views/networks/index.html.slim | 2 | ||||
| -rw-r--r-- | app/views/referential_companies/index.html.slim | 2 | ||||
| -rw-r--r-- | app/views/referential_lines/show.html.slim | 2 | ||||
| -rw-r--r-- | app/views/referential_networks/index.html.slim | 2 | 
5 files changed, 5 insertions, 5 deletions
| diff --git a/app/views/companies/index.html.slim b/app/views/companies/index.html.slim index e3a2ce6c5..95597903b 100644 --- a/app/views/companies/index.html.slim +++ b/app/views/companies/index.html.slim @@ -15,7 +15,7 @@        .row          .col-lg-12 -          = search_form_for @q, url: line_referential_companies_path(@line_referential), html: {method: :get} do |f| +          = search_form_for @q, url: line_referential_companies_path(@line_referential), html: {method: :get}, class: 'form form-filter' do |f|              .input-group.search_bar                = f.search_field :name_or_objectid_cont, placeholder: t('.name_or_objectid'), class: 'form-control' diff --git a/app/views/networks/index.html.slim b/app/views/networks/index.html.slim index a10eea707..2aa636ded 100644 --- a/app/views/networks/index.html.slim +++ b/app/views/networks/index.html.slim @@ -15,7 +15,7 @@        .row          .col-lg-12 -          = search_form_for @q, url: line_referential_networks_path(@line_referential), html: {method: :get} do |f| +          = search_form_for @q, url: line_referential_networks_path(@line_referential), html: {method: :get}, class: 'form form-filter' do |f|              .input-group.search_bar                = f.search_field :name_or_objectid_cont, placeholder: t('.name_or_objectid'), class: 'form-control' diff --git a/app/views/referential_companies/index.html.slim b/app/views/referential_companies/index.html.slim index 8fe8f9415..9375c6492 100644 --- a/app/views/referential_companies/index.html.slim +++ b/app/views/referential_companies/index.html.slim @@ -15,7 +15,7 @@        .row          .col-lg-12 -          = search_form_for @q, url: referential_companies_path(@referential), html: {method: :get} do |f| +          = search_form_for @q, url: referential_companies_path(@referential), html: {method: :get}, class: 'form form-filter' do |f|              .input-group.search_bar                = f.text_field :name_or_objectid_cont, placeholder: t('.name_or_objectid'), class: 'form-control' diff --git a/app/views/referential_lines/show.html.slim b/app/views/referential_lines/show.html.slim index d5c11d456..2566550ba 100644 --- a/app/views/referential_lines/show.html.slim +++ b/app/views/referential_lines/show.html.slim @@ -52,7 +52,7 @@            .row              .col-lg-12 -              = search_form_for @q, url: referential_line_path(@referential, @line) do |f| +              = search_form_for @q, url: referential_line_path(@referential, @line), class: 'form form-filter' do |f|                  .input-group.search_bar                    = f.search_field :name_cont, class: 'form-control', placeholder: "Indiquez un nom d'itinéraire..." diff --git a/app/views/referential_networks/index.html.slim b/app/views/referential_networks/index.html.slim index c0a4c526c..30a86d9b2 100644 --- a/app/views/referential_networks/index.html.slim +++ b/app/views/referential_networks/index.html.slim @@ -15,7 +15,7 @@        .row          .col-lg-12 -          = search_form_for @q, url: referential_networks_path(@referential), html: {method: :get} do |f| +          = search_form_for @q, url: referential_networks_path(@referential), html: {method: :get}, class: 'form form-filter' do |f|              .input-group.search_bar                = f.text_field :name_or_objectid_cont, placeholder: t('.name_or_objectid'), class: 'form-control' | 
