Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Fix to allow select type multiple using the bootstrap theme in Firefox/IE #196

Merged
merged 2 commits into from
Oct 7, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/bootstrap/match-multiple.tpl.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<span class="ui-select-match">
<span ng-repeat="$item in $select.selected">
<button
<span
style="margin-right: 3px;"
class="ui-select-match-item btn btn-default btn-xs"
tabindex="-1"
Expand All @@ -10,6 +10,6 @@
ng-class="{'btn-primary':$select.activeMatchIndex === $index}">
<span class="close ui-select-match-close" ng-hide="$select.disabled" ng-click="$select.removeChoice($index)">&nbsp;&times;</span>
<span uis-transclude-append></span>
</button>
</span>
</span>
</span>
</span>
4 changes: 4 additions & 0 deletions src/select.css
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@
line-height: 0.75;
}

.ui-select-multiple.ui-select-bootstrap .ui-select-match-item{
outline: 0;
}

.ui-select-bootstrap .ui-select-choices-row>a {
display: block;
padding: 3px 20px;
Expand Down