-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #98 from devgeniem/PIEN-8034
Pien-8034: Fix search in hamburger-menu
- Loading branch information
Showing
5 changed files
with
24 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,6 +73,7 @@ | |
|
||
&__actions { | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: center; | ||
margin-top: 2rem; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<form role="search" method="get" class="search-form is-flex is-flex-direction-row is-align-items-center mt-5 has-width-100" | ||
action="{Header.search_action|url}"> | ||
<div class="mr-2 is-flex-grow-1"> | ||
<label> | ||
<span class="is-sr-only">{Strings.s.header.search_input_label|html}</span> | ||
<input type="search" | ||
class="search-form__input has-background-white p-3 has-width-100" | ||
placeholder="{Strings.s.header.search_input_placeholder|s}" value="{search_query|attr}" name="s"> | ||
</label> | ||
</div> | ||
|
||
<button type="submit" class="search-form__button button is-secondary button--icon {button_class|attr}"> | ||
{Strings.s.header.search|html} | ||
{>"ui/icon" icon="search" class="icon--medium" /} | ||
</button> | ||
</form> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters