mirror of https://github.com/twbs/bootstrap.git
fix(visually-hidden): prevent overflowing children to become focusable
This commit is contained in:
parent
53171ad564
commit
d313333890
|
@ -19,6 +19,11 @@
|
||||||
&:not(caption) {
|
&:not(caption) {
|
||||||
position: absolute !important;
|
position: absolute !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Fix to prevent overflowing children to become focusable
|
||||||
|
* {
|
||||||
|
overflow: hidden !important;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Use to only display content when it's focused, or one of its child elements is focused
|
// Use to only display content when it's focused, or one of its child elements is focused
|
||||||
|
|
Loading…
Reference in New Issue