Skip to content

Commit 4b4d2f2

Browse files
committed
Merge pull request angular-ui#196 from VolusionDev/master
Fix to allow select type multiple using the bootstrap theme in Firefox/IE
2 parents 149a226 + 92ec843 commit 4b4d2f2

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

src/bootstrap/match-multiple.tpl.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<span class="ui-select-match">
22
<span ng-repeat="$item in $select.selected">
3-
<button
3+
<span
44
style="margin-right: 3px;"
55
class="ui-select-match-item btn btn-default btn-xs"
66
tabindex="-1"
@@ -10,6 +10,6 @@
1010
ng-class="{'btn-primary':$select.activeMatchIndex === $index}">
1111
<span class="close ui-select-match-close" ng-hide="$select.disabled" ng-click="$select.removeChoice($index)">&nbsp;&times;</span>
1212
<span uis-transclude-append></span>
13-
</button>
13+
</span>
1414
</span>
15-
</span>
15+
</span>

src/select.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,10 @@
113113
line-height: 0.75;
114114
}
115115

116+
.ui-select-multiple.ui-select-bootstrap .ui-select-match-item{
117+
outline: 0;
118+
}
119+
116120
.ui-select-bootstrap .ui-select-choices-row>a {
117121
display: block;
118122
padding: 3px 20px;

0 commit comments

Comments
 (0)