The issue has been closed
open a commit stream which contains greyed-out commits, like

hover the first commit to get it into the foreground and click the "X" for the CI status:

the checks panel is hidden behind the greyed-out commits
occured on google chrome canary 85.0.4150.0 with refined github 20.5.21

Why are the greyed-out merge commits in your case collapsed. We don't collapse them, we only change their opacity (source).
Disable other extensions to see if they might be interfering with commits listing.
(Example URL to test: https://github.com/substack/tape/commits/master)
posted by notlmn almost 5 years ago
Why are the greyed-out merge commits in your case collapsed. We don't collapse them, we only change their opacity (source).
tried disabling other extensions, but it seems only refined github is the cause.
posted by staabm almost 5 years ago
collapsing might be a github native feature, when commit messages are "long enough"
posted by staabm almost 5 years ago
We do collapse them in the “dim bots” feature. Disable it if you use bots
posted by fregante almost 5 years ago
But yeah we need to drop overflow:hidden
once it uncollapses to avoid the CI panel being clipped
posted by fregante almost 5 years ago
posted by yakov116 almost 5 years ago 
The overflow is required during the animation or else the content will be outside the box. That code simply drops the overflow: hidden
posted by fregante almost 5 years ago
@fregante Would a possible solution to this issue be to listen for the end of the transition, catch that event and just remove the overflow attribute with JavaScript?
If so, I would like to try to implement that in this case :)
posted by tanettrimas almost 5 years ago
I think this can be done with transition delays, no js needed
posted by fregante almost 5 years ago
I can try to fix that if no one else suddenly volunteers :)
posted by tanettrimas almost 5 years ago