Skip to content

Instantly share code, notes, and snippets.

@umurkontaci
Last active December 30, 2015 08:29
Show Gist options
  • Save umurkontaci/7803106 to your computer and use it in GitHub Desktop.
Save umurkontaci/7803106 to your computer and use it in GitHub Desktop.
Stackoverflow header is gray again!
// ==UserScript==
// @name Stackoverflow header color
// @namespace http://umurkontaci.com
// @version 0.1
// @description Stackoverflow header is gray again!
// @match http://tampermonkey.net/index.php?version=3.5.3630.77&ext=dhdg&updated=true#features
// @copyright MIT
// ==/UserScript==
!(function (d) {
var l = d.createElement('style');
l.innerText = '.topbar { background-color: #eee; !important }' +
'.topbar * { color: #777 !important; }' +
'.topbar .profile-me:hover, .topbar .topbar-icon:hover { background-color: #ddd !important ; }';
d.body.appendChild(l);
})(document);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment