Skip to content

Commit 9eea85b

Browse files
committed
Fix button visible while widget closed (in Firefox)
Since a recent new version of Firefox, some of widget's content elements are visible, while the widget is closed, due to a CSS selector being prioritized differently now. This adds an additional selector to prevent overriding attributes when the widget content area is hidden.
1 parent 427508b commit 9eea85b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/assets/styles.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
max-height: 0px;
3838
}
3939

40-
.rs-box.rs-selected {
40+
.rs-box.rs-selected:not([aria-hidden=true]) {
4141
opacity: 1;
4242
max-height: 420px;
4343
}

0 commit comments

Comments
 (0)