MDL-59696 theme_bootstrapbase: Set max-width for custom-select elements

* Set custom-select elements with a maximum width of 100% of their
container.
This commit is contained in:
Jun Pataleta
2017-09-04 10:12:48 +08:00
parent 25c9f019b6
commit 011f82f04d
2 changed files with 15 additions and 0 deletions
@@ -113,6 +113,15 @@ form {
margin-right: .3em;
}
.custom-select {
max-width: 100%;
}
// Make the submit button align with the .custom-select element.
.custom-select + input[type="submit"] {
margin: 0 0 0 5px;
}
#portfolio-add-button {
display: inline;
}
+6
View File
@@ -13846,6 +13846,12 @@ form {
.singleselect label {
margin-right: .3em;
}
.custom-select {
max-width: 100%;
}
.custom-select + input[type="submit"] {
margin: 0 0 0 5px;
}
#portfolio-add-button {
display: inline;
}