CSS: Prevent selects with long option values from exceeding the container
This commit is contained in:
parent
d452dfefaf
commit
7d8cdefc7d
|
@ -182,6 +182,15 @@ form select:not([multiple]) {
|
|||
background-size: contain;
|
||||
}
|
||||
|
||||
form select {
|
||||
/* Prevent selects with long option values from exceeding the container */
|
||||
width: 0
|
||||
}
|
||||
|
||||
form.inline select {
|
||||
width: auto
|
||||
}
|
||||
|
||||
/**********************************************************************************************************************
|
||||
specific input styles
|
||||
***********************************************************************************************************************/
|
||||
|
|
Loading…
Reference in New Issue