-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgraded paperbits libraries to 0.1.274. (#602)
- Loading branch information
Showing
31 changed files
with
449 additions
and
279 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,25 @@ | ||
<div class="form-inline search-input"> | ||
<div class="input-group"> | ||
<input autofocus type="search" role="searchbox" aria-label="Search tags" placeholder="Search tags" | ||
data-bind="textInput: pattern" /> | ||
<button type="button" class="search-button" aria-label="Search tags"> | ||
<i class="icon icon-magnifier"></i> | ||
</button> | ||
<div class="flex flex-column"> | ||
<div class="form-inline search-input"> | ||
<div class="input-group"> | ||
<input autofocus type="search" role="searchbox" aria-label="Search tags" placeholder="Search tags" | ||
data-bind="textInput: pattern" /> | ||
<button type="button" class="search-button" aria-label="Search tags"> | ||
<i class="icon icon-magnifier"></i> | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<!-- ko ifnot: empty --> | ||
<div role="list" class="list" data-bind="foreach: { data: availableTags, as: 'tag' }"> | ||
<div role="presentation" data-bind="activate: $parent.addTag"> | ||
<div tabindex="0" role="listitem" class="tag" data-bind="text: name"></div> | ||
<!-- ko ifnot: empty --> | ||
<div role="list" class="list" data-bind="foreach: { data: availableTags, as: 'tag' }"> | ||
<div role="presentation" data-bind="activate: $parent.addTag"> | ||
<div tabindex="0" role="listitem" class="tag" data-bind="text: name"></div> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- /ko --> | ||
<!-- /ko --> | ||
|
||
<!-- ko if: empty --> | ||
<div role="list" class="list"> | ||
<div class="list-item-empty">No tags found</div> | ||
</div> | ||
<!-- /ko --> | ||
<!-- ko if: empty --> | ||
<div role="list" class="list"> | ||
<div class="list-item-empty">No tags found</div> | ||
</div> | ||
<!-- /ko --> | ||
</div> |
Oops, something went wrong.