From dbd1370ddbd68668a368d4514d704c64f94c7385 Mon Sep 17 00:00:00 2001 From: Sam Date: Wed, 30 Mar 2016 17:01:05 +1100 Subject: [PATCH] FIX: only hide overflow on cooked content otherwise topic admin menu clips and you no longer can position stuff absolutely based off .topic-body --- app/assets/stylesheets/common/base/topic-post.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/common/base/topic-post.scss b/app/assets/stylesheets/common/base/topic-post.scss index 2c4529ce8..56edd031f 100644 --- a/app/assets/stylesheets/common/base/topic-post.scss +++ b/app/assets/stylesheets/common/base/topic-post.scss @@ -155,7 +155,9 @@ aside.quote { // this is necessary for ANYTHING that extends past the right edge of // the post body, such as an image in a deeply nested list, image in // a deeply nested blockquote, and so on.. you get the idea. - overflow: hidden; + .contents .cooked { + overflow: hidden; + } &.highlighted { background-color: dark-light-diff($tertiary, $secondary, 85%, -65%); }