From 59522be3eb1b82a959ba640e59bd1225f6ba8383 Mon Sep 17 00:00:00 2001 From: "Nasreddin Boulif (bon)" Date: Thu, 26 Aug 2021 12:40:38 +0000 Subject: [PATCH] [FIX] theme_common: Remove shadow style for header tags with light bg Steps to reproduce : - Install Website module and at step of selecting a website theme, choose Monglia (or install and activate theme manually after Website install) - Go to Website homepage and edit it - Add the `Three Columns` structure block then save Issue : The titles in cards are blurry. Issue can be reproduced on any theme that use the css function: `o-theme-cfa-header-shadows`. Solution : Remove shadow style for light background: bg-100, bg-200, bg-300, bg-400. opw-2627163 closes odoo/design-themes#492 Signed-off-by: Quentin Smetz (qsm) --- theme_common/static/src/scss/mixins.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theme_common/static/src/scss/mixins.scss b/theme_common/static/src/scss/mixins.scss index 24ec7a422..62f544595 100644 --- a/theme_common/static/src/scss/mixins.scss +++ b/theme_common/static/src/scss/mixins.scss @@ -263,7 +263,7 @@ } @mixin o-theme-cfa-header-shadows() { - .bg-100, .bg-200, .bg-300, .bg-400, .bg-500, .bg-600, .bg-700, .bg-800, .bg-900 { + .bg-500, .bg-600, .bg-700, .bg-800, .bg-900 { h1, h2, h3, h4, h5, h6 { text-shadow: 0px 2px 0px $black; }