From fa154b675dc6c793d5b151be248fcd11b34e822f Mon Sep 17 00:00:00 2001 From: Sayam Samal Date: Tue, 9 Sep 2025 16:12:15 +0530 Subject: [PATCH] dark_theme: Clean up feedback container styles. The feedback container doesn't have a border so it doesn't make sense to have a border color defined for the dark theme, and the hover color change on the `a` tag was an unintended side effect of commit d73a5d06c0e68d02822996be8bfa64253b788c93, which while correcting the hover effect on the typeaheads, also affected the link hover styles in the feedback container. This commit, due the reasons mentioned above, removes the entire CSS block related to the feedback container from web/styles/dark_theme.css. Fixes part of #35880. --- web/styles/dark_theme.css | 8 -------- 1 file changed, 8 deletions(-) diff --git a/web/styles/dark_theme.css b/web/styles/dark_theme.css index 3cbe078418..afaf43ba12 100644 --- a/web/styles/dark_theme.css +++ b/web/styles/dark_theme.css @@ -398,14 +398,6 @@ background-color: hsl(0deg 0% 0% / 20%); } - #feedback_container { - border-color: hsl(0deg 0% 0% / 50%); - - & a:hover { - color: hsl(0deg 0% 100%); - } - } - /* Search highlight used in both topics and rendered_markdown */ .highlight { background-color: hsl(51deg 100% 23%);