Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ <h3>Regular pages</h3>
<li><a href="test/src-en.html">Contextual search page</a></li>
<li><a href="test/no-qs-en.html">Search without Query Suggestions (QS)</a></li>
<li><a href="test/qs-en.html">Search with custom QS configuration</a></li>
<li><a href="test/srf-en.html">Search page with facets</a></li>
<li><a href="test/srb-fr.html" hreflang="fr" lang="fr">Page de recherche (base)</a></li>
<li><a href="test/sra-fr.html" hreflang="fr" lang="fr">Page de recherche (avancée)</a></li>
<li><a href="test/src-fr.html" hreflang="fr" lang="fr">Page de recherche (contextuelle)</a></li>
Expand Down
33 changes: 33 additions & 0 deletions src/connector.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,36 @@
width: 100%;
}
}

/*
* Facet sidebar layout
*/
.gc-facet-toggle .glyphicon-chevron-left {
display: inline-block;
transition: transform 0.2s ease;
}

/* Rotate chevron to point right when the panel is collapsed */
.gc-facet-toggle[aria-expanded="false"] .glyphicon-chevron-left {
transform: rotate(180deg);
}

.gc-facet-values li {
overflow-wrap: break-word;
position: relative;
}

/* Stretch the link click area to the full row without affecting its visual appearance */
.gc-facet-values a::after {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}

.gc-date-pickers .form-control,
.gc-facet-search {
width: 100%;
}
Loading
Loading