// ==UserScript==
// @name Style
// @namespace fogbugz
// @description Make bug window larger
// @include https://*.fogbugz.com/default.asp?*
// ==/UserScript==
GM_addStyle("div.bugShadowBottom { width:75% ! important; }");GM_addStyle("#bugviewContainer,.buttonbar,#BugFields { width:100% ! important; }");
This script adds some style overrides to the top of every FogBugz page. It is the div.bugShadowBottom that drives the width, so to make it even wider, adjust that. The second style makes sure that the internal styles scale with the overall width.Update: Thanks to Adam V for pointing out the GM_addStyle function!
2 comments:
http://wiki.greasespot.net/GM_addStyle
Great script, thanks!
Perhaps you should post on Userscripts.org--there are several other FogBugz scripts there already.
Best regards,
Sam
Post a Comment