Closed McLaynV closed 2 days ago
2024.9.x branch
The server/assets/src/scss/main/18201131_bootsrapvue.scss file contains:
server/assets/src/scss/main/18201131_bootsrapvue.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; } }
No response
Implemented in #2023 PR
Submitted in https://github.com/bootstrap-vue/bootstrap-vue/issues/7224
Is there an existing issue for this?
Version of Corteza
2024.9.x branch
Current Behavior
The
server/assets/src/scss/main/18201131_bootsrapvue.scss
file contains:and
disabled
is not a valid selector in:not(disabled)
.Expected Behavior
I believe it should be
:not([disabled])
which means "element does not have thedisabled
attribute".Steps To Reproduce
No response
Environment and versions
No response
Anything else?
Implemented in #2023 PR