Skip to content

Commit

Permalink
#557: Fix rendering select component on firefox (#559)
Browse files Browse the repository at this point in the history
#557: Fixed visual error on firefox. In single-select mode select
component had extended height due to caret symbol going into new line.
Added float:left to placeholder class to fix this.
  • Loading branch information
Matiszak authored and valorkin committed Dec 21, 2016
1 parent 2c211cc commit 77ddc89
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions components/select/select.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ let styles = `
.ui-select-toggle {
position: relative;
}
/* Fix caret going into new line in Firefox */
.ui-select-placeholder {
float: left;
}
/* Fix Bootstrap dropdown position when inside a input-group */
.input-group > .dropdown {
Expand Down

0 comments on commit 77ddc89

Please sign in to comment.