You definitely can! Just use this BugMonkey customization and plug in the page key for the WebPutty stylesheet you'd like to use:
name: WebPutty your FogBugz
description: Wires up your FogBugz to work with WebPutty.
author: Dane Bertram
version: 1.0.0.0
js:
var pageKey = 'your WebPutty page key goes here!';
var style = document.createElement('link');
style.rel = 'stylesheet';
style.type = 'text/css';
style.href = 'http://webputty.commondatastorage.googleapis.com/' + pageKey + '.css';
document.getElementsByTagName("head")[0].appendChild(style);
(function(w,d,k){if(w.location!=w.parent.location||w.location.search.indexOf('__preview_css__')>-1){var t=d.createElement('script');t.type='text/javascript';t.async=true;t.src='http://www.webputty.net/js/'+k;(d.body||d.documentElement).appendChild(t);}})(window,document,pageKey);
You can find the page key for a WebPutty stylesheet by:
- opening the editor for the stylesheet in WebPutty
- clicking on the "Embed" link at the top of the preview pane
- In the code WebPutty asks you to copy and paste you can find the page key near the end of the link tag's
href attribute:
<link rel="stylesheet" type="text/css" href="//webputty.commondatastorage.googleapis.com/[page key].css" />