We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In Windows high contrast mode the navbar in bootstrap docs https://getbootstrap.com/docs/5.3/getting-started/introduction/ becomes transparent.
Also see: #35941
Maybe just change
bootstrap/site/assets/scss/_navbar.scss
Lines 1 to 13 in 048f56f
.bd-navbar { background-color: transparent; &::after { background-image: linear-gradient(rgba(var(--bd-violet-rgb), 1), rgba(var(--bd-violet-rgb), .95)); }
to something like
.bd-navbar { background-color: rgba(var(--bd-violet-rgb), .00001); &::after { background-image: linear-gradient(rgba(var(--bd-violet-rgb), 1), rgba(var(--bd-violet-rgb), .95)); }
or
.bd-navbar { background-color: transparent; @media (forced-colors) { background-color: var(--bd-violet); } &::after { background-image: linear-gradient(rgba(var(--bd-violet-rgb), 1), rgba(var(--bd-violet-rgb), .95)); }
https://codepen.io/rr-it/pen/MWMVXKQ
Windows
Chrome
v5.3
The text was updated successfully, but these errors were encountered:
Hi @rr-it could you please check if the problem has been resolved?
Here you can check out. The live preview link is included: #40911.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Prerequisites
Describe the issue
In Windows high contrast mode the navbar in bootstrap docs https://getbootstrap.com/docs/5.3/getting-started/introduction/ becomes transparent.
Also see: #35941
Maybe just change
bootstrap/site/assets/scss/_navbar.scss
Lines 1 to 13 in 048f56f
to something like
or
Reduced test cases
https://codepen.io/rr-it/pen/MWMVXKQ
What operating system(s) are you seeing the problem on?
Windows
What browser(s) are you seeing the problem on?
Chrome
What version of Bootstrap are you using?
v5.3
The text was updated successfully, but these errors were encountered: