Created
September 27, 2019 12:14
-
-
Save jordanwalsh23/1eb660ee1f8aa260e5d0d587bece2cee to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Trello-Horizontal-Plugin | |
| // @namespace http://www.heyshmu.com/ | |
| // @version 0.1 | |
| // @description Converts Trello to a horizontal view | |
| // @author Jordan Walsh (info@heyshmu.com) | |
| // @match https://trello.com/* | |
| // @grant GM_addStyle | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; | |
| GM_addStyle('#board { overflow-y: scroll !important; }'); | |
| GM_addStyle('.list-wrapper { display: block !important; width: 100% !important; height: auto !important; margin: 0 0 15px 4px !important; }'); | |
| GM_addStyle('.list { display: block !important; overflow: scroll !important; }'); | |
| GM_addStyle('.list-cards { display: inline-flex !important; }'); | |
| GM_addStyle('.list-card { width: 250px !important; margin-right: 10px !important; }'); | |
| console.log('Trello-Horizontal-Plugin - Run Successfully'); | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment