From 279b1fbf48ff078de9c57cf79ba5782ceceea0d6 Mon Sep 17 00:00:00 2001 From: David Celis Date: Mon, 16 Sep 2013 12:49:38 -0700 Subject: [PATCH] Better padding for spoiler text With no padding currently surrounding [spoiler] text, the white text gets close enough to the white post background that it's a bit more difficult to read than it reasonably could be. Pad spoiler text with 2px to alleviate this difficulty. Signed-off-by: David Celis --- app/assets/stylesheets/desktop/topic.css.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/app/assets/stylesheets/desktop/topic.css.scss b/app/assets/stylesheets/desktop/topic.css.scss index 15a71f77b..a68103265 100644 --- a/app/assets/stylesheets/desktop/topic.css.scss +++ b/app/assets/stylesheets/desktop/topic.css.scss @@ -171,6 +171,7 @@ span.spoiler { background-color: $black; color: $black; + padding: 2px; @include hover { color: $white; }