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 d73a5d06c0, 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.
This commit is contained in:
Sayam Samal
2025-09-09 16:12:15 +05:30
committed by Tim Abbott
parent f724ad7a33
commit fa154b675d

View File

@@ -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%);