From 20c31ada105abfbc224c91d180e3c49255872d04 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#28 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 41d348557..a6b8d4836 100644 --- a/theme_beauty/static/src/scss/primary_variables.scss +++ b/theme_beauty/static/src/scss/primary_variables.scss @@ -133,7 +133,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 d29b2e2f8..5c3fb4e09 100644 --- a/theme_bookstore/static/src/scss/primary_variables.scss +++ b/theme_bookstore/static/src/scss/primary_variables.scss @@ -157,7 +157,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 eb0f47c88..043acc07e 100644 --- a/theme_odoo_experts/static/src/scss/primary_variables.scss +++ b/theme_odoo_experts/static/src/scss/primary_variables.scss @@ -133,7 +133,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', ),