NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name V1 Task cards float // @namespace https://orw-bsd-vone-01.wv.mentorg.com/ // @version 1.0 // @description Makes task carsd float // @author Michal Wojtowicz // @match https://orw-bsd-vone-01.wv.mentorg.com/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; var styles = '.task-card { float: left }'; styles += '.board.TaskBoard button.cell-add { clear: both; }'; var css = document.createElement('style'); css.type = 'text/css'; css.appendChild(document.createTextNode(styles)); document.getElementsByTagName("head")[0].appendChild(css); })();