-
-
Notifications
You must be signed in to change notification settings - Fork 79k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add style for non-overlapping scrollbar in IE #24081
Conversation
Not sure if this change should be applied to Bootstrap or to our docs CSS 🤔 |
Does the issue happen in all |
Yes, it happens in all. |
@Johann-S: can you confirm? |
yep I reproduced that bug on Win7 IE 11, but to see it you have to move your cursor over our |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good to go other than this one formatting comment...
scss/_reboot.scss
Outdated
@@ -239,6 +239,9 @@ pre { | |||
margin-bottom: 1rem; | |||
// Don't allow content to break outside | |||
overflow: auto; | |||
// We have @viewport set which causes scrollbars to overlap content in IE11 and Edge, so | |||
// we force a non-overlapping, non-auto-hiding scrollbar to counteract. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Too many spaces here between //
and we
.
@prateekgoel: please don't remove the option to allow project members to edit your PRs. |
Added
-ms-overflow-style: scrollbar;
to resolve overlapping scrollbar issue in IE 11 and Edge.Fixes #24057
Before
After