[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: 20c31ada10
Signed-off-by: Quentin Smetz (qsm) <qsm@odoo.com>
This commit is contained in:
qsm-odoo
2021-07-06 09:31:39 +00:00
parent 20cca57c52
commit 1e6f937fce
3 changed files with 3 additions and 3 deletions
@@ -64,7 +64,7 @@ $o-website-values-palettes: (
'headings-font': 'Questrial', 'headings-font': 'Questrial',
'navbar-font': 'Questrial', 'navbar-font': 'Questrial',
'buttons-font': 'Questrial', 'buttons-font': 'Questrial',
'header-template': 'contact', 'header-template': 'Contact',
'footer-template': 'default', 'footer-template': 'default',
'header-links-style': 'outline', 'header-links-style': 'outline',
), ),
@@ -67,7 +67,7 @@ $o-website-values-palettes: (
'headings-font': 'Poppins', 'headings-font': 'Poppins',
'navbar-font': 'Poppins', 'navbar-font': 'Poppins',
'buttons-font': 'Poppins', 'buttons-font': 'Poppins',
'header-template': 'contact', 'header-template': 'Contact',
'footer-template': 'descriptive', 'footer-template': 'descriptive',
'header-links-style': 'border-bottom', 'header-links-style': 'border-bottom',
), ),
@@ -77,7 +77,7 @@ $o-website-values-palettes: (
'headings-font': 'Oswald', 'headings-font': 'Oswald',
'navbar-font': 'Oswald', 'navbar-font': 'Oswald',
'buttons-font': 'Lato', 'buttons-font': 'Lato',
'header-template': 'contact', 'header-template': 'Contact',
'footer-template': 'contact', 'footer-template': 'contact',
'header-links-style': 'border-bottom', 'header-links-style': 'border-bottom',
), ),