Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fluffysquirrels/5799b66ee81e7b77c7a738fc64b3a0d4 to your computer and use it in GitHub Desktop.
Save fluffysquirrels/5799b66ee81e7b77c7a738fc64b3a0d4 to your computer and use it in GitHub Desktop.
GitHub checks increase height Greasemonkey script
// ==UserScript==
// @name GitHub statuses increase height
// @version 1
// @grant none
// @match https://github.com/*
// ==/UserScript==
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle('.merge-status-list { max-height: 700px !important; }');
addGlobalStyle('.dropdown-menu.status-checks-dropdown { max-width: 1000px !important; width: 1000px !important; } ');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment