Skip to content

Instantly share code, notes, and snippets.

@benjaminplee
Created April 29, 2011 19:48
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 benjaminplee/948909 to your computer and use it in GitHub Desktop.
Save benjaminplee/948909 to your computer and use it in GitHub Desktop.
jira greenhopper kanban fix greasemonkey
// ==UserScript==
// @name Better List View
// @namespace http://asolutions.com
// @include https://jira.asolutions.com/secure/TaskBoard.jspa*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js
// ==/UserScript==
$('.gh-issue-corner, .gh-issue-type, .item-name, .item-summary, .gh-breadcrumbs, .command-bar').hide();
$('.gh-issue, .gh-issue-inner').css('height', 'auto');
$('.item-header').css('min-height', '0');
$('#stalker').css('padding', '0');
var flags = jQuery('.gh-icon-flag');
var flag_parents = flags.parents('.gh-issue-inner');
flag_parents.css('background', '#25D500').css('color', 'white')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment