0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

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 a791db1779
commit 2581fb1822

View file

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