From 2f438e7bab6f7c29fa69a59c4b71957a7fe44806 Mon Sep 17 00:00:00 2001 From: Mayhem Date: Wed, 27 Apr 2011 23:47:56 +0200 Subject: [PATCH] Fix watcher's disgusting padding. --- 4chan_x.js | 8 ++++++-- script.coffee | 8 ++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/4chan_x.js b/4chan_x.js index 18f5079c0..ad04d3cae 100644 --- a/4chan_x.js +++ b/4chan_x.js @@ -2232,12 +2232,16 @@ #watcher {\ position: absolute;\ }\ + #watcher > div {\ + padding-right: 5px;\ + padding-left: 5px;\ + }\ #watcher > div.move {\ text-decoration: underline;\ - padding: 5px 5px 0 5px;\ + padding-top: 5px;\ }\ #watcher > div:last-child {\ - padding: 0 5px 5px 5px;\ + padding-bottom: 5px;\ }\ \ body.noselect {\ diff --git a/script.coffee b/script.coffee index 366389f94..bdd23cc2e 100644 --- a/script.coffee +++ b/script.coffee @@ -1752,12 +1752,16 @@ main = #watcher { position: absolute; } + #watcher > div { + padding-right: 5px; + padding-left: 5px; + } #watcher > div.move { text-decoration: underline; - padding: 5px 5px 0 5px; + padding-top: 5px; } #watcher > div:last-child { - padding: 0 5px 5px 5px; + padding-bottom: 5px; } body.noselect {