From 1e6f937fce70ea2a8f42e4bb53cd03d091f276f6 Mon Sep 17 00:00:00 2001 From: qsm-odoo Date: Tue, 6 Jul 2021 09:31:39 +0000 Subject: [PATCH] [FIX] theme_*: use correct contact header SCSS variable The contact header scss variable value was written with an uppercase unlike other header scss variables. Unfortunately, fixing that typo is not stable-friendly (as people already using the template now saved that typo in their DB). Instead, we use that typo as default value for the related themes. Related to task-2368576 closes odoo/design-themes#32 X-original-commit: 20c31ada105abfbc224c91d180e3c49255872d04 Signed-off-by: Quentin Smetz (qsm) --- theme_beauty/static/src/scss/primary_variables.scss | 2 +- theme_bookstore/static/src/scss/primary_variables.scss | 2 +- theme_odoo_experts/static/src/scss/primary_variables.scss | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/theme_beauty/static/src/scss/primary_variables.scss b/theme_beauty/static/src/scss/primary_variables.scss index 3ee4d4c89..8a7dd3b1c 100644 --- a/theme_beauty/static/src/scss/primary_variables.scss +++ b/theme_beauty/static/src/scss/primary_variables.scss @@ -64,7 +64,7 @@ $o-website-values-palettes: ( 'headings-font': 'Questrial', 'navbar-font': 'Questrial', 'buttons-font': 'Questrial', - 'header-template': 'contact', + 'header-template': 'Contact', 'footer-template': 'default', 'header-links-style': 'outline', ), diff --git a/theme_bookstore/static/src/scss/primary_variables.scss b/theme_bookstore/static/src/scss/primary_variables.scss index e05516e5a..c37a9d537 100644 --- a/theme_bookstore/static/src/scss/primary_variables.scss +++ b/theme_bookstore/static/src/scss/primary_variables.scss @@ -67,7 +67,7 @@ $o-website-values-palettes: ( 'headings-font': 'Poppins', 'navbar-font': 'Poppins', 'buttons-font': 'Poppins', - 'header-template': 'contact', + 'header-template': 'Contact', 'footer-template': 'descriptive', 'header-links-style': 'border-bottom', ), diff --git a/theme_odoo_experts/static/src/scss/primary_variables.scss b/theme_odoo_experts/static/src/scss/primary_variables.scss index 572bc6513..92ca0fd36 100644 --- a/theme_odoo_experts/static/src/scss/primary_variables.scss +++ b/theme_odoo_experts/static/src/scss/primary_variables.scss @@ -77,7 +77,7 @@ $o-website-values-palettes: ( 'headings-font': 'Oswald', 'navbar-font': 'Oswald', 'buttons-font': 'Lato', - 'header-template': 'contact', + 'header-template': 'Contact', 'footer-template': 'contact', 'header-links-style': 'border-bottom', ),