FIX: only hide overflow on cooked content

otherwise topic admin menu clips
and you no longer can position stuff absolutely based off .topic-body
This commit is contained in:
Sam 2016-03-30 17:01:05 +11:00
parent 03b65345d1
commit dbd1370ddb
1 changed files with 3 additions and 1 deletions

View File

@ -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%);
}