修复 Action 作业步骤页面标题选中时滚动固定的高度问题

This commit is contained in:
lutinglt
2025-08-11 17:39:58 +08:00
parent fc4e6f43bb
commit 00eda68f00
2 changed files with 6 additions and 12 deletions

12
.github/release.md vendored
View File

@@ -1,21 +1,11 @@
## ✨ Feature ## ✨ Feature
- 支持自动颜色主题 (跟随系统)
- 支持亮色主题
- 支持柔和的暗色主题 (dark-dimmed)
## 🌈 Style ## 🌈 Style
#### 更符合 GitHub 风格 #### 更符合 GitHub 风格
- 同步查看文件内容时的代码高亮色 (由于词法分析器的差异和解析问题, 只能实现大概相似, 目前观察到在 TypeScript 下词法分析器表现非常糟糕)
## 🎈 Perf ## 🎈 Perf
- 优化差异对比的代码折叠/展开按钮的高度和动画效果
## 🐞 Fix ## 🐞 Fix
- 修复仓库页面与探索页面下仓库主题标签字重不一致的问题 - 修复 Action 作业步骤页面标题选中时滚动固定的高度问题
- 修复发布页面下的分支按钮点击时高度变化问题
- 修复首页/登录页/注册页下导航栏右侧按钮样式问题 #10

View File

@@ -203,7 +203,7 @@ export const actionViewRight = css`
.job-info-header { .job-info-header {
padding: 16px 12px 16px 24px; padding: 16px 12px 16px 24px;
height: auto; height: 80px;
.job-info-header-title { .job-info-header-title {
color: ${themeVars.github.fgColor.accent}; color: ${themeVars.github.fgColor.accent};
@@ -220,6 +220,10 @@ export const actionViewRight = css`
color: ${themeVars.color.console.fg.subtle}; color: ${themeVars.color.console.fg.subtle};
padding: 8px 10px; padding: 8px 10px;
&.selected {
top: 80px;
}
&.step-expandable:hover { &.step-expandable:hover {
color: ${themeVars.color.console.fg.subtle}; color: ${themeVars.color.console.fg.subtle};
} }