fix: 优化数据库页面按钮交互样式

- 编辑和映射按钮添加 hover 颜色
- 优化翻页按钮过渡动画

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-07 14:28:25 +08:00
parent aae61ef27a
commit 2d8f0fa312
2 changed files with 10 additions and 6 deletions

View File

@@ -22,12 +22,16 @@
/* 图标按钮 */
.btn-icon {
@apply p-2 rounded-lg hover:bg-dark-600 transition-colors;
@apply p-2 rounded-lg transition-colors;
}
.btn-icon:hover {
@apply bg-dark-600;
}
/* 表格行 */
.table-row {
@apply border-b border-dark-600 hover:bg-dark-600/50 transition-colors;
@apply border-b border-dark-600;
}
/* 空状态(已不使用) */