Last active
April 12, 2017 16:28
-
-
Save reynish/c7b120925e5017fb4d074e03cb1dcad8 to your computer and use it in GitHub Desktop.
stickies
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
| .aui-header { | |
| background: goldenrod !important; | |
| color: #000 !important; | |
| } | |
| .aui-header a.active, | |
| .aui-header a:focus, | |
| .aui-header a:hover, | |
| .aui-header a:active { | |
| background: hsla(0,0%,0%,.5) !important; | |
| color: #FFF !important; | |
| } | |
| #ghx-header {} | |
| #ghx-view-selector h1 { | |
| font-size: 1rem !important; | |
| } | |
| .ghx-column h2 { | |
| font-size: 2rem !important; | |
| } | |
| .ghx-column { | |
| background: transparent !important; | |
| } | |
| .ghx-heading * { | |
| font-size: 2rem !important; | |
| } | |
| .ghx-type img { | |
| width: 2.5rem !important; | |
| height: 2.5rem !important; | |
| } | |
| .js-issue { | |
| margin: 2rem; | |
| box-shadow: .2rem .2rem 0 hsla(0,0%,20%,.25) !important; | |
| background: goldenrod !important; | |
| font-size: 2rem !important; | |
| } | |
| .ghx-key a, | |
| .ghx-summary { | |
| color: #000 !important; | |
| } | |
| .ghx-avatar img { | |
| width: 4rem !important; | |
| height: 4rem !important; | |
| } | |
| .ghx-end { | |
| background: transparent !important; | |
| box-shadow: none !important; | |
| } | |
| .ghx-end .aui-badge { | |
| font-size: 1rem !important; | |
| } |
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 stickies | |
| // @namespace https://gist.githubusercontent.com/reynish/c7b120925e5017fb4d074e03cb1dcad8 | |
| // @updateURL https://gist.githubusercontent.com/reynish/c7b120925e5017fb4d074e03cb1dcad8/raw/jira-stickies.js | |
| // @downloadURL https://gist.githubusercontent.com/reynish/c7b120925e5017fb4d074e03cb1dcad8/raw/jira-stickies.js | |
| // @version 0.93 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://issues-solace.uk.cambridgeconsultants.com/* | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { | |
| 'use-strict'; | |
| // Create the <style> tag | |
| var link = document.createElement("link"); | |
| link.rel = 'stylesheet'; | |
| link.type = 'text/css'; | |
| link.href = 'https://gist.githack.com/reynish/c7b120925e5017fb4d074e03cb1dcad8/raw/jira-stickes.css'; | |
| document.head.appendChild(link); | |
| console.debug('Wrote <link />') | |
| console.debug(link); | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment