stickies
// ==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);
})();
.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;
}