Merge pull request #2228 from PaulAdamDavis/master

Fix Firefox <select> height issue
This commit is contained in:
Hannah Wolfe 2014-02-20 19:17:58 +00:00
commit 7c2fd9fde8

View File

@ -129,6 +129,12 @@ select {
width: 100%;
}
}
// 'vanilla' CSS hack to specifically target Firefox
@-moz-document url-prefix() {
select {
height: auto;
}
}
.form-group {
position: relative;