Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
16 changes: 11 additions & 5 deletions assets/css/v2/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -728,11 +728,6 @@ atomic-search-interface {
margin-top: 2rem;
}

#search-standalone-sidebar {
min-height: 54px;
max-height: 54px;
}

atomic-search-box {
&::part(wrapper) {
border-radius: 0;
Expand All @@ -751,6 +746,16 @@ atomic-search-box {
}
}

atomic-refine-toggle {
display: none;
}

@media (max-width: 1024px) {
atomic-refine-toggle {
display: block;
}
}

atomic-query-summary {
/* Show duration */
&::part(duration) {
Expand All @@ -761,6 +766,7 @@ atomic-query-summary {
atomic-search-layout {
grid-template-areas:
"atomic-section-search"
"atomic-section-facets"
"atomic-section-main"
"." !important;

Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/coveo-atomic.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<!-- Search/Metadata Section -->
<atomic-layout-section section="search">
<div class="atomic-full-summary-and-sort">
<atomic-refine-toggle></atomic-refine-toggle>
<atomic-query-summary></atomic-query-summary>
<atomic-sort-dropdown>
<atomic-sort-expression label="relevance" expression="relevancy"></atomic-sort-expression>
Expand All @@ -14,7 +15,6 @@
<!-- Facet Section -->
<atomic-layout-section section="facets">
<atomic-facet field="f5_product" label="Show by product"></atomic-facet>
<atomic-refine-toggle></atomic-refine-toggle>
</atomic-layout-section>

<!-- Main Section -->
Expand Down
Loading