Created
March 9, 2021 19:51
-
-
Save otherwiseguy/a486f9f5ee3321f1161d23b9e11ba546 to your computer and use it in GitHub Desktop.
Remove the width limitation on Launchpad comments
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 Wider Lauchpad Comments | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Make launchpad comments as wide as possible! | |
// @author Terry Wilson <[email protected]> | |
// @match https://bugs.launchpad.net/*/+bug/* | |
// @grant GM_addStyle | |
// @run-at document-start | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
GM_addStyle(".yui3-editable_text-text p {max-width: none}"); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment