Skip to content

Instantly share code, notes, and snippets.

@chrisclark
Forked from v-dimitrov/git.user.js
Created July 14, 2014 17:12
Show Gist options
  • Save chrisclark/aa4a46fe310dfbcfcc14 to your computer and use it in GitHub Desktop.
Save chrisclark/aa4a46fe310dfbcfcc14 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name GitHub Suppress Diffs
// @version 2013.10.29
// @namespace FET
// @description Suppress style.css
// @include http*://github.com/*
// ==/UserScript==
// Files to suppress:
suppressFiles([
"themes/eP/static/css/ui/stylesheets/app.css",
"themes/eP/static/css/ui/stylesheets/base/base.css",
"themes/eP/static/css/ui/stylesheets/static-pages/authentication.css",
"themes/eP/static/css/ui/stylesheets/static-pages/error-pages.css",
"themes/eP/static/css/ui/stylesheets/static-pages/seo-pages.css"
]);
// Call resize on the specified files:
function suppressFiles(path){
for (var url in path) {
resizeDiff(document.querySelector('.meta[data-path="' + path[url] + '"]').nextElementSibling);
}
}
// Resize the diff area in github:
function resizeDiff(obj) {
obj.style.height = "200px";
obj.style.overflow = "auto";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment