mediawiki-skins-Citizen/templates/Search.mustache
alistair3149 6e35212007 refactor(core): clean up search box implementation
* Clean up DOM structure
* Clean up HTML classes
* Use relative units
* Remove unnessecary CSS
2022-05-10 10:52:36 -04:00

24 lines
884 B
Plaintext

{{!
string form-action action attribute of the search form
string page-title page title of the search page
string msg-search search text label
string html-input raw HTML containing the input box of the search box
string html-random-href URL of Special:Random
string msg-random tooltip message for random page button
}}
<div class="citizen-search citizen-header__item">
<form action="{{form-action}}" role="search" id="searchform" class="citizen-search__card" autocomplete="off">
<input type="hidden" name="title" value="{{page-title}}">
<label class="screen-reader-text" for="searchInput">{{msg-search}}</label>
<div class="citizen-search__icon"></div>
{{{html-input}}}
<a
class="citizen-search__random"
href="{{html-random-href}}"
title="{{msg-random}}">
<span class="screen-reader-text">{{msg-random}}</span>
</a>
</form>
{{>Search__button}}
</div>