diff options
| author | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-04-09 23:04:07 +0300 |
|---|---|---|
| committer | Senky <jakubsenko@gmail.com> | 2013-05-20 18:42:05 +0200 |
| commit | 178f23d4d8e37724e5f27cfb9b19dd2ab867e888 (patch) | |
| tree | 0349505277214f27d1d52cc13753e3fd83202b7c /phpBB/styles/prosilver/template/search_body.html | |
| parent | 06b7e424fca4e42428a54b1cc7eba572a2ec2620 (diff) | |
| download | forums-178f23d4d8e37724e5f27cfb9b19dd2ab867e888.tar forums-178f23d4d8e37724e5f27cfb9b19dd2ab867e888.tar.gz forums-178f23d4d8e37724e5f27cfb9b19dd2ab867e888.tar.bz2 forums-178f23d4d8e37724e5f27cfb9b19dd2ab867e888.tar.xz forums-178f23d4d8e37724e5f27cfb9b19dd2ab867e888.zip | |
[ticket/11010] Change input type to search for search forms
Change input type to search for search forms
Replace search placeholder JS with placeholder attribute
Add style for search placeholder
PHPBB3-11010
Diffstat (limited to 'phpBB/styles/prosilver/template/search_body.html')
| -rw-r--r-- | phpBB/styles/prosilver/template/search_body.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/search_body.html b/phpBB/styles/prosilver/template/search_body.html index dee080def5..fedbdc6642 100644 --- a/phpBB/styles/prosilver/template/search_body.html +++ b/phpBB/styles/prosilver/template/search_body.html @@ -19,13 +19,13 @@ <fieldset> <dl> <dt><label for="keywords">{L_SEARCH_KEYWORDS}{L_COLON}</label><br /><span>{L_SEARCH_KEYWORDS_EXPLAIN}</span></dt> - <dd><input type="text" class="inputbox" name="keywords" id="keywords" size="40" title="{L_SEARCH_KEYWORDS}" /></dd> + <dd><input type="search" class="inputbox" name="keywords" id="keywords" size="40" title="{L_SEARCH_KEYWORDS}" /></dd> <dd><label for="terms1"><input type="radio" name="terms" id="terms1" value="all" checked="checked" /> {L_SEARCH_ALL_TERMS}</label></dd> <dd><label for="terms2"><input type="radio" name="terms" id="terms2" value="any" /> {L_SEARCH_ANY_TERMS}</label></dd> </dl> <dl> <dt><label for="author">{L_SEARCH_AUTHOR}{L_COLON}</label><br /><span>{L_SEARCH_AUTHOR_EXPLAIN}</span></dt> - <dd><input type="text" class="inputbox" name="author" id="author" size="40" title="{L_SEARCH_AUTHOR}" /></dd> + <dd><input type="search" class="inputbox" name="author" id="author" size="40" title="{L_SEARCH_AUTHOR}" /></dd> </dl> </fieldset> |
