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
For example in select widget (but it is the same for all widgets).
select
The class handling "hiding zero results" option is put on the widget (line 14) :
eea.facetednavigation/eea/facetednavigation/widgets/select/widget.pt
Lines 1 to 14 in 2199207
But the SCSS is wrong :
eea.facetednavigation/eea/facetednavigation/widgets/select/view.scss
Resulting in a CSS line :
.faceted-select-widget .faceted-zero-count-hidden .faceted-select-item-disabled { display: none; }
which should be :
.faceted-select-widget.faceted-zero-count-hidden .faceted-select-item-disabled { display: none; }
I will propose a PR to fix this ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For example in
select
widget (but it is the same for all widgets).The class handling "hiding zero results" option is put on the widget (line 14) :
eea.facetednavigation/eea/facetednavigation/widgets/select/widget.pt
Lines 1 to 14 in 2199207
But the SCSS is wrong :
eea.facetednavigation/eea/facetednavigation/widgets/select/view.scss
Lines 1 to 14 in 2199207
Resulting in a CSS line :
which should be :
I will propose a PR to fix this ...
The text was updated successfully, but these errors were encountered: