Last active
January 11, 2016 20:06
-
-
Save stevenschobert/1351869de626848a0af1 to your computer and use it in GitHub Desktop.
Tampermonkey (http://tampermonkey.net) script to change JIRA header color to black
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name JIRA Header color | |
| // @namespace https://stevenschobert.com/ | |
| // @version 0.1 | |
| // @description Changes header color for JIRA. | |
| // @author Steven Schobert | |
| // @match https://ovenbits.atlassian.net/* | |
| // @grant GM_addStyle | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; | |
| if (/jira/i.test(document.body.id)) { | |
| GM_addStyle([ | |
| '.aui-header { background-color: #181818; }', | |
| '.aui-header .aui-button.aui-button-primary.aui-style { background-color: #525252; } ', | |
| '.aui-header .aui-nav .aui-button.aui-button-primary:hover { background-color: #757575; }', | |
| '.aui-header .aui-dropdown2-trigger:hover, .aui-header .aui-dropdown2-trigger:focus, .aui-header .aui-dropdown2-trigger.active { background-color: #525252; }', | |
| ].join('')); | |
| } | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment