You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With following PR #1928 a bug was added to the new shoelace version 2.15.0.
In the file button.style.ts line 593 the css selector was changed from :host(.sl-button-group__button[checked]) {
to :host([data-sl-button-group__button[checked]]) {
The new selector is no longer a valid css selector, which leads to that the followed css is no longer applied and so the right focus border is not shown (see screenshot)
Describe the bug
With following PR #1928 a bug was added to the new shoelace version 2.15.0.
In the file
button.style.ts
line 593 the css selector was changed from:host(.sl-button-group__button[checked]) {
to
:host([data-sl-button-group__button[checked]]) {
The new selector is no longer a valid css selector, which leads to that the followed css is no longer applied and so the right focus border is not shown (see screenshot)
To Reproduce
Steps to reproduce the behavior:
:host([data-syn-button-group__button--focus]),
there should be an applied stylingScreenshots
Browser / OS
Additional information
The bug can be fixed by changing line 593 of the
button.style.ts
to:host([data-syn-button-group__button][checked]) {
The text was updated successfully, but these errors were encountered: