From 2be9f1ef6c2df2ecf0eebe5a039e8029d8d151cd Mon Sep 17 00:00:00 2001 From: dann-merlin <55287004+dann-merlin@users.noreply.github.com> Date: Sat, 1 Mar 2025 21:12:59 +0000 Subject: [PATCH] Fixed an issue that would prevent the media menu from going fully transparent. (#796) The menu-items-section box of the media menu was not transparent by default. Usually it is fully shadowed by its child "menu-content". The color and tint of the can be configured by the user. However, because the menu-items-section box behind the card had a solid color, it was impossible to configure a transparent card. Co-authored-by: Merlin Sievers Co-authored-by: Jas Singh --- src/scss/style/menus/media.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/src/scss/style/menus/media.scss b/src/scss/style/menus/media.scss index b2bcf4b..950b641 100644 --- a/src/scss/style/menus/media.scss +++ b/src/scss/style/menus/media.scss @@ -17,6 +17,7 @@ } .menu-items-section { + background: none; border-radius: $bar-menus-card_radius; padding: 0em; }