fix: match tag cloud hover glow to dark mode in light theme

Replace the flat background hover override with a dark warm radial
gradient on the ::before pseudo-element, mirroring the same elliptical
glow effect used in dark mode.
This commit is contained in:
2026-06-29 16:50:40 +01:00
parent 5bc397af01
commit 8dbabc2d9e
2 changed files with 8 additions and 3 deletions
+7 -2
View File
@@ -209,8 +209,13 @@ html[data-theme="subtle-light"] .explore-cluster-count {
color: #ffffff !important;
}
html[data-theme="subtle-light"] .explore-tag-word:hover {
background: #e8e2d6 !important;
html[data-theme="subtle-light"] .explore-tag-word::before {
background: radial-gradient(
ellipse at center,
rgba(60, 50, 30, 0.13),
rgba(60, 50, 30, 0.05) 46%,
rgba(60, 50, 30, 0) 72%
) !important;
}
html[data-theme="subtle-light"] .explore-spinner {