Skip to content

Instantly share code, notes, and snippets.

@b-ryan
Created September 16, 2013 14:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save b-ryan/6581577 to your computer and use it in GitHub Desktop.
Save b-ryan/6581577 to your computer and use it in GitHub Desktop.
Tampermonkey script to widen the trello modal
// ==UserScript==
// @name Widen Trello modal
// @namespace http://use.i.E.your.homepage/
// @version 0.1
// @description enter something useful
// @match https://trello.com/*
// @copyright 2013+, Buck Ryan
// ==/UserScript==
$('.window').hover(function() {
$('.window').css({'left': '20%', 'width': '60%'});
$('.window-main-col').css({'width': '75%'});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment