Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {% liquid
- assign order = 'logo,menu,localization,search,drawer_search,actions'
- if shop.customer_accounts_enabled
- assign order = 'drawer_search,logo,menu,localization,search,actions'
- endif
- assign rows = 'top,bottom' | split: ','
- assign search_style = 'none'
- if section.settings.show_search
- assign search_style = 'modal'
- endif
- if section.settings.show_search
- render 'predictive-search-styles'
- render 'slideshow-styles'
- endif
- if section.settings.enable_transparent_header_home and template.name == 'index'
- assign transparent = 'always'
- assign transparent_color_scheme = section.settings.home_color_scheme
- elsif section.settings.enable_transparent_header_product and template.name == 'product'
- assign transparent = 'always'
- assign transparent_color_scheme = section.settings.product_color_scheme
- elsif section.settings.enable_transparent_header_collection and template.name == 'collection'
- assign transparent = 'always'
- assign transparent_color_scheme = section.settings.collection_color_scheme
- endif
- if section.settings.enable_sticky_header == 'always'
- assign sticky = 'always'
- elsif section.settings.enable_sticky_header == 'scroll-up'
- assign sticky = 'scroll-up'
- endif
- if transparent and sticky
- assign transparent = 'not-sticky'
- endif
- if transparent
- if transparent_color_scheme == 'inverse'
- assign transparent_color_scheme = 'color-' | append: section.settings.color_scheme_transparent
- else
- assign transparent_color_scheme = 'color-' | append: section.settings.color_scheme_top
- endif
- endif
- capture logo
- content_for 'block', type: '_header-logo', id: 'header-logo'
- endcapture
- capture menu
- content_for 'block', type: '_header-menu', id: 'header-menu'
- endcapture
- capture drawer_menu
- content_for 'block', type: '_header-menu', id: 'header-menu', variant: 'mobile'
- endcapture
- capture navigation_bar
- content_for 'block', type: '_header-menu', id: 'header-menu', variant: 'navigation_bar', transparent: transparent
- endcapture
- capture actions
- render 'header-actions', customer_account_menu: section.settings.customer_account_menu, display_style: section.settings.actions_display_style, section: section
- endcapture
- if shop.customer_accounts_enabled
- assign search_class = 'search-action--hidden-on-drawer'
- endif
- if section.settings.localization_position == 'left'
- if section.settings.search_position == 'left'
- if shop.customer_accounts_enabled
- assign order = 'drawer_search,logo,search,localization,menu,actions'
- else
- assign order = 'logo,search,localization,menu,drawer_search,actions'
- endif
- else
- if shop.customer_accounts_enabled
- assign order = 'drawer_search,logo,localization,menu,search,actions'
- else
- assign order = 'logo,localization,menu,search,drawer_search,actions'
- endif
- endif
- else
- if section.settings.search_position == 'left'
- if shop.customer_accounts_enabled
- assign order = 'drawer_search,logo,search,menu,localization,actions'
- else
- assign order = 'logo,search,menu,localization,drawer_search,actions'
- endif
- endif
- endif
- capture search
- render 'search', style: search_style, class: search_class, display_style: section.settings.actions_display_style
- endcapture
- assign skip_drawer_search = false
- if shop.customer_accounts_enabled == false and section.settings.search_position == 'left' and search_style != 'none'
- assign skip_drawer_search = true
- endif
- if section.settings.search_row == 'bottom' or search_style != 'none' and skip_drawer_search == false
- capture drawer_search
- render 'search', class: 'search-action--hidden-on-menu', style: search_style, display_style: section.settings.actions_display_style
- endcapture
- endif
- assign show_language = section.settings.show_language
- if localization.available_languages.size <= 1
- assign show_language = false
- endif
- assign show_country = section.settings.show_country
- if localization.available_countries.size <= 1
- assign show_country = false
- endif
- assign bottom_row_blocks = ''
- if section.settings.menu_row == 'bottom'
- assign bottom_row_blocks = bottom_row_blocks | append: 'menu,'
- endif
- if section.settings.search_style != 'none'
- if section.settings.search_row == 'bottom'
- assign bottom_row_blocks = bottom_row_blocks | append: 'search,'
- endif
- endif
- if section.settings.show_country or section.settings.show_language
- if section.settings.localization_row == 'bottom'
- assign bottom_row_blocks = bottom_row_blocks | append: 'localization,'
- endif
- endif
- assign bottom_row_blocks = bottom_row_blocks | split: ',' | compact
- if section.settings.section_height == 'compact'
- assign header_height_class = ' header--compact'
- endif
- if bottom_row_blocks.size > 0 and section.settings.color_scheme_top.settings.background.rgb == section.settings.color_scheme_bottom.settings.background.rgb and section.settings.divider_width == 0
- assign collapse_header_paddings_class = 'header--collapse-row-paddings'
- endif
- assign class = 'header'
- if transparent_color_scheme
- assign class = class | append: ' ' | append: transparent_color_scheme
- endif
- if header_height_class
- assign class = class | append: ' ' | append: header_height_class
- endif
- if collapse_header_paddings_class
- assign class = class | append: ' ' | append: collapse_header_paddings_class
- endif
- assign top_transparent = false
- assign bottom_transparent = false
- if section.settings.color_scheme_top.settings.background.alpha != 1
- assign top_transparent = true
- endif
- if section.settings.color_scheme_bottom.settings.background.alpha != 1
- assign bottom_transparent = true
- endif
- if top_transparent and bottom_transparent
- assign transparent_color_scheme_value = 'both'
- elsif top_transparent
- assign transparent_color_scheme_value = 'top'
- elsif bottom_transparent
- assign transparent_color_scheme_value = 'bottom'
- endif
- %}
- {% capture localization_markup %}
- {% liquid
- assign localization_font = '--menu-localization-font: var(--font-[localization_font]--family); ' | replace: '[localization_font]', section.settings.localization_font
- assign localization_font_size = '--menu-localization-font-size: [localization_font_size]; ' | replace: '[localization_font_size]', section.settings.localization_font_size
- assign color_shadow = '--color-shadow: rgb(var(--color-foreground-rgb) / var(--opacity-10-25));'
- assign form_style = localization_font | append: localization_font_size | append: color_shadow
- %}
- {% if show_language and show_country == false %}
- <div class="dropdown-localization mobile:hidden">
- {% render 'localization-form',
- show_country: show_country,
- show_language: show_language,
- localization_style: 'dropdown',
- form_style: form_style,
- form_id: section.id
- %}
- </div>
- {% elsif show_country %}
- <dropdown-localization-component
- class="dropdown-localization mobile:hidden"
- >
- <button
- type="button"
- class="button dropdown-localization__button localization-selector header-actions__action"
- aria-expanded="false"
- aria-controls="dropdown-localization-results"
- ref="button"
- on:click="/toggleSelector"
- style="{{ localization_font }} {{ localization_font_size }}"
- >
- {% if show_country %}
- {% if section.settings.country_selector_style == true %}
- {% liquid
- assign background_brightness = section.settings.color_scheme_top.settings.background | color_brightness
- if background_brightness < 64
- assign shadow_size = 4
- else
- assign shadow_size = 2
- endif
- %}
- <span
- class="icon-flag"
- style="
- background-image: url({{- localization.country | image_url: width: 32 }});
- --size-shadow: {{ shadow_size }}px;
- --color-shadow: rgb(var(--color-foreground-rgb) / var(--opacity-30-60));
- "
- ></span>
- {% endif %}
- <span
- class="currency-code"
- data-testid="localization-currency-code"
- >
- {{- localization.country.currency.iso_code -}}
- </span>
- {% endif %}
- <span
- class="visually-hidden"
- data-testid="localization-visually-hidden"
- >
- {{- 'accessibility.localization_region_and_language' | t -}}
- </span>
- {%- if show_country and show_language -%}
- <span>/</span>
- {%- endif -%}
- {%- if show_language -%}
- <span>
- {{ localization.language.iso_code | upcase }}
- </span>
- {%- endif -%}
- <span class="svg-wrapper icon-caret">
- {{- 'icon-caret.svg' | inline_asset_content -}}
- </span>
- </button>
- <div
- class="localization-wrapper {{ section.settings.localization_position }}-bound color-{{ settings.popover_color_scheme }}"
- hidden
- ref="panel"
- >
- {% render 'localization-form',
- show_country: show_country,
- show_language: show_language,
- localization_style: 'dropdown',
- form_style: form_style,
- form_id: section.id
- %}
- </div>
- </dropdown-localization-component>
- {% endif %}
- {% endcapture %}
- <script type="application/ld+json">
- {
- "@context": "http://schema.org",
- "@type": "Organization",
- "name": {{ shop.name | json }},
- {% if settings.logo %}
- "logo": {{ settings.logo | image_url: width: 500 | prepend: "https:" | json }},
- {% endif %}
- "url": {{ request.origin | append: page.url | json }}
- }
- </script>
- <header-component
- id="header-component"
- class="{{ class }}"
- data-theme-color="rgb({{ section.settings.color_scheme_top.settings.background.rgb }})"
- {% if transparent %}
- transparent="{{ transparent }}"
- {% endif %}
- {% if sticky %}
- sticky="{{ sticky }}"
- {% endif %}
- data-skip-node-update
- data-scroll-direction="none"
- {% if section.settings.menu_row == 'top' and bottom_row_blocks.size > 0 %}
- data-submenu-overlap-bottom-row
- {% endif %}
- {% if transparent_color_scheme_value %}
- data-transparent-color-scheme="{{ transparent_color_scheme_value }}"
- {% endif %}
- style="
- --color-scheme-top-row: rgba({{ section.settings.color_scheme_top.settings.background.rgba }});
- --color-scheme-bottom-row: rgba({{ section.settings.color_scheme_bottom.settings.background.rgba }});
- {% if section.settings.actions_display_style == 'text' %}
- --header-actions-font-size: {{ section.settings.actions_font_size | default: '1rem' }};
- --header-actions-font-family: var(--font-{{ section.settings.actions_font | default: 'heading' }}--family);
- --header-actions-font-weight: var(--font-{{ section.settings.actions_font | default: 'heading' }}--weight);
- --header-actions-text-case: {{ section.settings.actions_text_case | default: 'none' }};
- {% endif %}
- "
- >
- <div class="header__underlay header__underlay-closed"></div>
- <div
- class="header__underlay header__underlay-open"
- ></div>
- {%- if request.page_type == 'index' -%}
- <h1 class="visually-hidden">{{ shop.name }}</h1>
- {%- endif -%}
- {% for row in rows %}
- {% liquid
- assign scheme = 'color_scheme_' | append: row
- assign class = 'header__row header__row--[row] color-[row_scheme] section section--full-width-margin section--[section-width]' | replace: '[row]', row | replace: '[row_scheme]', section.settings[scheme] | replace: '[section-width]', section.settings.section_width
- case row
- when 'top'
- assign first = drawer_menu
- if bottom_row_blocks.size > 0 and section.settings.divider_size == 'page-width'
- assign class = class | append: ' divider--page-width'
- endif
- if bottom_row_blocks.size > 0
- assign border_bottom_setting_id = 'divider_width'
- else
- assign border_bottom_setting_id = 'border_width'
- endif
- when 'bottom'
- assign first = ''
- assign class = class | append: ' mobile:hidden'
- assign border_bottom_setting_id = 'border_width'
- endcase
- assign style = '--border-bottom-width: [width]px; ' | replace: '[width]', section.settings[border_bottom_setting_id]
- if row == 'top'
- assign style = style | append: '--border-bottom-width-mobile: [width]px; ' | replace: '[width]', section.settings.border_width
- endif
- %}
- {% capture content %}
- {% render 'header-row',
- row: row,
- order: order,
- settings: section.settings,
- first: first,
- logo: logo,
- menu: menu,
- actions: actions,
- localization: localization_markup,
- search: search,
- drawer_search: drawer_search
- %}
- {% endcapture %}
- {% assign content = content | strip %}
- {% if content != blank %}
- <div
- class="{{ class | strip }}"
- ref="headerRowTop"
- {%- if style != blank -%}
- style="{{ style | strip }}"
- {%- endif -%}
- >
- <div class="header__columns spacing-style">
- {{ content }}
- </div>
- </div>
- {% endif %}
- {% endfor %}
- {% if navigation_bar != blank %}
- <div class="header__row header__navigation-bar-row color-{{ section.settings.color_scheme_bottom }}">
- {{ navigation_bar }}
- </div>
- {% endif %}
- </header-component>
- <script
- src="{{ 'header.js' | asset_url }}"
- type="module"
- ></script>
- {% stylesheet %}
- #header-component .header__navigation-bar-row,
- #header-component .header__row--bottom {
- background-color: transparent !important;
- }
- .header-menu .menu-list__submenu,
- .mega-menu__list {
- background: #58595b !important;
- }
- #header-component .header__underlay-open {
- background: linear-gradient(
- #1a1a1a 0 var(--top-row-height),
- #58595b var(--top-row-height) 100%
- ) !important;
- }
- .header-menu .menu-list__submenu {
- width: 100vw !important;
- left: 50% !important;
- right: 50% !important;
- margin-left: -50vw !important;
- margin-right: -50vw !important;
- }
- @media screen and (max-width: 749px) {
- .header__row--bottom,
- .header__navigation-bar-row,
- .mobile\:hidden {
- display: none !important;
- }
- }
- body {
- --header-height: 60px;
- --header-group-height: var(--header-height);
- --transparent-header-offset-boolean: 0;
- }
- .header {
- --header-padding: var(--padding-sm);
- --font-paragraph--line-height: 1;
- --header-content-transition-timing: 0s;
- display: block;
- contain: layout style;
- background: transparent;
- a,
- .button,
- .button-secondary,
- .header-actions__action {
- transition: color var(--header-content-transition-timing), border-color var(--header-content-transition-timing);
- }
- }
- #header-component :is(.header-menu, .dropdown-localization) {
- display: none;
- }
- @media screen and (min-width: 750px) {
- #header-component[data-menu-style='menu'] :is(.header-menu, .dropdown-localization) {
- display: flex;
- }
- }
- #header-component[data-menu-style='drawer'] .header__column {
- display: contents;
- }
- @media screen and (min-width: 750px) {
- #header-component[data-menu-style='menu'] .header__navigation-bar-row {
- display: none;
- }
- }
- .header[transparent] {
- --language-button-background-color: transparent;
- --language-button-border-color: transparent;
- --header-content-transition-timing: calc(var(--submenu-animation-speed) - var(--animation-speed-fast))
- var(--animation-speed-fast) var(--ease-out-cubic);
- --closed-underlay-height: 0px;
- --header-logo-display: none;
- --header-logo-inverse-display: block;
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- z-index: var(--layer-overlay);
- &[transparent='not-sticky'][data-sticky-state='active'],
- &:has(.menu-list__link:not([aria-haspopup]):hover) {
- --header-logo-display: unset;
- --header-logo-inverse-display: unset;
- --color-foreground: inherit;
- --color-foreground-rgb: inherit;
- --color-background: inherit;
- --color-background-rgb: inherit;
- --color-border: inherit;
- --color-border-rgb: inherit;
- --closed-underlay-height: 100%;
- }
- &:not([data-sticky-state='active']):not(:has(.menu-list__link:is(:hover, [aria-expanded='true']))) .header__row {
- --color-foreground: inherit;
- --color-foreground-rgb: inherit;
- --color-border: inherit;
- --color-border-rgb: inherit;
- --color-primary-button-background: inherit;
- --color-primary-button-text: inherit;
- }
- &:has(.mega-menu__list:hover),
- &:has(.menu-list__link:is(:hover, [aria-expanded='true'])),
- &:has(.menu-list__list-item[slot='overflow'] .menu-list__link:is(:hover, [aria-expanded='true'])) {
- --header-logo-display: unset;
- --header-logo-inverse-display: unset;
- --color-foreground: inherit;
- --color-foreground-rgb: inherit;
- --color-background: inherit;
- --color-background-rgb: inherit;
- --color-border: inherit;
- --color-border-rgb: inherit;
- --header-content-transition-timing: var(--submenu-animation-speed) var(--ease-out-cubic);
- }
- }
- [data-transparent-color-scheme='top']:hover .header__row--top,
- [data-transparent-color-scheme='top']:focus-within .header__row--top,
- [data-transparent-color-scheme='both']:hover .header__row--top,
- [data-transparent-color-scheme='both']:focus-within .header__row--top {
- --color-foreground: inherit;
- --color-foreground-rgb: inherit;
- --color-border: inherit;
- --color-border-rgb: inherit;
- --color-primary-button-background: inherit;
- --color-primary-button-text: inherit;
- }
- [data-transparent-color-scheme='bottom']:hover .header__row--bottom,
- [data-transparent-color-scheme='bottom']:focus-within .header__row--bottom,
- [data-transparent-color-scheme='both']:hover .header__row--bottom,
- [data-transparent-color-scheme='both']:focus-within .header__row--bottom {
- --color-foreground: inherit;
- --color-foreground-rgb: inherit;
- --color-border: inherit;
- --color-border-rgb: inherit;
- --color-primary-button-background: inherit;
- --color-primary-button-text: inherit;
- }
- .header-section {
- position: relative;
- z-index: var(--layer-heightened);
- }
- #header-component {
- --submenu-height: 0px;
- --full-open-header-height: 0px;
- }
- #header-group:has(#header-component[sticky]) {
- display: contents;
- }
- .header-section:has(> #header-component[sticky='always']),
- .header-section:has(> #header-component[sticky='scroll-up'][data-sticky-state='active']) {
- position: sticky;
- top: -1px;
- z-index: var(--layer-sticky);
- }
- .header[data-sticky-state] {
- transition: opacity var(--animation-speed) var(--animation-easing);
- opacity: 1;
- }
- .header[data-sticky-state='active'] {
- view-transition-name: sticky-header;
- }
- :active-view-transition-type(empty-cart-drawer) {
- .header[data-sticky-state='active'] {
- view-transition-name: none;
- }
- }
- .header[data-sticky-state='idle'] {
- opacity: 0;
- }
- .header__underlay {
- position: absolute;
- inset: 0;
- }
- .header__underlay-closed {
- height: var(--closed-underlay-height, 100%);
- z-index: var(--layer-lowest);
- background: linear-gradient(
- var(--color-scheme-top-row) 0 var(--top-row-height),
- var(--color-scheme-bottom-row) var(--top-row-height) var(--header-height)
- );
- transition: height var(--animation-speed-slow) var(--ease-out-cubic);
- }
- .header__underlay-open {
- height: var(--full-open-header-height);
- background: linear-gradient(
- var(--color-scheme-top-row) 0 var(--top-row-height),
- var(--color-scheme-bottom-row) var(--top-row-height) var(--header-height),
- var(--color-submenu) var(--header-height) 100%
- );
- transition: height var(--submenu-animation-speed) var(--ease-out-cubic);
- }
- .header__underlay-open::after {
- content: '';
- position: absolute;
- inset: 0;
- box-shadow: var(--shadow-popover);
- clip-path: inset(var(--header-height) 0 -100px 0);
- transition: height var(--submenu-animation-speed) var(--ease-out-cubic);
- }
- [data-transparent-color-scheme='top']:hover,
- [data-transparent-color-scheme='top']:focus-within,
- [data-transparent-color-scheme='both']:hover,
- [data-transparent-color-scheme='both']:focus-within {
- :is(.header__underlay-open, .header__underlay-closed) {
- --color-scheme-top-row: var(--color-background);
- }
- }
- [data-transparent-color-scheme='bottom']:hover,
- [data-transparent-color-scheme='bottom']:focus-within,
- [data-transparent-color-scheme='both']:hover,
- [data-transparent-color-scheme='both']:focus-within {
- :is(.header__underlay-open, .header__underlay-closed) {
- --color-scheme-bottom-row: var(--color-background);
- }
- }
- [data-submenu-overlap-bottom-row] {
- .header__underlay-open {
- background: linear-gradient(
- var(--color-scheme-top-row) 0 var(--top-row-height),
- var(--color-submenu) var(--top-row-height) 100%
- );
- }
- .header__row--bottom {
- z-index: var(--layer-lowest);
- }
- }
- .header__row {
- --color-account-icon: var(--color-foreground);
- position: relative;
- background-color: transparent;
- &:has(.mega-menu__list:hover),
- &:has(.menu-list__link[aria-haspopup]:is(:hover, [aria-expanded='true'])),
- &:has(.menu-list__list-item[slot='overflow'] .menu-list__link:is(:hover, [aria-expanded='true'])) {
- z-index: var(--layer-heightened);
- }
- }
- .header__row--top:not(.divider--page-width),
- .header__row--top.divider--page-width .header__columns,
- .header__row--bottom {
- border-bottom: var(--border-bottom-width) solid var(--color-border);
- }
- @media screen and (max-width: 749px) {
- .header__row--top:not(.divider--page-width),
- .header__row--top.divider--page-width .header__columns {
- border-bottom-width: var(--border-bottom-width-mobile);
- }
- }
- #header-component[data-menu-style='drawer'] .header__row--top:not(.divider--page-width),
- #header-component[data-menu-style='drawer'] .header__row--top.divider--page-width .header__columns {
- border-bottom-width: var(--border-bottom-width-mobile);
- }
- .header__row.divider--page-width:not(.section--page-width) .header__columns {
- @media screen and (min-width: 750px) {
- padding-inline-start: 0;
- padding-inline-end: 0;
- margin-inline-start: var(--page-margin);
- margin-inline-end: var(--page-margin);
- }
- }
- .header__column {
- display: flex;
- align-items: center;
- @media screen and (max-width: 749px) {
- display: contents;
- }
- }
- .header__column--left,
- .header__column--center {
- gap: var(--gap-xl);
- grid-area: left;
- }
- .header__column--center {
- justify-content: center;
- grid-area: center;
- header-menu:only-child .overflow-menu::part(list) {
- justify-content: center;
- }
- }
- .header__column--right {
- gap: var(--gap-xl);
- justify-content: flex-end;
- grid-area: right;
- .overflow-menu::part(list) {
- justify-content: flex-end;
- }
- }
- .header__columns {
- --header-left: 1fr;
- --header-center: auto;
- --header-right: 1fr;
- --header-template-columns: var(--header-left) var(--header-center) var(--header-right);
- --header-mobile-bookend: 44px;
- display: grid;
- grid-template-areas: 'left center right';
- grid-gap: var(--gap-xl);
- grid-template-columns: var(--header-template-columns);
- &:has(.header__column--center header-menu) {
- --header-center: auto;
- --header-left: minmax(max-content, 1fr);
- --header-right: minmax(max-content, 1fr);
- }
- &:where(:not(:has(.header__column--center))) {
- @media screen and (min-width: 750px) {
- --header-template-columns: var(--header-left) var(--header-right);
- grid-template-areas: 'left right';
- }
- &:has(.header__column--right header-menu) {
- --header-right: auto;
- --header-left: minmax(max-content, 1fr);
- }
- &:has(.header__column--left header-menu) {
- --header-left: auto;
- --header-right: minmax(max-content, 1fr);
- }
- }
- @media screen and (max-width: 749px) {
- --header-template-columns: var(--header-mobile-bookend) var(--header-mobile-bookend) 1fr
- var(--header-mobile-bookend) var(--header-mobile-bookend);
- grid-template-areas: 'leftA leftB center rightA rightB';
- grid-column: span 3;
- column-gap: 0;
- align-items: center;
- padding-block: 0;
- padding-inline: 0 var(--padding-3xs);
- .header-logo {
- grid-area: center;
- }
- &:not(:has(header-actions)) .search-action {
- grid-area: leftB;
- }
- &:not(:has(shopify-account)) .search-action {
- grid-area: rightA;
- }
- .search-action {
- grid-area: leftB;
- }
- header-actions {
- grid-area: rightB;
- }
- }
- }
- #header-component[data-menu-style='drawer'] .header__columns {
- --header-template-columns: var(--header-mobile-bookend) var(--header-mobile-bookend) 1fr
- var(--header-mobile-bookend) var(--header-mobile-bookend);
- grid-template-areas: 'leftA leftB center rightA rightB';
- grid-column: span 3;
- column-gap: 0;
- align-items: center;
- padding-block: 0;
- padding-inline: 0 var(--padding-3xs);
- .header-logo {
- grid-area: center;
- }
- &:not(:has(header-actions)) .search-action {
- grid-area: leftB;
- }
- &:not(:has(shopify-account)) .search-action {
- grid-area: rightA;
- }
- .search-action {
- grid-area: leftB;
- }
- header-actions {
- grid-area: rightB;
- }
- }
- .header__columns:not(:has(.header__column)) {
- grid-template-columns: 1fr;
- }
- @media (hover: hover) {
- .header__column:has(header-menu:hover),
- .header__column:has(.header-actions__action:hover),
- .header__column:has(.header__icon--menu:hover) {
- header-menu:not(:hover),
- .header-actions__action:not(:hover),
- .header__icon--menu:not(:hover) {
- opacity: var(--opacity-subdued-text);
- transition: opacity var(--animation-speed) var(--animation-easing);
- }
- }
- }
- header-menu,
- .header-actions__action,
- .header__icon--menu {
- transition: opacity var(--animation-speed) var(--animation-easing);
- }
- .header-actions__action {
- --button-color: var(--color-foreground);
- color: var(--button-color);
- cursor: pointer;
- display: flex;
- justify-content: center;
- &:hover {
- --button-color: var(--color-foreground);
- }
- }
- .header-actions__action:not(.account-button) .svg-wrapper {
- height: var(--button-size);
- width: var(--button-size);
- }
- .header-actions__action:not(.account-button) svg {
- width: var(--icon-size-md);
- height: var(--icon-size-md);
- }
- .header:has(#Details-menu-drawer-container[open]) {
- contain: style;
- }
- .header.header--compact {
- --header-padding: var(--padding-2xs);
- }
- .header__columns {
- --padding-block-start: var(--header-padding);
- --padding-block-end: var(--header-padding);
- }
- .header:not(.header--compact) .header__row--bottom {
- --header-padding: var(--padding-xs);
- }
- .header--collapse-row-paddings {
- .header__row--top .header__columns {
- --padding-block-end: 0px;
- }
- .header__row--bottom .header__columns {
- --padding-block-start: 0px;
- }
- }
- .header-section:has(.header[transparent]) + .shopify-section {
- margin-top: var(--header-height);
- }
- main > .shopify-section:first-child .section:not(.disable-section-top-offset) {
- &.spacing-style,
- .spacing-style {
- --section-top-offset: calc(var(--header-height) * var(--transparent-header-offset-boolean));
- :is(.spacing-style, .inherit-spacing) {
- --section-top-offset: 0px;
- }
- }
- .sticky-content {
- margin-top: calc(var(--header-height) * var(--transparent-header-offset-boolean) * -1);
- }
- }
- .header-menu .menu-list__submenu {
- content-visibility: auto;
- contain-intrinsic-size: 0px 500px;
- }
- .header-menu details[open] .menu-list__submenu,
- .header-menu .menu-list__submenu[data-active],
- .header-menu .menu-list__list-item[slot='overflow'] .menu-list__submenu {
- content-visibility: visible;
- }
- @starting-style {
- .localization-wrapper:not([hidden]) {
- translate: 0 20px;
- opacity: 0;
- }
- }
- dropdown-localization-component {
- position: relative;
- background-color: transparent;
- }
- dropdown-localization-component .country-filter {
- position: relative;
- padding: 8px;
- }
- dropdown-localization-component .country-filter__input {
- border: none;
- }
- dropdown-localization-component .localization-form__list-item {
- margin-inline: 8px;
- }
- dropdown-localization-component .localization-wrapper {
- box-shadow: var(--shadow-popover);
- border: var(--style-border-popover);
- background-color: var(--color-background);
- max-height: 27.5rem;
- position: absolute;
- top: calc(100% + 10px);
- z-index: calc(var(--layer-header-menu) + 1);
- }
- dropdown-localization-component .localization-wrapper.right-bound {
- right: 0;
- left: unset;
- }
- dropdown-localization-component .localization-wrapper.left-bound {
- left: -8px;
- right: unset;
- }
- dropdown-localization-component .language-selector.language-selector {
- padding: 10px 8px 10px 16px;
- }
- dropdown-localization-component .localization-form__currency {
- width: max-content;
- opacity: 0;
- visibility: hidden;
- transition: none;
- }
- dropdown-localization-component .localization-form__select:hover {
- background-color: rgb(var(--color-primary-hover-rgb) / var(--opacity-8));
- }
- dropdown-localization-component
- :is(
- .localization-form__list-item:hover,
- .localization-form__list-item[aria-selected='true'],
- .localization-form__list-item[aria-current='true']
- )
- .localization-form__currency {
- opacity: 1;
- color: var(--color-foreground-muted);
- transition: opacity var(--animation-speed-slow) var(--animation-easing);
- visibility: visible;
- }
- .dropdown-localization .language-selector:where(:not(.top-shadow)) {
- font-weight: var(--menu-top-level-font-weight);
- }
- .dropdown-localization:not(dropdown-localization-component) .language-selector {
- font-family: var(--menu-localization-font);
- font-size: var(--menu-localization-font-size);
- }
- @media screen and (min-width: 750px) {
- .header__columns:has(.header__column--right .mgr-custom-search-wrapper) {
- --header-left: auto !important;
- --header-right: 1fr !important;
- grid-template-columns: auto 1fr auto !important;
- }
- .header__column--right {
- display: flex !important;
- width: 100% !important;
- gap: var(--gap-xl);
- }
- .mgr-custom-search-wrapper {
- flex: 1 1 auto !important;
- max-width: 750px !important;
- margin-right: auto !important;
- }
- .desktop-only-search.predictive-search {
- width: 100% !important;
- min-width: 200px !important;
- }
- }
- {% endstylesheet %}
- {% unless request.design_mode %}
- <script type="module">
- import { hydrate } from '@theme/section-hydration';
- const url = new URL(window.location.href);
- url.searchParams.delete('page');
- hydrate('{{ section.id }}', url);
- </script>
- {% endunless %}
- {% schema %}
- {
- "name": "t:names.header",
- "tag": "header",
- "class": "header-section",
- "settings": [
- {
- "type": "header",
- "content": "t:content.logo"
- },
- {
- "type": "select",
- "id": "logo_position",
- "label": "t:settings.position",
- "options": [
- {
- "value": "left",
- "label": "t:options.left"
- },
- {
- "value": "center",
- "label": "t:options.center"
- },
- {
- "value": "right",
- "label": "t:options.right"
- }
- ],
- "default": "center"
- },
- {
- "type": "header",
- "content": "t:content.menu"
- },
- {
- "type": "select",
- "id": "menu_position",
- "label": "t:settings.position",
- "options": [
- {
- "value": "left",
- "label": "t:options.left"
- },
- {
- "value": "center",
- "label": "t:options.center"
- },
- {
- "value": "right",
- "label": "t:options.right"
- }
- ],
- "default": "left"
- },
- {
- "type": "select",
- "id": "menu_row",
- "label": "t:settings.row",
- "options": [
- {
- "value": "top",
- "label": "t:options.top"
- },
- {
- "value": "bottom",
- "label": "t:options.bottom"
- }
- ],
- "default": "top"
- },
- {
- "type": "header",
- "content": "t:content.customer_account"
- },
- {
- "type": "paragraph",
- "content": "t:content.manage_customer_accounts"
- },
- {
- "type": "link_list",
- "id": "customer_account_menu",
- "label": "t:settings.menu",
- "default": "customer-account-main-menu"
- },
- {
- "type": "header",
- "content": "t:content.search"
- },
- {
- "type": "checkbox",
- "id": "show_search",
- "label": "t:settings.search_icon",
- "default": true
- },
- {
- "type": "select",
- "id": "search_position",
- "label": "t:settings.search_position",
- "options": [
- {
- "value": "left",
- "label": "t:options.left"
- },
- {
- "value": "right",
- "label": "t:options.right"
- }
- ],
- "default": "right",
- "visible_if": "{{ section.settings.show_search }}"
- },
- {
- "type": "select",
- "id": "search_row",
- "label": "t:settings.search_row",
- "options": [
- {
- "value": "top",
- "label": "t:options.top"
- },
- {
- "value": "bottom",
- "label": "t:options.bottom"
- }
- ],
- "default": "top",
- "visible_if": "{{ section.settings.show_search }}"
- },
- {
- "type": "header",
- "content": "t:content.localization"
- },
- {
- "type": "checkbox",
- "id": "show_country",
- "label": "t:settings.country_region",
- "info": "t:info.manage_countries_regions",
- "default": true
- },
- {
- "type": "checkbox",
- "id": "country_selector_style",
- "label": "t:settings.flag",
- "default": true,
- "visible_if": "{{ section.settings.show_country }}"
- },
- {
- "type": "checkbox",
- "id": "show_language",
- "label": "t:settings.language_selector",
- "info": "t:info.manage_languages",
- "default": true
- },
- {
- "type": "select",
- "id": "localization_font",
- "label": "t:settings.font",
- "options": [
- {
- "value": "heading",
- "label": "t:options.heading"
- },
- {
- "value": "subheading",
- "label": "t:options.subheading"
- },
- {
- "value": "body",
- "label": "t:options.body"
- },
- {
- "value": "accent",
- "label": "t:options.accent"
- }
- ],
- "default": "heading",
- "visible_if": "{{ section.settings.show_country or section.settings.show_language }}"
- },
- {
- "type": "select",
- "id": "localization_font_size",
- "label": "t:settings.size",
- "options": [
- {
- "value": "0.625rem",
- "label": "10px"
- },
- {
- "value": "0.75rem",
- "label": "12px"
- },
- {
- "value": "0.875rem",
- "label": "14px"
- },
- {
- "value": "1rem",
- "label": "16px"
- },
- {
- "value": "1.125rem",
- "label": "18px"
- }
- ],
- "default": "1rem"
- },
- {
- "type": "select",
- "id": "localization_position",
- "label": "t:settings.position",
- "options": [
- {
- "value": "left",
- "label": "t:options.left"
- },
- {
- "value": "right",
- "label": "t:options.right"
- }
- ],
- "default": "right",
- "visible_if": "{{ section.settings.show_country or section.settings.show_language }}"
- },
- {
- "type": "select",
- "id": "localization_row",
- "label": "t:settings.row",
- "options": [
- {
- "value": "top",
- "label": "t:options.top"
- },
- {
- "value": "bottom",
- "label": "t:options.bottom"
- }
- ],
- "default": "top",
- "visible_if": "{{ section.settings.show_country or section.settings.show_language }}"
- },
- {
- "type": "header",
- "content": "t:content.appearance"
- },
- {
- "type": "select",
- "id": "section_width",
- "label": "t:settings.width",
- "options": [
- {
- "value": "page-width",
- "label": "t:options.page"
- },
- {
- "value": "full-width",
- "label": "t:options.full"
- }
- ]
- },
- {
- "type": "select",
- "id": "section_height",
- "label": "t:settings.height",
- "options": [
- {
- "value": "compact",
- "label": "t:options.compact"
- },
- {
- "value": "standard",
- "label": "t:options.standard"
- }
- ],
- "default": "standard"
- },
- {
- "type": "select",
- "id": "enable_sticky_header",
- "label": "t:settings.sticky_header",
- "options": [
- {
- "value": "always",
- "label": "t:options.always"
- },
- {
- "value": "scroll-up",
- "label": "t:options.on_scroll_up"
- },
- {
- "value": "never",
- "label": "t:options.never"
- }
- ],
- "default": "always"
- },
- {
- "type": "range",
- "id": "divider_width",
- "label": "t:settings.divider_thickness",
- "min": 0,
- "max": 5,
- "step": 0.5,
- "unit": "px",
- "default": 0,
- "visible_if": "{{ section.settings.menu_row == 'bottom' or section.settings.localization_row == 'bottom' or section.settings.search_row == 'bottom' }}"
- },
- {
- "type": "select",
- "id": "divider_size",
- "label": "t:settings.divider_width",
- "options": [
- {
- "value": "page-width",
- "label": "t:options.page"
- },
- {
- "value": "full-width",
- "label": "t:options.full"
- }
- ],
- "visible_if": "{{ section.settings.divider_width > 0 and section.settings.menu_row == 'bottom' or section.settings.localization_row == 'bottom' or section.settings.search_row == 'bottom' }}"
- },
- {
- "type": "range",
- "id": "border_width",
- "label": "t:settings.border_width",
- "min": 0,
- "max": 5,
- "step": 0.5,
- "unit": "px",
- "default": 0
- },
- {
- "type": "header",
- "content": "t:content.utilities"
- },
- {
- "type": "select",
- "id": "actions_display_style",
- "label": "t:settings.actions_display_style",
- "info": "t:info.actions_display_style",
- "options": [
- {
- "value": "icon",
- "label": "t:options.icons"
- },
- {
- "value": "text",
- "label": "t:options.text"
- }
- ],
- "default": "icon"
- },
- {
- "type": "select",
- "id": "actions_font_size",
- "label": "t:settings.size",
- "options": [
- {
- "value": "0.75rem",
- "label": "12px"
- },
- {
- "value": "0.875rem",
- "label": "14px"
- },
- {
- "value": "1rem",
- "label": "16px"
- },
- {
- "value": "1.125rem",
- "label": "18px"
- }
- ],
- "default": "0.875rem",
- "visible_if": "{{ section.settings.actions_display_style == 'text' }}"
- },
- {
- "type": "select",
- "id": "actions_font",
- "label": "t:settings.font",
- "options": [
- {
- "value": "heading",
- "label": "t:options.heading"
- },
- {
- "value": "subheading",
- "label": "t:options.subheading"
- },
- {
- "value": "body",
- "label": "t:options.body"
- },
- {
- "value": "accent",
- "label": "t:options.accent"
- }
- ],
- "default": "body",
- "visible_if": "{{ section.settings.actions_display_style == 'text' }}"
- },
- {
- "type": "select",
- "id": "actions_text_case",
- "label": "t:settings.case",
- "options": [
- {
- "value": "none",
- "label": "t:options.default"
- },
- {
- "value": "uppercase",
- "label": "t:options.uppercase"
- }
- ],
- "default": "none",
- "visible_if": "{{ section.settings.actions_display_style == 'text' }}"
- },
- {
- "type": "header",
- "content": "t:content.colors"
- },
- {
- "type": "color_scheme",
- "id": "color_scheme_top",
- "label": "t:settings.default",
- "default": "primary"
- },
- {
- "type": "color_scheme",
- "id": "color_scheme_bottom",
- "label": "t:settings.bottom_row",
- "default": "primary",
- "visible_if": "{{ section.settings.menu_row == 'bottom' or section.settings.localization_row == 'bottom' or section.settings.search_row == 'bottom' }}"
- },
- {
- "type": "color_scheme",
- "id": "color_scheme_transparent",
- "label": "t:settings.inverse",
- "default": "primary",
- "visible_if": "{{ section.settings.enable_transparent_header_home or section.settings.enable_transparent_header_product or section.settings.enable_transparent_header_collection }}"
- },
- {
- "type": "header",
- "content": "t:content.home_page"
- },
- {
- "type": "checkbox",
- "id": "enable_transparent_header_home",
- "label": "t:settings.transparent_background",
- "default": false
- },
- {
- "type": "select",
- "id": "home_color_scheme",
- "label": "t:settings.color_scheme",
- "options": [
- {
- "value": "default",
- "label": "t:options.default"
- },
- {
- "value": "inverse",
- "label": "t:options.inverse"
- }
- ],
- "default": "default",
- "visible_if": "{{ section.settings.enable_transparent_header_home }}"
- },
- {
- "type": "header",
- "content": "t:content.product_page"
- },
- {
- "type": "checkbox",
- "id": "enable_transparent_header_product",
- "label": "t:settings.transparent_background",
- "default": false
- },
- {
- "type": "select",
- "id": "product_color_scheme",
- "label": "t:settings.color_scheme",
- "options": [
- {
- "value": "default",
- "label": "t:options.default"
- },
- {
- "value": "inverse",
- "label": "t:options.inverse"
- }
- ],
- "default": "default",
- "visible_if": "{{ section.settings.enable_transparent_header_product }}"
- },
- {
- "type": "header",
- "content": "t:content.collection_page"
- },
- {
- "type": "checkbox",
- "id": "enable_transparent_header_collection",
- "label": "t:settings.transparent_background",
- "default": false
- },
- {
- "type": "select",
- "id": "collection_color_scheme",
- "label": "t:settings.color_scheme",
- "options": [
- {
- "value": "default",
- "label": "t:options.default"
- },
- {
- "value": "inverse",
- "label": "t:options.inverse"
- }
- ],
- "default": "default",
- "visible_if": "{{ section.settings.enable_transparent_header_collection }}"
- }
- ],
- "presets": []
- }
- {% endschema %}
Advertisement
Add Comment
Please, Sign In to add comment