Expands the "Checks" list on GitHub pull requests so that it does not scroll, always shows all checks.
GitHub PR checks-list noscroll by hawkeye.twolf
Details
Authorhawkeye.twolf
LicenseNo License
CategoryGitHub
Created
Updated
Size529 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name GitHub PR checks-list noscroll
@version 20231005.17.08
@namespace userstyles.world/user/hawkeye.twolf
@description Expands the "Checks" list on GitHub pull requests so that it does not scroll, always shows all checks.
@author hawkeye.twolf
@license No License
==/UserStyle== */
@-moz-document domain("github.com") {
.branch-action-item.open > .merge-status-list-wrapper > .merge-status-list,
.branch-action-item.open > .merge-status-list {
max-height: 100%;
}
}