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:
+7
-2
@@ -209,8 +209,13 @@ html[data-theme="subtle-light"] .explore-cluster-count {
|
|||||||
color: #ffffff !important;
|
color: #ffffff !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
html[data-theme="subtle-light"] .explore-tag-word:hover {
|
html[data-theme="subtle-light"] .explore-tag-word::before {
|
||||||
background: #e8e2d6 !important;
|
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 {
|
html[data-theme="subtle-light"] .explore-spinner {
|
||||||
|
|||||||
@@ -4,8 +4,8 @@
|
|||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
|
||||||
"build": "tsc && vite build",
|
"build": "tsc && vite build",
|
||||||
|
"dev": "vite",
|
||||||
"preview": "vite preview",
|
"preview": "vite preview",
|
||||||
"typecheck": "tsc --noEmit"
|
"typecheck": "tsc --noEmit"
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user