Browse Source

* -Le champs de recherche sur la page de résultats: le 'input est tout petit dans le grand div-

Bastien Sevajol 12 years ago
parent
commit
b8843815c0

+ 5 - 3
src/Muzich/CoreBundle/Resources/views/GlobalSearch/form.html.twig View File

@@ -1,9 +1,11 @@
1
+
2
+{% form_theme form 'MuzichCoreBundle:Form:errors.html.twig' %}
3
+{{ form_errors(form) }}
4
+{{ form_errors(form.string) }}
5
+
1 6
 <div class="seachboxcontainer">
2 7
   <form action="{{ path('global_search') }}" method="post" {{ form_enctype(form) }}>
3 8
     
4
-    {% form_theme form 'MuzichCoreBundle:Form:errors.html.twig' %}
5
-    {{ form_errors(form) }}
6
-    {{ form_errors(form.string) }}
7 9
     {{ form_widget(form.string) }}
8 10
     {{ form_rest(form) }}
9 11
     

+ 5 - 0
web/css/main.css View File

@@ -1624,4 +1624,9 @@ li.element_view_propositions_link
1624 1624
   padding-left: 2px;
1625 1625
   padding-right: 2px;
1626 1626
   padding-top: 1px;
1627
+}
1628
+
1629
+div#results_search_form div.seachboxcontainer input
1630
+{
1631
+  width: 570px;
1627 1632
 }