mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-24 19:33:02 +03:00
Fix Firefox <select> height issue
closes #1109 - Use moz-specific selector to make <select> elements use auto height
This commit is contained in:
parent
a791db1779
commit
2581fb1822
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user