Fix select box styling in firefox

Closes #18070
This commit is contained in:
Mike Jolley 2017-12-08 12:04:04 +00:00
parent 0c5a0b06cc
commit b6bc0d09a1
1 changed files with 6 additions and 1 deletions

View File

@ -3378,7 +3378,6 @@ img.help_tip {
}
// Give regular settings inputs a standard width and padding.
select,
textarea,
input[type="text"],
input[type="email"],
@ -3390,6 +3389,12 @@ img.help_tip {
box-sizing: border-box;
}
select {
width: 400px;
margin: 0;
box-sizing: border-box;
}
input[size] {
width: auto !important;
}