[ADD] theme 14.0

This commit is contained in:
Jeremy Kersten
2021-05-10 15:45:35 +02:00
commit cb1e3be3f8
2309 changed files with 55585 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 203 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 134 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 133 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

+50
View File
@@ -0,0 +1,50 @@
odoo.define("theme_kea.tour.kea", function (require) {
"use strict";
const core = require("web.core");
const _t = core._t;
const wTourUtils = require("website.tour_utils");
var tour = require("web_tour.tour");
const snippets = [
{
id: 's_cover',
name: 'Cover',
},
{
id: 's_picture',
name: 'Picture',
},
{
id: 's_image_text',
name: 'Image - Text',
},
{
id: 's_three_columns',
name: 'Columns',
},
{
id: 's_media_list',
name: 'Media List',
},
{
id: 's_references',
name: 'References',
},
];
wTourUtils.registerThemeHomepageTour("kea_tour", [
wTourUtils.dragNDrop(snippets[0]),
wTourUtils.clickOnText(snippets[0], 'h1'),
wTourUtils.goBackToBlocks(),
wTourUtils.dragNDrop(snippets[1]),
wTourUtils.dragNDrop(snippets[2]),
wTourUtils.dragNDrop(snippets[3]),
wTourUtils.clickOnSnippet(snippets[3]),
wTourUtils.changeOption('ContainerWidth', 'we-button-group.o_we_user_value_widget', _t('width')),
wTourUtils.goBackToBlocks(),
wTourUtils.dragNDrop(snippets[4]),
wTourUtils.dragNDrop(snippets[5]),
wTourUtils.clickOnSave(),
]);
});
@@ -0,0 +1,8 @@
$s-banner-parallax-padding: 0px;
@mixin s-banner-parallax-hero-bg-hook {
width: 100%;
text-align: center;
}
@mixin s-banner-parallax-row-hook {
vertical-align: bottom;
}
@@ -0,0 +1,8 @@
@mixin s-features-carousel-inner-hook {
.carousel-inner .row {
margin: 0 70px;
@include media-breakpoint-down(sm) {
margin: 0;
}
}
}
+13
View File
@@ -0,0 +1,13 @@
// Fonts
$headings-font-weight: 500 !default;
// Shadows
$box-shadow-sm: 0 0 .3125rem rgba(0,0,0,.25) !default;
$box-shadow: 0 0 .3125rem rgba(0,0,0,.25) !default;
$box-shadow-lg: 0 0 .3125rem rgba(0,0,0,.25) !default;
// Breadcrumbs
$breadcrumb-bg: o-color('white') !default;
@@ -0,0 +1,13 @@
$s-banner-3-carosel-control-color: rgba(0, 0, 0, 0);
$s-banner-3-padding: 15px;
$s-banner-3-fa-color: o-color('alpha');
@mixin s-banner-3-col-center-hook {
text-align: center;
width: 100%;
}
$s-big-picture-text-padding: 0;
$s-text-big-picture-padding: 0;
$s-timeline-company-color: $-gray-700;
@@ -0,0 +1,188 @@
//------------------------------------------------------------------------------
// Colors
//------------------------------------------------------------------------------
// Theme colors
// The system for this theme is particular to support somehow the old version.
// The alpha color is always white but primary is using beta (instead of alpha)
// and secondary is using alpha (white) (instead of beta). In the old system,
// this only applied to buttons though but we extended that to all components.
// Success, info, warning and error buttons are also customized with epsilon,
// gamma, delta and ... black colors (see theme.scss).
$o-theme-color-palettes: (
(
alpha: #ffffff,
beta: #dcdcdc,
gamma: #9c9b9b,
delta: #333333,
epsilon: #e4677f,
),
(
alpha: #c7d0d5,
beta: #93b1c6,
gamma: #ffffff,
delta: #556672,
epsilon: #ff7148,
),
(
alpha: #ebe3e0,
beta: #e3d6c6,
gamma: #ffffff,
delta: #333333,
epsilon: #f9a646,
),
(
alpha: #7ec2aa,
beta: #4ca8a1,
gamma: #ffffff,
delta: #556672,
epsilon: #f9a646,
),
(
alpha: #7f909a,
beta: #ed6639,
gamma: #ffffff,
delta: #333333,
epsilon: #385b9f,
),
(
alpha: #fcdf15,
beta: #0b99bc,
gamma: #ffffff,
delta: #3c3c3c,
epsilon: #d40e52,
),
);
// Grays
$-gray-700: lighten(#000, 33.5%);
$o-gray-color-palettes: ();
@each $-palette in $o-theme-color-palettes {
$o-gray-color-palettes: append($o-gray-color-palettes, (
'900': lighten(#000, 20%),
'700': $-gray-700,
'600': lighten(#000, 46.7%),
'300': #d4d4d4,
'200': lighten(#000, 85%),
));
}
// Colors
$o-color-palettes: (
(
'o-color-1': #e991a3,
'o-color-2': #575757,
'o-color-3': #f6f5f5,
'o-color-4': #ffffff,
'o-color-5': #333333,
'menu': 5,
'footer': 5,
'copyright': 5,
),
(
'o-color-1': #f7a58e,
'o-color-2': #4b6272,
'o-color-3': #ecf0f2,
'o-color-4': #ffffff,
'o-color-5': #374249,
'menu': 4,
'footer': 4,
'copyright': 4,
),
(
'o-color-1': #f9a646,
'o-color-2': #68635d,
'o-color-3': #f0efee,
'o-color-4': #ffffff,
'o-color-5': #333333,
'menu': 4,
'footer': 4,
'copyright': 4,
),
(
'o-color-1': #ed6639,
'o-color-2': #385b9f,
'o-color-3': #d5dee3,
'o-color-4': #ffffff,
'o-color-5': #333333,
'o-cc4-link': 'o-color-4',
'o-cc4-btn-primary': 'o-color-4',
'menu': 4,
'footer': 4,
'copyright': 4,
),
);
//------------------------------------------------------------------------------
// Fonts
//------------------------------------------------------------------------------
$o-theme-h1-font-size-multiplier: (36 / 12);
$o-theme-h2-font-size-multiplier: (30 / 12);
$o-theme-h3-font-size-multiplier: (24 / 12);
$o-theme-h4-font-size-multiplier: (18 / 12);
$o-theme-h5-font-size-multiplier: (14 / 12);
$o-theme-h6-font-size-multiplier: 1;
$o-theme-font-configs: (
'Spartan': (
'family': ('Spartan', sans-serif), // font update - SinKinSans -> Spartan
'url': 'Spartan:300,300i,400,400i,700,700i',
),
'Rajdhani': (
'family': ('Rajdhani', sans-serif),
'url': 'Rajdhani: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',
),
'Lato': (
'family': ('Lato', sans-serif),
'url': 'Lato:300,300i,400,400i,700,700i',
),
'Playfair Display': (
'family': ('Playfair Display', serif),
'url': 'Playfair+Display:300,300i,400,400i,700,700i',
),
'Lora': (
'family': ('Lora', serif),
'url': 'Lora:300,300i,400,400i,700,700i',
),
'Barlow Condensed': (
'family': ('Barlow Condensed', sans-serif),
'url': 'Barlow+Condensed:300,300i,400,400i,700,700i',
),
);
$o-website-values-palettes: (
(
'header-font-size': 1.25rem,
'logo-height': 3rem,
'fixed-logo-height': 3rem,
'font-size-base': .925rem,
'font': 'Roboto',
'headings-font': 'Barlow Condensed',
'navbar-font': 'Barlow Condensed',
'buttons-font': 'Barlow Condensed',
'link-underline': 'never',
'header-links-style': 'outline',
'btn-primary-outline': true,
'header-template': 'default',
'footer-template': 'call_to_action',
),
);