Skip to content

Instantly share code, notes, and snippets.

@avescodes
Created April 1, 2010 20:00
Show Gist options
  • Save avescodes/352294 to your computer and use it in GitHub Desktop.
Save avescodes/352294 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Scrumworks Story Text Fix
// @namespace http://cdebiz005:8080/
// @description Darken that fricken text up
// @include http://cdebiz005:8080/*
// // ==/UserScript==
(function () {
// Some JS I stole from the internet
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('#pbiinfo input, #pbiinfo div { color: #000; }');
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment