Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save annervisser/cf7eb93b02e1113bf6644a0ac2a190be to your computer and use it in GitHub Desktop.
Save annervisser/cf7eb93b02e1113bf6644a0ac2a190be to your computer and use it in GitHub Desktop.
/** Apply styling only when refined github is disabled */
:root:not([refined-github]) {
.merge-status-list {
display: flex;
flex-direction: column;
}
/** Show successful checks after other checks */
.merge-status-item:has(.octicon-check) {
order: 1;
}
/** Show skipped checks after all other checks */
.merge-status-item:has(.octicon-skip) {
order: 2;
}
/** Keep sidebar in view when scrolling */
.Layout-sidebar > div {
position: sticky;
top: 50px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment