NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Long epic names in zenhub // @license MIT // @copyright 2019, hughescr (https://openuserjs.org/users/hughescr) // @version 0.1 // @description Disable truncation of long epic names in ticket sidebar // @author You // @updateURL https://openuserjs.org/meta/hughescr/Long_epic_names_in_zenhub.meta.js // @downloadURL https://openuserjs.org/install/hughescr/Long_epic_names_in_zenhub.user.js // @include https://app.zenhub.com/* // @grant GM_addStyle // ==/UserScript== (function () { 'use strict'; GM_addStyle('.zhc-sidebar-epic-selector .zhc-sidebar-active-epics a { white-space: initial !important; }'); })();