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
In render there's not difference between filters and selected filters. So you cannot make a CSS which would differ them.
I've fixed this in facet.jsp by adding active-filter in line 30:
active-filter
<% if (filterQueries != null && !filterQueries.isEmpty()) { %> <div class="panel panel-default"> <div class="panel-heading"> <h3 class="panel-title active-filter"><%=renderer.getFiltersTitleText()%></h3> </div> <div class="panel-body"> <ul style="list-style-type: none"> <li><a href="<%=getUrl + "&fqc"%>"><%=renderer.getClearFiltersText()%></a></li> <% for (String fieldName : filterQueries.getTermsFilterSet()) { for (String term : filterQueries.getTermSet(fieldName)) {
I this this is a good enhancement and would recommend that is globally available.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In render there's not difference between filters and selected filters. So you cannot make a CSS which would differ them.
I've fixed this in facet.jsp by adding
active-filter
in line 30:I this this is a good enhancement and would recommend that is globally available.
The text was updated successfully, but these errors were encountered: