Created
April 29, 2011 19:48
-
-
Save benjaminplee/948909 to your computer and use it in GitHub Desktop.
jira greenhopper kanban fix greasemonkey
This file contains 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 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