Created
April 9, 2024 11:25
-
-
Save annervisser/cf7eb93b02e1113bf6644a0ac2a190be to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** 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