[ADD] theme 14.0
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
// This file is for compatibility since saas-10 web_editor refactoring.
|
||||
// As a fix to work properly in the editor, some classes have been renamed.
|
||||
// To allow a smooth transition, old classes alias are created here.
|
||||
|
||||
@mixin bg-compatibility-mixin($bg, $color) {
|
||||
background-color: $bg;
|
||||
color: $color;
|
||||
.text-muted {
|
||||
color: rgba($color, 0.4);
|
||||
}
|
||||
}
|
||||
|
||||
.black { @include bg-compatibility-mixin($black, gray('600')); }
|
||||
.darkgray { @include bg-compatibility-mixin(gray('800'), $white); }
|
||||
.gray { @include bg-compatibility-mixin(gray('700'), $white); }
|
||||
.lightgray { @include bg-compatibility-mixin(gray('200'), gray('700')); }
|
||||
.white { @include bg-compatibility-mixin($white, gray('700')); }
|
||||
@@ -0,0 +1,28 @@
|
||||
// This file is for compatibility since saas-10 web_editor refactoring.
|
||||
// As a fix to work properly in the editor, some classes have been renamed.
|
||||
// To allow a smooth transition, old classes alias are created here.
|
||||
|
||||
// Define new theme variables in case the user changes its theme
|
||||
$gray-light-light: gray('200');
|
||||
$gray-light-dark: gray('600');
|
||||
$gray-dark-light: gray('700');
|
||||
$gray-dark-dark: gray('900');
|
||||
$gray-darkest: gray('900');
|
||||
|
||||
body .color-black { color: $black; }
|
||||
body .color-white { color: $white; }
|
||||
body .color-gray-lighter { color: gray('200'); }
|
||||
body .color-gray-light-light { color: $gray-light-light; }
|
||||
body .color-gray-light { color: gray('600'); }
|
||||
body .color-gray-light-dark { color: $gray-light-dark; }
|
||||
body .color-gray { color: gray('700'); }
|
||||
body .color-gray-dark-light { color: $gray-dark-light; }
|
||||
body .color-gray-dark { color: gray('900'); }
|
||||
body .color-gray-dark-dark { color: $gray-dark-dark; }
|
||||
body .color-gray-darker { color: gray('900'); }
|
||||
body .color-gray-darkest { color: $gray-darkest; }
|
||||
body .color-alpha { color: o-color('alpha'); }
|
||||
body .color-beta { color: o-color('beta'); }
|
||||
body .color-gamma { color: o-color('gamma'); }
|
||||
body .color-delta { color: o-color('delta'); }
|
||||
body .color-epsilon { color: o-color('epsilon'); }
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
@mixin carousel-indicators($bottom, $bottom-sm) {
|
||||
bottom: $bottom;
|
||||
li {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border-color: gray('900');
|
||||
margin: 0;
|
||||
&:hover {
|
||||
border-color: o-color('alpha');
|
||||
}
|
||||
&.active {
|
||||
background-color: o-color('alpha');
|
||||
border-color: o-color('alpha');
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
@include media-breakpoint-down(md) {
|
||||
bottom: $bottom-sm;
|
||||
}
|
||||
}
|
||||
|
||||
$s-banner-2-background-position: 50% 50%;
|
||||
$s-banner-2-content-margin: 0;
|
||||
|
||||
$s-banner-3-carosel-control-color: rgba(0, 0, 0, 0);
|
||||
$s-banner-3-carosel-control-height: 100%;
|
||||
$s-banner-3-padding: 130px;
|
||||
$s-banner-3-fa-color: o-color('gamma');
|
||||
$s-banner-3-carousel-height: 500px;
|
||||
$s-banner-3-text-shadow: 1px 1px 11px rgba(0, 0, 0, 0.86);
|
||||
$s-banner-3-hero-bg-color: o-color('alpha');
|
||||
$s-banner-3-indicators-visible: hidden;
|
||||
$s-banner-3-h1-size: 80px;
|
||||
$s-banner-3-h2-size: 40px;
|
||||
$s-banner-3-h1-mobile-font-size: 50px;
|
||||
|
||||
@mixin s-banner-3-col-center-hook {};
|
||||
@mixin s-banner-3-row-hook {};
|
||||
@mixin s-banner-3-carousel-control-hook {};
|
||||
@mixin s-banner-3-carousel-control-right-hook {};
|
||||
@mixin s-banner-3-carousel-control-left-hook {};
|
||||
|
||||
$s-text-big-picture-padding: 50px 0;
|
||||
$s-text-big-picture-text-align: left;
|
||||
|
||||
@mixin s-text-big-picture-hero-hook {};
|
||||
@mixin s-big-picture-text-hero-hook {};
|
||||
|
||||
$s-big-picture-text-padding: 50px 0;
|
||||
$s-big-picture-text-align: left;
|
||||
|
||||
@mixin s-big-picture-text-hero-hook {};
|
||||
@mixin s-big-picture-row-hook {};
|
||||
|
||||
$s-cubes-big-cube-min-height: 600px;
|
||||
|
||||
$s-products-carousel-carousel-control-color: rgba(0, 0, 0, 0);
|
||||
$s-products-carousel-carousel-icon-color: o-color('gamma') !default;
|
||||
|
||||
$s-timeline-company-color: null;
|
||||
$s-timeline-color: if(variable-exists(color-wind), $color-wind, #F7F7F7);
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,9 @@
|
||||
/**
|
||||
* Fonts which are not google fonts and thus need to be served by Odoo directly.
|
||||
* Ideally, using google fonts is always better !
|
||||
*
|
||||
* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
* ! Please triple check Licence before to add new font !
|
||||
* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
*/
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,3 @@
|
||||
$o-color-palette-number: 2;
|
||||
$o-theme-color-palette-number: 2;
|
||||
$o-gray-color-palette-number: 2;
|
||||
@@ -0,0 +1,3 @@
|
||||
$o-color-palette-number: 3;
|
||||
$o-theme-color-palette-number: 3;
|
||||
$o-gray-color-palette-number: 3;
|
||||
@@ -0,0 +1,3 @@
|
||||
$o-color-palette-number: 4;
|
||||
$o-theme-color-palette-number: 4;
|
||||
$o-gray-color-palette-number: 4;
|
||||
@@ -0,0 +1,3 @@
|
||||
$o-color-palette-number: 5;
|
||||
$o-theme-color-palette-number: 5;
|
||||
$o-gray-color-palette-number: 5;
|
||||
@@ -0,0 +1,3 @@
|
||||
$o-color-palette-number: 6;
|
||||
$o-theme-color-palette-number: 6;
|
||||
$o-gray-color-palette-number: 6;
|
||||
@@ -0,0 +1,3 @@
|
||||
$o-color-palette-number: 7;
|
||||
$o-theme-color-palette-number: 7;
|
||||
$o-gray-color-palette-number: 7;
|
||||
@@ -0,0 +1,3 @@
|
||||
$o-color-palette-number: 8;
|
||||
$o-theme-color-palette-number: 8;
|
||||
$o-gray-color-palette-number: 8;
|
||||
@@ -0,0 +1,3 @@
|
||||
$o-color-palette-number: 9;
|
||||
$o-theme-color-palette-number: 9;
|
||||
$o-gray-color-palette-number: 9;
|
||||
@@ -0,0 +1,5 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// s_medias_list
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
$s-medias-list-bg-color-main: null; // Default to BS color
|
||||
Reference in New Issue
Block a user