This is an automated email from the ASF dual-hosted git repository.
robin0716 pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/answer.git
The following commit(s) were added to refs/heads/dev by this push:
new 934f7cea fix: correct hover background color for dark theme in
reaction button
934f7cea is described below
commit 934f7cea9c56194633822607f463c147cb70f1f9
Author: hgaol <[email protected]>
AuthorDate: Thu Apr 3 10:22:01 2025 +0800
fix: correct hover background color for dark theme in reaction button
---
ui/src/pages/Questions/Detail/index.scss | 3 +++
1 file changed, 3 insertions(+)
diff --git a/ui/src/pages/Questions/Detail/index.scss
b/ui/src/pages/Questions/Detail/index.scss
index bbc42bc5..4b9eb622 100644
--- a/ui/src/pages/Questions/Detail/index.scss
+++ b/ui/src/pages/Questions/Detail/index.scss
@@ -24,6 +24,9 @@
border-color: transparent;
&:hover {
+ [data-bs-theme='dark'] & {
+ background-color: var(--bs-gray-800);
+ }
background-color: var(--bs-gray-100);
}