MaGeFH
Active member
- Affected version
- 2.0, 2.1
Just noticed that when a select with a size attribute contains more content than it's size allows, it's not possible to scroll without moving the selection via the cursor keys.
The is caused by the
You could overwrite the overflow property in the
The is caused by the
overflow: hidden
rule on the select.input
selector defined in core_input.less
.You could overwrite the overflow property in the
select.input[size]
selector or limit the hiding of overflow to the horizontal axis. That should solve the problem.