mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-22 20:31:13 +00:00
Search button and input style fixes (#825)
* Align search button style with other navbar buttons, disable search box when hidden, adjust search box size * Align search button margin with other navigation bar buttons
This commit is contained in:
parent
daaac3dfe8
commit
b979e0a3a9
2 changed files with 34 additions and 30 deletions
|
@ -306,7 +306,7 @@ pre {
|
||||||
}
|
}
|
||||||
|
|
||||||
.show-input {
|
.show-input {
|
||||||
width: 13em !important;
|
width: 13vw !important;
|
||||||
}
|
}
|
||||||
.hide-input {
|
.hide-input {
|
||||||
background: transparent !important;
|
background: transparent !important;
|
||||||
|
|
|
@ -314,35 +314,39 @@ export class Navbar extends Component<NavbarProps, NavbarState> {
|
||||||
{!this.context.router.history.location.pathname.match(
|
{!this.context.router.history.location.pathname.match(
|
||||||
/^\/search/
|
/^\/search/
|
||||||
) && (
|
) && (
|
||||||
<form
|
<ul className="navbar-nav">
|
||||||
className="form-inline mr-2"
|
<li className="nav-item">
|
||||||
onSubmit={linkEvent(this, this.handleSearchSubmit)}
|
<form
|
||||||
>
|
className="form-inline mr-1"
|
||||||
<input
|
onSubmit={linkEvent(this, this.handleSearchSubmit)}
|
||||||
id="search-input"
|
>
|
||||||
className={`form-control mr-0 search-input ${
|
<input
|
||||||
this.state.toggleSearch ? "show-input" : "hide-input"
|
id="search-input"
|
||||||
}`}
|
className={`form-control mr-0 search-input ${
|
||||||
onInput={linkEvent(this, this.handleSearchParam)}
|
this.state.toggleSearch ? "show-input" : "hide-input"
|
||||||
value={this.state.searchParam}
|
}`}
|
||||||
ref={this.searchTextField}
|
onInput={linkEvent(this, this.handleSearchParam)}
|
||||||
type="text"
|
value={this.state.searchParam}
|
||||||
placeholder={i18n.t("search")}
|
ref={this.searchTextField}
|
||||||
onBlur={linkEvent(this, this.handleSearchBlur)}
|
disabled={!this.state.toggleSearch}
|
||||||
></input>
|
type="text"
|
||||||
<label className="sr-only" htmlFor="search-input">
|
placeholder={i18n.t("search")}
|
||||||
{i18n.t("search")}
|
onBlur={linkEvent(this, this.handleSearchBlur)}
|
||||||
</label>
|
></input>
|
||||||
<button
|
<label className="sr-only" htmlFor="search-input">
|
||||||
name="search-btn"
|
{i18n.t("search")}
|
||||||
onClick={linkEvent(this, this.handleSearchBtn)}
|
</label>
|
||||||
className="px-1 btn btn-link"
|
<button
|
||||||
style="color: var(--gray)"
|
name="search-btn"
|
||||||
aria-label={i18n.t("search")}
|
onClick={linkEvent(this, this.handleSearchBtn)}
|
||||||
>
|
className="px-1 btn btn-link nav-link"
|
||||||
<Icon icon="search" />
|
aria-label={i18n.t("search")}
|
||||||
</button>
|
>
|
||||||
</form>
|
<Icon icon="search" />
|
||||||
|
</button>
|
||||||
|
</form>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
)}
|
)}
|
||||||
{UserService.Instance.myUserInfo.isSome() ? (
|
{UserService.Instance.myUserInfo.isSome() ? (
|
||||||
<>
|
<>
|
||||||
|
|
Loading…
Reference in a new issue