We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
bootstrap-vue/src/components/avatar/_avatar.scss
Line 144 in 2dee352
The src/components/avatar/_avatar.scss file contains
src/components/avatar/_avatar.scss
a, .btn { &.b-avatar:hover:not(.disabled):not(disabled) { z-index: 1; } }
and disabled is not a valid selector in :not(disabled).
disabled
:not(disabled)
I believe it should be :not([disabled]) which means "element does not have the disabled attribute".
:not([disabled])
a, .btn { &.b-avatar:hover:not(.disabled):not([disabled]) { z-index: 1; } }
The text was updated successfully, but these errors were encountered:
fix(CSS): "disabled" attribute selector (fixes bootstrap-vue#7224)
d4fc699
1573b77
Successfully merging a pull request may close this issue.
bootstrap-vue/src/components/avatar/_avatar.scss
Line 144 in 2dee352
The
src/components/avatar/_avatar.scss
file containsand
disabled
is not a valid selector in:not(disabled)
.I believe it should be
:not([disabled])
which means "element does not have thedisabled
attribute".The text was updated successfully, but these errors were encountered: