mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-04 04:10:33 +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
7ff076c054
commit
c952b50586
@ -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