Files
design-themes/theme_anelusia/static/src/scss/bootstrap_overridden.scss
T
Benjamin Vray 5ce9cc6f2d [FIX] theme_*: fix breadcrumb color
*: anelusia, anelusia, enark, kiddo, loftspace, notes

- Install Website e-commerce.
- Select the "Kea" theme for your website.
- Go to the "/shop" page.
- Click on "Desks" category to go to the "/shop/category/desks-1" page.
- Click on edit to enter edit mode.
- Click on the "theme" tab.
- Change the website background color to "black".
- Bug: The breadcrumb has an ugly white background instead of no
background color, as in the "default" theme. Also, the "active"
breadcrumb item is hidden due to white text on a white background.

This commit removes the white background from the breadcrumb for all
themes that use it. This ensures the same appearance as other themes.

opw-4232082

closes odoo/design-themes#1017

X-original-commit: fe91239586
Signed-off-by: Serge Bayet (seba) <seba@odoo.com>
2024-11-22 07:47:20 +00:00

48 lines
1.7 KiB
SCSS

//------------------------------------------------------------------------------//
// Bootstrap
//------------------------------------------------------------------------------//
// 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: 0 !default;
$border-radius-lg: 0 !default;
$border-radius-sm: 0 !default;
$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;
// Fonts
//
// Font, line-height, and color for body text, headings, and more.
// stylelint-enable value-keyword-case
$font-weight-normal: if(o-website-value('font-number') == 4, 300, 500) !default;
$headings-font-weight: $o-theme-headings-font-weight !default;
// Dropdowns
//
// Dropdown menu container and contents.
$dropdown-border-radius: .25rem !default;
$dropdown-border-width: .0625rem !default;
$dropdown-box-shadow: 0 .375rem 1.75em rgba(o-color('black'), .175) !default;
// Badges
$badge-padding-y: .3125rem !default;
$badge-padding-x: .625rem !default;
$badge-border-radius: .625rem !default;