We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e75b654 commit a03d597Copy full SHA for a03d597
web_src/css/repo.css
@@ -3075,8 +3075,12 @@ tbody.commit-list {
3075
}
3076
3077
.commit-status-header {
3078
- border: none !important; /* reset the default ".ui.attached.header" styles, to use the outer border */
3079
- margin: 0 !important;
+ /* reset the default ".ui.attached.header" styles, to use the outer border */
+ border: none !important;
3080
+ /* add a bottom border to make sure the there is always a divider between the header and list when the list is scrolling */
3081
+ border-bottom: 1px solid var(--color-secondary) !important;
3082
+ /* use negative margin to avoid the newly added border conflict with the list's top border */
3083
+ margin: 0 0 -1px 0 !important;
3084
3085
3086
.commit-status-list {
0 commit comments