Skip to content

Instantly share code, notes, and snippets.

@otherwiseguy
Created March 9, 2021 19:51
Show Gist options
  • Save otherwiseguy/a486f9f5ee3321f1161d23b9e11ba546 to your computer and use it in GitHub Desktop.
Save otherwiseguy/a486f9f5ee3321f1161d23b9e11ba546 to your computer and use it in GitHub Desktop.
Remove the width limitation on Launchpad comments
// ==UserScript==
// @name Wider Lauchpad Comments
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Make launchpad comments as wide as possible!
// @author Terry Wilson <otherwiseguy@gmail.com>
// @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