Fix Firefox <select> height issue

closes #1109
- Use moz-specific selector to make <select> elements use auto height
This commit is contained in:
Paul Adam Davis 2014-02-20 12:16:43 +00:00
parent 7ff076c054
commit c952b50586

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;