mirror of
https://github.com/odoo/design-themes.git
synced 2025-10-07 01:18:52 +07:00
f244035809
Many themes were overriding the yiq threshold, thus having an impact on which of the dark or light text is used over a particuler background by default. This is a tricky value to change and only made some sense when the Odoo themes were defining their own color palettes. Now that all palettes can be used in all themes, it makes no sense to change the yiq threshold as it induces inconsistent behavior for a same palette used in different themes. Besides, leaving the value by default is most of the time what you want and when it is not entirely correct, the user has full control over the color combination text colors anyway. task-2655730 closes odoo/design-themes#506 Signed-off-by: Quentin Smetz (qsm) <qsm@odoo.com>
45 lines
1.5 KiB
SCSS
45 lines
1.5 KiB
SCSS
//------------------------------------------------------------------------------//
|
|
// Bootstrap
|
|
//------------------------------------------------------------------------------//
|
|
|
|
// Options
|
|
//
|
|
// Quickly modify global styling by enabling or disabling optional features.
|
|
|
|
$enable-shadows: true;
|
|
|
|
// Spacing
|
|
//
|
|
// Control the default styling of most Bootstrap elements by modifying these
|
|
// variables. Mostly focused on spacing.
|
|
// You can add more entries to the $spacers map, should you need more variation.
|
|
|
|
$spacer: 1.25rem !default;
|
|
|
|
// Components
|
|
//
|
|
// Define common padding and border radius sizes and more.
|
|
|
|
$border-radius: .375rem !default;
|
|
$border-radius-lg: .5rem !default;
|
|
$border-radius-sm: .25rem !default;
|
|
|
|
// Buttons + Forms
|
|
//
|
|
// Shared variables that are reassigned to `$input-` and `$btn-` specific variables.
|
|
|
|
$input-btn-focus-width: 0 !default;
|
|
$input-focus-border-color: o-color('primary') !default;
|
|
|
|
$btn-box-shadow: none !default;
|
|
|
|
$input-color: o-color('o-cc1-text') !default;
|
|
$input-placeholder-color: o-color('500') !default;
|
|
|
|
// Cards
|
|
|
|
$card-spacer-y: 1rem !default;
|
|
$card-spacer-x: 1.75rem !default;
|
|
$card-border-width: 0 !default;
|
|
$card-border-radius: $border-radius-lg !default;
|