changing input type=search back to text until https://bugs.webkit.org/show_bug.cgi?id=33637 is resolved

This commit is contained in:
Ben Word
2011-05-08 11:33:16 -06:00
parent 4a4ea9a6ae
commit 6aaaf48581
2 changed files with 2 additions and 2 deletions

View File

@@ -395,7 +395,7 @@ img.ui-datepicker-trigger { vertical-align: middle; }
#mapp0_poweredby, #mapp1_poweredby, #mapp2_poweredby, #mapp3_poweredby, #mapp4_poweredby, #mapp5_poweredby, #mapp6_poweredby, #mapp7_poweredby, #mapp8_poweredby, #mapp9_poweredby, #mapp10_poweredby { display: none !important; } /* remove MapPress credit */
/* Search */
#searchform #s { padding: 5px; -moz-appearance: textfield; -webkit-appearance: textfield; }
#searchform #s { padding: 5px; }
/* INTERNET EXPLORER

View File

@@ -1,5 +1,5 @@
<form role="search" method="get" id="searchform" action="<?php echo home_url('/'); ?>">
<label class="visuallyhidden" for="s"><?php _e('Search for:', 'roots'); ?></label>
<input type="search" value="" name="s" id="s" placeholder="<?php _e('Search', 'roots'); ?> <?php bloginfo('name'); ?>">
<input type="text" value="" name="s" id="s" placeholder="<?php _e('Search', 'roots'); ?> <?php bloginfo('name'); ?>">
<input type="submit" id="searchsubmit" value="<?php _e('Search', 'roots'); ?>" class="button">
</form>