mirror of
https://github.com/odoo/design-themes.git
synced 2025-10-07 01:18:52 +07:00
1e6f937fce
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>
111 lines
3.1 KiB
SCSS
111 lines
3.1 KiB
SCSS
//------------------------------------------------------------------------------
|
|
// Fonts
|
|
//------------------------------------------------------------------------------
|
|
|
|
$o-theme-h1-font-size-multiplier: (25 / 12);
|
|
$o-theme-h2-font-size-multiplier: (18 / 12);
|
|
$o-theme-h3-font-size-multiplier: (16 / 12);
|
|
$o-theme-h4-font-size-multiplier: (14 / 12);
|
|
$o-theme-h5-font-size-multiplier: 1;
|
|
$o-theme-h6-font-size-multiplier: 1;
|
|
|
|
$o-theme-font-configs: (
|
|
'Heebo': (
|
|
'family': ('Heebo', sans-serif),
|
|
'url': 'Heebo:300,300i,400,400i,700,700i',
|
|
),
|
|
'Rajdhani': (
|
|
'family': ('Rajdhani', sans-serif),
|
|
'url': 'Rajdhani:300,300i,400,400i,700,700i',
|
|
),
|
|
'Raleway': (
|
|
'family': ('Raleway', sans-serif),
|
|
'url': 'Raleway:300,300i,400,400i,700,700i',
|
|
),
|
|
'Roboto': (
|
|
'family': ('Roboto', sans-serif),
|
|
'url': 'Roboto:300,300i,400,400i,700,700i',
|
|
),
|
|
'Source Sans Pro': (
|
|
'family': ('Source Sans Pro', sans-serif),
|
|
'url': 'Source+Sans+Pro:300,300i,400,400i,700,700i',
|
|
),
|
|
'Ubuntu': (
|
|
'family': ('Ubuntu', sans-serif),
|
|
'url': 'Ubuntu:300,300i,400,400i,700,700i',
|
|
),
|
|
'Poppins': (
|
|
'family': ('Poppins', sans-serif),
|
|
'url': 'Poppins:300,300i,400,400i,700,700i',
|
|
),
|
|
'Questrial': (
|
|
'family': ('Questrial', sans-serif),
|
|
'url': 'Questrial:300,300i,400,400i,700,700i',
|
|
),
|
|
'Muli': (
|
|
'family': ('Muli', sans-serif),
|
|
'url': 'Muli:300,300i,400,400i,700,700i',
|
|
),
|
|
'Anton': (
|
|
'family': ('Anton', sans-serif),
|
|
'url': 'Anton:300,300i,400,400i,700,700i',
|
|
),
|
|
'Lato': (
|
|
'family': ('Lato', sans-serif),
|
|
'url': 'Lato:300,300i,400,400i,700,700i',
|
|
),
|
|
'Oswald': (
|
|
'family': ('Oswald', sans-serif),
|
|
'url': 'Oswald:300,300i,400,400i,700,700i',
|
|
),
|
|
);
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Website customizations
|
|
//------------------------------------------------------------------------------
|
|
|
|
$o-website-values-palettes: (
|
|
(
|
|
'color-palettes-name': 'odoo-experts-1',
|
|
'logo-height': (52 / 16) * 1rem,
|
|
'fixed-logo-height': (52 / 16) * 1rem,
|
|
'header-font-size': (18 / 16) * 1rem,
|
|
'btn-border-radius': 0,
|
|
'btn-border-radius-lg': 0,
|
|
'btn-border-radius-sm': 0,
|
|
'font': 'Lato',
|
|
'headings-font': 'Oswald',
|
|
'navbar-font': 'Oswald',
|
|
'buttons-font': 'Lato',
|
|
'header-template': 'Contact',
|
|
'footer-template': 'contact',
|
|
'header-links-style': 'border-bottom',
|
|
),
|
|
);
|
|
|
|
$o-palette-priority-prefix: 'odoo-experts';
|
|
|
|
$o-color-palettes-compatibility-indexes: (
|
|
1: 'odoo-experts-1',
|
|
2: 'odoo-experts-2',
|
|
3: 'odoo-experts-3',
|
|
4: 'odoo-experts-4',
|
|
5: 'generic-1',
|
|
6: 'generic-2',
|
|
7: 'generic-3',
|
|
8: 'generic-4',
|
|
9: 'generic-5',
|
|
10: 'generic-6',
|
|
11: 'generic-7',
|
|
12: 'generic-8',
|
|
13: 'generic-9',
|
|
14: 'generic-10',
|
|
15: 'generic-11',
|
|
16: 'generic-12',
|
|
17: 'generic-13',
|
|
18: 'generic-14',
|
|
19: 'generic-15',
|
|
20: 'generic-16',
|
|
21: 'generic-17',
|
|
);
|