From b77f7ce567e962355fa70f451ae3ead531b9977a Mon Sep 17 00:00:00 2001 From: Jeff Atwood Date: Sat, 18 Oct 2014 02:48:20 -0700 Subject: [PATCH] overflow:hidden on blockquote caused IE freakout --- app/assets/stylesheets/common/base/topic-post.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/common/base/topic-post.scss b/app/assets/stylesheets/common/base/topic-post.scss index 3cff7420815..926264e0952 100644 --- a/app/assets/stylesheets/common/base/topic-post.scss +++ b/app/assets/stylesheets/common/base/topic-post.scss @@ -42,7 +42,8 @@ aside.quote { border-left: 5px solid darken(scale-color-diff(), 10%); background-color: scale-color-diff(); color: scale-color($primary, $lightness: 30%); - padding: 12px 12px 0 12px; + // IE will screw up the blockquote underneath if bottom padding is 0px + padding: 12px 12px 1px 12px; /* blockquote is underneath this and has top margin */ .avatar { margin-right: 7px; } img { margin-top: -4px; }