This repository has been archived by the owner on May 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
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 #726 from cbmi/issue-678
Allow negation/exclusion for searchable fields
- Loading branch information
Showing
3 changed files
with
52 additions
and
11 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 |
---|---|---|
@@ -1,10 +1,29 @@ | ||
.field-value-search { | ||
.paginator { | ||
text-align: right; | ||
} | ||
.toolbar { | ||
.page-numbers { | ||
float: right; | ||
padding: 0px; | ||
} | ||
|
||
.btn-danger { | ||
float: right; | ||
} | ||
|
||
.exclude-container { | ||
display: inline-block; | ||
} | ||
|
||
.exclude-checkbox { | ||
padding: 0px; | ||
margin: 0px; | ||
width: 12px; | ||
height: 12px; | ||
} | ||
|
||
.exclude-label { | ||
margin-left: 5px; | ||
font-size: 13px; | ||
vertical-align: middle; | ||
} | ||
} | ||
} |
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,13 +1,19 @@ | ||
<div class=row-fluid> | ||
<div class='span6'> | ||
<div class='toolbar paginator-region'></div> | ||
<div class=search-region></div> | ||
<div class=browse-region></div> | ||
</div> | ||
<div class=span6> | ||
<div class=toolbar> | ||
<div class=exclude-container> | ||
<input class=exclude-checkbox type=checkbox name=exclude /> | ||
<span class=exclude-label>Exclude selected values</span> | ||
</div> | ||
<button type=button data-action=clear class='btn btn-mini btn-danger'> | ||
<i class='icon-remove icon-white'></i>Clear | ||
</button> | ||
<div class=paginator-region></div> | ||
</div> | ||
<div class=search-region></div> | ||
<div class=browse-region></div> | ||
</div> | ||
<div class='span6 values-region'></div> | ||
<div class=values-region></div> | ||
</div> | ||
</div> |