mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-16 10:50:52 +00:00
fade8ad2c2
Cached HTML friendly change which works by limiting styles to the new HTML which is identified by the existence of the minerva-search-form class Bug: T301257 Change-Id: I61ba77a349a38e6a05f87f600ec31bcbf36f306a
16 lines
830 B
Plaintext
16 lines
830 B
Plaintext
<form action="{{form-action}}" method="get" class="minerva-search-form">
|
|
<div class="search-box">
|
|
<input type="hidden" name="title" value="{{page-title}}"/>
|
|
<input class="search mw-ui-background-icon-search skin-minerva-search-trigger" type="search" name="search" id="searchInput"
|
|
{{{html-input-attributes}}}">
|
|
</div>
|
|
{{!
|
|
A button when clicked will submit the form
|
|
This is used so that on tablet devices with JS disabled the search button
|
|
passes the value of input to the search
|
|
We avoid using input[type=submit] as these cannot be easily styled as mediawiki ui icons
|
|
which is problematic in Opera Mini (see T140490)
|
|
}}
|
|
<button id="searchIcon" class="mw-ui-icon mw-ui-icon-element mw-ui-icon-wikimedia-search-base20 skin-minerva-search-trigger mw-ui-button mw-ui-quiet">{{msg-searchbutton}}</button>
|
|
</form>
|