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:
Rens Groothuijsen 2022-10-21 05:56:57 +02:00 committed by GitHub
parent daaac3dfe8
commit b979e0a3a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 34 additions and 30 deletions

View file

@ -306,7 +306,7 @@ pre {
}
.show-input {
width: 13em !important;
width: 13vw !important;
}
.hide-input {
background: transparent !important;

View file

@ -314,8 +314,10 @@ export class Navbar extends Component<NavbarProps, NavbarState> {
{!this.context.router.history.location.pathname.match(
/^\/search/
) && (
<ul className="navbar-nav">
<li className="nav-item">
<form
className="form-inline mr-2"
className="form-inline mr-1"
onSubmit={linkEvent(this, this.handleSearchSubmit)}
>
<input
@ -326,6 +328,7 @@ export class Navbar extends Component<NavbarProps, NavbarState> {
onInput={linkEvent(this, this.handleSearchParam)}
value={this.state.searchParam}
ref={this.searchTextField}
disabled={!this.state.toggleSearch}
type="text"
placeholder={i18n.t("search")}
onBlur={linkEvent(this, this.handleSearchBlur)}
@ -336,13 +339,14 @@ export class Navbar extends Component<NavbarProps, NavbarState> {
<button
name="search-btn"
onClick={linkEvent(this, this.handleSearchBtn)}
className="px-1 btn btn-link"
style="color: var(--gray)"
className="px-1 btn btn-link nav-link"
aria-label={i18n.t("search")}
>
<Icon icon="search" />
</button>
</form>
</li>
</ul>
)}
{UserService.Instance.myUserInfo.isSome() ? (
<>