0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00

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;