We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
WordPress offers to collapse widgets: It adds an closed class to the widget <div>.
closed
<div>
Our CSS for #statify_dashboard .inside uses display: flex which overrides the display: none; for .js .closed .inside from WordPress Core.
#statify_dashboard .inside
display: flex
display: none;
.js .closed .inside
The text was updated successfully, but these errors were encountered:
Correct, the ID selector takes precedence over the class selector because it's more precise.
Sorry, something went wrong.
fix CSS to not overrule display property on collapsed widget (#208) (#…
7889a57
…209)
Successfully merging a pull request may close this issue.
WordPress offers to collapse widgets: It adds an
closed
class to the widget<div>
.Our CSS for
#statify_dashboard .inside
usesdisplay: flex
which overrides thedisplay: none;
for.js .closed .inside
from WordPress Core.The text was updated successfully, but these errors were encountered: