Limit search text width

This commit is contained in:
Gregory Soutade 2012-12-13 14:32:27 +01:00
parent c3a75305cb
commit 2f70a4bec5
2 changed files with 6 additions and 1 deletions

View File

@ -28,7 +28,7 @@
<div class="menu_content_header">Recherche</div>
<div id="menu_main">
<dyn:replace div_name="form" id="search_form" method="POST" action="/search/dyn:blog_id">
<input type="text" name="text" onkeypress="handleKeyPress(event,this.form)"/>
<input type="text" name="text" id="search_text" onkeypress="handleKeyPress(event,this.form)"/>
</dyn:replace>
</div>
</div>

View File

@ -449,3 +449,8 @@ ul li
padding:0;
margin:0;
}
#search_text
{
width:100%;
}