feat(style): 添加用户卡片悬停效果
Discourse Theme / ci (push) Failing after 1s

- 为用户卡片添加背景色过渡动画
- 实现悬停时背景色变化效果
- 使用 CSS 变量保持主题一致性
- 优化用户体验的视觉反馈
This commit is contained in:
2026-02-26 14:44:18 +08:00
parent 241f251c3a
commit 1e2fc63ed1
+5
View File
@@ -68,6 +68,11 @@
position: relative;
padding: 16px 12px;
overflow: hidden;
transition: background-color 0.2s ease-in-out;
&:hover{
background-color: var(--accent-text-color);
}
}
.user-content{