Skip to content

Instantly share code, notes, and snippets.

@LesykJulia
Created October 17, 2022 12:49
Show Gist options
  • Save LesykJulia/0e08646a644927776cfcc41a1431d99a to your computer and use it in GitHub Desktop.
Save LesykJulia/0e08646a644927776cfcc41a1431d99a to your computer and use it in GitHub Desktop.
Allows adjusting the Remove Filters Button from the JetSmartFilters plugin loading speed to display simultaneously with the filtered-out content.
.jet-remove-all-filters {
visibility: visible;
opacity: 1;
transition: opacity 1.3s ease-out, visibility 1.3s ease-out;
}
.jet-remove-all-filters.hide {
display: flex;
visibility: hidden;
opacity: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment