Skip to content

Instantly share code, notes, and snippets.

@andreasisaak
Created November 11, 2021 22:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreasisaak/fabc12fbfe7f68a9202dfd079f024c03 to your computer and use it in GitHub Desktop.
Save andreasisaak/fabc12fbfe7f68a9202dfd079f024c03 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Jira Detail Styling
// @namespace https://github.com/andreasisaak
// @match https://*.atlassian.net/browse/*
// @description Jira Detail Styling
// @version 1
// @author Andreas Isaak <andy.jared@googlemail.com>
// ==/UserScript==
(function() {
'use strict';
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle(
'#aui-flag-container { top: 171px !important; }'
);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment