diff --git a/js/thread-watcher.js b/js/thread-watcher.js index 52b8142e..625e95e0 100644 --- a/js/thread-watcher.js +++ b/js/thread-watcher.js @@ -40,6 +40,7 @@ watchlist.render = function(reset) { $('#watchlist').append(threads.join('')); } else { //If the watchlist has not yet been rendered, create it. + var menuStyle = getComputedStyle($('.boardlist')[0]); $('form[name="post"]').before( $('
'+ '
'+ @@ -47,10 +48,7 @@ watchlist.render = function(reset) { '[Clear Ghosts]'+ '
'+ threads.join('')+ - '
').css({ - background: $('.reply').css('background'), - borderColor : $('.reply').css('border-color') - })); + '').css("background-color", menuStyle.backgroundColor).css("border", menuStyle.borderBottomWidth+" "+menuStyle.borderBottomStyle+" "+menuStyle.borderBottomColor)); } return this; };