diff --git a/config/theme.yml b/config/theme.yml index 4ab1fc749..daa3c2675 100644 --- a/config/theme.yml +++ b/config/theme.yml @@ -182,3 +182,5 @@ theme_settings: new-products: layout-left-column prices-drop: layout-left-column contact: layout-left-column + manufacturer: layout-left-column + supplier: layout-left-column \ No newline at end of file diff --git a/modules/productcomments/views/templates/hook/confirm-modal.tpl b/modules/productcomments/views/templates/hook/confirm-modal.tpl index 5beb32c87..cca85af99 100644 --- a/modules/productcomments/views/templates/hook/confirm-modal.tpl +++ b/modules/productcomments/views/templates/hook/confirm-modal.tpl @@ -38,10 +38,10 @@
{else} - + {l s='Sign in' d='Shop.Theme.Actions'} diff --git a/modules/ps_emailalerts/views/templates/front/mailalerts-account-line.tpl b/modules/ps_emailalerts/views/templates/front/mailalerts-account-line.tpl new file mode 100644 index 000000000..a7e3e838f --- /dev/null +++ b/modules/ps_emailalerts/views/templates/front/mailalerts-account-line.tpl @@ -0,0 +1,24 @@ +{** + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + *} +{$componentName = 'mailalerts-account-line'} + + diff --git a/modules/ps_emailalerts/views/templates/front/mailalerts-account.tpl b/modules/ps_emailalerts/views/templates/front/mailalerts-account.tpl new file mode 100644 index 000000000..18ebe5aee --- /dev/null +++ b/modules/ps_emailalerts/views/templates/front/mailalerts-account.tpl @@ -0,0 +1,21 @@ +{** + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + *} +{extends file='customer/page.tpl'} + +{block name='page_title'} + {l s='My alerts' d='Modules.Emailalerts.Shop'} +{/block} + +{block name='page_content'} + {if $mailAlerts} +{l s="Interested in this product? Drop us an email and we will let you know when it's available for order." d='Modules.Emailalerts.Shop'}
diff --git a/modules/ps_imageslider/views/templates/hook/slider.tpl b/modules/ps_imageslider/views/templates/hook/slider.tpl index 7c362dc88..f6806042b 100644 --- a/modules/ps_imageslider/views/templates/hook/slider.tpl +++ b/modules/ps_imageslider/views/templates/hook/slider.tpl @@ -4,43 +4,43 @@ *} {if $homeslider.slides} -+
{l s='Suppliers' d='Shop.Theme.Catalog'}
{/if} diff --git a/src/scss/custom/components/_index.scss b/src/scss/custom/components/_index.scss index d3d5a392f..99e610c82 100644 --- a/src/scss/custom/components/_index.scss +++ b/src/scss/custom/components/_index.scss @@ -15,3 +15,5 @@ @import "address"; @import "table-wrapper"; @import "product"; +@import "search-filters-modules"; +@import "mailalerts-account"; diff --git a/src/scss/custom/components/mailalerts-account/_index.scss b/src/scss/custom/components/mailalerts-account/_index.scss new file mode 100644 index 000000000..8d7bf337e --- /dev/null +++ b/src/scss/custom/components/mailalerts-account/_index.scss @@ -0,0 +1 @@ +@import "mailalerts-account"; diff --git a/src/scss/custom/components/mailalerts-account/_mailalerts-account.scss b/src/scss/custom/components/mailalerts-account/_mailalerts-account.scss new file mode 100644 index 000000000..2e95a89d9 --- /dev/null +++ b/src/scss/custom/components/mailalerts-account/_mailalerts-account.scss @@ -0,0 +1,29 @@ +$component-name: mailalerts-account-line; + +.#{$component-name} { + padding: 1rem; + border: var(--bs-border-width) solid var(--bs-border-color); + border-radius: var(--bs-border-radius-xl); + + &__product { + min-height: 54px; + + &__name { + font-size: 0.875rem; + font-weight: 600; + color: var(--bs-body-color); + } + + &__attributes { + font-size: 0.75rem; + color: var(--bs-body-color); + } + } + + &__remove { + position: absolute; + top: 0; + right: 0; + color: var(--bs-black); + } +} diff --git a/src/scss/custom/components/search-filters-modules/_index.scss b/src/scss/custom/components/search-filters-modules/_index.scss new file mode 100644 index 000000000..68258ff94 --- /dev/null +++ b/src/scss/custom/components/search-filters-modules/_index.scss @@ -0,0 +1 @@ +@import "search-filters-modules"; diff --git a/src/scss/custom/components/search-filters-modules/_search-filters-modules.scss b/src/scss/custom/components/search-filters-modules/_search-filters-modules.scss new file mode 100644 index 000000000..6b15a48b9 --- /dev/null +++ b/src/scss/custom/components/search-filters-modules/_search-filters-modules.scss @@ -0,0 +1,26 @@ +$component-name: search-filters-modules; + +.#{$component-name} { + padding-bottom: 1rem; + margin-bottom: 2rem; + border-bottom: var(--category-tree-border-bottom); + + &-title { + font-size: var(--category-tree-title-size); + font-weight: 600; + color: var(--category-tree-title-color); + } + + &__list { + margin-bottom: 0; + } + + &__item { + &__link { + display: block; + font-weight: 600; + line-height: 2rem; + color: var(--category-tree-title-color); + } + } +} diff --git a/src/scss/custom/components/search-filters/_search-filters.scss b/src/scss/custom/components/search-filters/_search-filters.scss index 3dc1f1a5e..c664affbb 100644 --- a/src/scss/custom/components/search-filters/_search-filters.scss +++ b/src/scss/custom/components/search-filters/_search-filters.scss @@ -1,6 +1,10 @@ $component-name: search-filters; .#{$component-name} { + padding-bottom: 1rem; + margin-bottom: 2rem; + border-bottom: var(--category-tree-border-bottom); + & &-title { font-size: var(--category-tree-title-size); font-weight: 600; diff --git a/templates/catalog/_partials/category-header.tpl b/templates/catalog/_partials/category-header.tpl index d256412f0..2548b5fbe 100644 --- a/templates/catalog/_partials/category-header.tpl +++ b/templates/catalog/_partials/category-header.tpl @@ -5,7 +5,7 @@