This repository has been archived by the owner on May 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(links): move design toolbar to include
- Loading branch information
Showing
2 changed files
with
29 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<div class="row toolbar-pf table-view-pf-toolbar" id="toolbar1"> | ||
<div class="col-sm-12"> | ||
<form class="toolbar-pf-actions"> | ||
<div class="form-group toolbar-pf-filter"> | ||
<label class="sr-only" for="filter"> | ||
Filter Designs | ||
</label> | ||
<div class="input-group"> | ||
<div class="input-group-btn"> | ||
<button type="button" class="btn btn-default dropdown-toggle" id="filter" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> | ||
Filter Designs <span class="caret"></span> | ||
</button> | ||
<ul class="dropdown-menu"> | ||
<li> | ||
<a data-target="#" id="design">Design Title</a> | ||
</li> | ||
<li> | ||
<a data-target="#" id="designer">Designer</a> | ||
</li> | ||
</ul> | ||
</div> | ||
<input type="text" class="form-control" placeholder="by Design Title..." autocomplete="off" id="designFilter" onkeyup="titleFunction()"> | ||
<input type="text" class="form-control hide" placeholder="by Designer..." autocomplete="off" id="designerFilter" onkeyup="designerFunction()"> | ||
</div> | ||
</div> | ||
</form> | ||
</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