Skip to content

Instantly share code, notes, and snippets.

@eeroan
Created July 31, 2013 09:24
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 eeroan/6120668 to your computer and use it in GitHub Desktop.
Save eeroan/6120668 to your computer and use it in GitHub Desktop.
User script for Chrome. To install, save this file and drag it to window -> extensions Improve jira kanban board by setting max height and auto scroll for columns
// ==UserScript==
// @match http://jira.tallinkintra.net/secure/RapidBoard.jspa*
// ==/UserScript==
var link = document.createElement('style')
link.setAttribute('type', 'text/css')
link.innerHTML=[
'.ghx-parent-group {overflow-y:auto;overflow-x:hidden;max-height:500px;}',
'.ghx-columns .ghx-column {padding-bottom:0;}'].join('\n')
document.getElementsByTagName('head')[0].appendChild(link)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment