cortezaproject / corteza

Low-code platform
https://cortezaproject.org
Apache License 2.0
1.64k stars 375 forks source link

Unexpected unknown type selector "disabled" in 18201131_bootsrapvue.scss #2022

Closed McLaynV closed 2 days ago

McLaynV commented 1 week ago

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:

  a,
  .btn {
    &.b-avatar:hover:not(.disabled):not(disabled) {
      z-index: 1;
    }
  }

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 the disabled attribute".

  a,
  .btn {
    &.b-avatar:hover:not(.disabled):not([disabled]) {
      z-index: 1;
    }
  }

Steps To Reproduce

No response

Environment and versions

No response

Anything else?

Implemented in #2023 PR

McLaynV commented 2 days ago

Submitted in https://github.com/bootstrap-vue/bootstrap-vue/issues/7224