-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(search): Create component "refine search" #289
* refactor class hsg-search-inputs for vertical and horizontal alignment * extract checkboxes for refining search as include „filter-querystring-include.html“ * add css to component
- Loading branch information
1 parent
99adbc1
commit 8e50b55
Showing
6 changed files
with
57 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<div class="row"> | ||
<div class="hsg-width-one-whole" data-template="app:fix-links"> | ||
<div class="hsg-search-inputs-horizontal"> | ||
<div class="hsg-search-input"> | ||
<input id="exactPhrase" type="checkbox" name="" /> | ||
<label for="exactPhrase" class="c-indicator">Exact Phrase</label> | ||
</div> | ||
<div class="hsg-search-input"> | ||
<input id="caseSensitive" type="checkbox" name="" /> | ||
<label for="caseSensitive" class="c-indicator">Case Sensitive</label> | ||
</div> | ||
<div class="hsg-search-input"> | ||
<input id="punctuationSensitive" type="checkbox" name="" /> | ||
<label for="punctuationSensitive" class="c-indicator">Punctuation Sensitive</label> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
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
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