reddit light header

By lazyttrick Last update Jan 13, 2009 — Installed 83 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0
// ==UserScript==
// @name          reddit light header
// @namespace     http://userstyles.org
// @description	  reddit light header
// @author        lazyttrick
// @homepage      http://userstyles.org/styles/11913
// @include       http://www.reddit.com/*
// @include       https://www.reddit.com/*
// @include       http://*.www.reddit.com/*
// @include       https://*.www.reddit.com/*
// ==/UserScript==
(function() {
var css = "@namespace url(http://www.w3.org/1999/xhtml); .drop-choices { background-color:#CEE3F8 !important; border:0px !important; padding-left: 2px !important; } .dropdown.srdrop .selected { color:#336699 !important; } #sr-header-area { text-transform:none !important; border-bottom: 0px !important; } #sr-more-link { background-color:#EFF7FF !important; color:#749EC9 !important; } #sr-header-area { background-color: #CEE3F8 !important; } #sr-bar a{ color:#336699 !important ; } #sr-bar .separator { color:#CEE3F8 !important; }";
if (typeof GM_addStyle != "undefined") {
	GM_addStyle(css);
} else if (typeof addStyle != "undefined") {
	addStyle(css);
} else {
	var heads = document.getElementsByTagName("head");
	if (heads.length > 0) {
		var node = document.createElement("style");
		node.type = "text/css";
		node.appendChild(document.createTextNode(css));
		heads[0].appendChild(node); 
	}
}
})();