mirror of
https://github.com/moodle/moodle.git
synced 2025-03-22 16:40:07 +01:00
MDL-69703 theme_boost: remove right padding for multi-selects.
This removes the whitespace obscuring longer option elements when selected, particularly on narrow screens.
This commit is contained in:
parent
efb3d4e7a7
commit
241641ab59
@ -338,6 +338,13 @@ fieldset.coursesearchbox label {
|
||||
font-size: large;
|
||||
}
|
||||
|
||||
select.form-control {
|
||||
&[size],
|
||||
&[multiple] {
|
||||
padding-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* Non-bootstrap selects with a size show their contents outside of the element.
|
||||
* Remove when we update to stable bootstrap 4. (MDL-56511) */
|
||||
select[size],
|
||||
|
@ -16653,6 +16653,9 @@ fieldset.coursesearchbox label {
|
||||
padding: 0.5em;
|
||||
font-size: large; }
|
||||
|
||||
select.form-control[size], select.form-control[multiple] {
|
||||
padding-right: 0; }
|
||||
|
||||
/* Non-bootstrap selects with a size show their contents outside of the element.
|
||||
* Remove when we update to stable bootstrap 4. (MDL-56511) */
|
||||
select[size],
|
||||
|
@ -16887,6 +16887,9 @@ fieldset.coursesearchbox label {
|
||||
padding: 0.5em;
|
||||
font-size: large; }
|
||||
|
||||
select.form-control[size], select.form-control[multiple] {
|
||||
padding-right: 0; }
|
||||
|
||||
/* Non-bootstrap selects with a size show their contents outside of the element.
|
||||
* Remove when we update to stable bootstrap 4. (MDL-56511) */
|
||||
select[size],
|
||||
|
Loading…
x
Reference in New Issue
Block a user