[ADD] theme 14.0
|
After Width: | Height: | Size: 44 KiB |
|
After Width: | Height: | Size: 63 KiB |
|
After Width: | Height: | Size: 131 KiB |
|
After Width: | Height: | Size: 126 KiB |
|
After Width: | Height: | Size: 68 KiB |
|
After Width: | Height: | Size: 89 KiB |
|
After Width: | Height: | Size: 159 KiB |
|
After Width: | Height: | Size: 39 KiB |
|
After Width: | Height: | Size: 45 KiB |
|
After Width: | Height: | Size: 35 KiB |
|
After Width: | Height: | Size: 191 KiB |
|
After Width: | Height: | Size: 77 KiB |
|
After Width: | Height: | Size: 115 KiB |
|
After Width: | Height: | Size: 91 KiB |
|
After Width: | Height: | Size: 195 KiB |
|
After Width: | Height: | Size: 62 KiB |
|
After Width: | Height: | Size: 78 KiB |
|
After Width: | Height: | Size: 27 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 55 KiB |
|
After Width: | Height: | Size: 187 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 126 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 9.1 KiB |
|
After Width: | Height: | Size: 103 KiB |
|
After Width: | Height: | Size: 103 KiB |
|
After Width: | Height: | Size: 48 KiB |
@@ -0,0 +1,53 @@
|
||||
odoo.define("theme_orchid.tour.orchid", 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_image_text',
|
||||
name: 'Image - Text',
|
||||
},
|
||||
{
|
||||
id: 's_text_image',
|
||||
name: 'Text - Image',
|
||||
},
|
||||
{
|
||||
id: 's_three_columns',
|
||||
name: 'Columns',
|
||||
},
|
||||
{
|
||||
id: 's_quotes_carousel',
|
||||
name: 'Quotes',
|
||||
},
|
||||
{
|
||||
id: 's_call_to_action',
|
||||
name: 'Call to Action',
|
||||
},
|
||||
];
|
||||
|
||||
wTourUtils.registerThemeHomepageTour("orchid_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.clickOnSnippet(snippets[5]),
|
||||
wTourUtils.changeBackgroundColor(),
|
||||
wTourUtils.selectColorPalette(),
|
||||
wTourUtils.clickOnSave(),
|
||||
]);
|
||||
});
|
||||
@@ -0,0 +1,40 @@
|
||||
$s-banner-3-carousel-height: 500px;
|
||||
$s-banner-3-padding: 30px;
|
||||
$s-banner-3-h1-size: 50px;
|
||||
$s-banner-3-h2-size: 30px;
|
||||
|
||||
@mixin s-banner-3-row-hook {
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
height: auto;
|
||||
img {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@mixin s-banner-3-col-center-hook {
|
||||
text-align: left;
|
||||
width: 400px;
|
||||
height: auto;
|
||||
padding-bottom: 10px;
|
||||
margin-top: 100px;
|
||||
background-color: white;
|
||||
border: 15px solid rgba(255, 255, 255, .5);
|
||||
@include media-breakpoint-down(lg) {
|
||||
text-align: left !important;
|
||||
width: auto;
|
||||
margin-top: 0;
|
||||
}
|
||||
h1 {
|
||||
font-size: 40px;
|
||||
}
|
||||
h2 {
|
||||
font-size: 30px;
|
||||
}
|
||||
}
|
||||
@mixin s-banner-3-hook {
|
||||
border: 15px solid white;
|
||||
border-left-width: 50px;
|
||||
border-right-width: 50px;
|
||||
@include media-breakpoint-down(sm) {
|
||||
border-width: 10px;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,129 @@
|
||||
// Colors
|
||||
$o-color-palettes: (
|
||||
(
|
||||
'o-color-1': #a1a52f,
|
||||
'o-color-2': #66555c,
|
||||
'o-color-3': #f7f7f7,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #242327,
|
||||
|
||||
'footer': 4,
|
||||
'copyright': 4,
|
||||
),
|
||||
(
|
||||
'o-color-1': #679b96,
|
||||
'o-color-2': #345552,
|
||||
'o-color-3': #e9e9e9,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #1e222f,
|
||||
|
||||
'footer': 1,
|
||||
'copyright': 4,
|
||||
),
|
||||
(
|
||||
'o-color-1': #df699c,
|
||||
'o-color-2': #590046,
|
||||
'o-color-3': #dbe8ed,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #222222,
|
||||
|
||||
'footer': 1,
|
||||
'copyright': 4,
|
||||
),
|
||||
(
|
||||
'o-color-1': #b29964,
|
||||
'o-color-2': #62624c,
|
||||
'o-color-3': #f5f4f4,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #333333,
|
||||
|
||||
'footer': 1,
|
||||
'copyright': 4,
|
||||
),
|
||||
(
|
||||
'o-color-1': #1ad68f,
|
||||
'o-color-2': #2e2e2e,
|
||||
'o-color-3': #f7f7f7,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #000000,
|
||||
|
||||
'footer': 1,
|
||||
'copyright': 4,
|
||||
),
|
||||
(
|
||||
'o-color-1': #cfd744,
|
||||
'o-color-2': #3d504a,
|
||||
'o-color-3': #f0f1f1,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #112625,
|
||||
|
||||
'menu': 4,
|
||||
'footer': 4,
|
||||
'copyright': 5,
|
||||
),
|
||||
);
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// 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',
|
||||
),
|
||||
);
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Website customizations
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
$o-website-values-palettes: (
|
||||
(
|
||||
'font': 'Questrial',
|
||||
'headings-font': 'Questrial',
|
||||
'navbar-font': 'Questrial',
|
||||
'buttons-font': 'Questrial',
|
||||
'header-template': 'default',
|
||||
'footer-template': 'descriptive',
|
||||
),
|
||||
);
|
||||