1
0
mirror of https://github.com/flarum/core.git synced 2025-07-30 21:20:24 +02:00

Added search input types to 3 inputs total, closes #726

* Added type search to search bar (forum)
* Added CSS `box-sizing: inherit` to search <input> because bootstrap styles mess up the search box
* Added type color to both color settings in appearance (admin)
This commit is contained in:
David Sevilla Martin
2016-11-27 19:39:47 -05:00
parent ab912ba1ad
commit fcdf36b3d0
5 changed files with 7 additions and 4 deletions

View File

@@ -83,6 +83,7 @@ export default class Search extends Component {
})}>
<div className="Search-input">
<input className="FormControl"
type="search"
placeholder={extractText(app.translator.trans('core.forum.header.search_placeholder'))}
value={this.value()}
oninput={m.withAttr('value', this.value)}