From 6aba6219c3795324e7575785a8d74ec2b35edefb Mon Sep 17 00:00:00 2001 From: Brian Jacobel Date: Mon, 20 Jun 2016 13:39:05 -0400 Subject: [PATCH] Add a third fixed case where images could overflow (refs #12735) --- lms/static/sass/discussion/views/_thread.scss | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/lms/static/sass/discussion/views/_thread.scss b/lms/static/sass/discussion/views/_thread.scss index 58cc8aa74f..c552894829 100644 --- a/lms/static/sass/discussion/views/_thread.scss +++ b/lms/static/sass/discussion/views/_thread.scss @@ -134,10 +134,6 @@ body.discussion { border-radius: 3px; } } - - img { - max-width: 100%; - } } .discussion-response .response-body { @@ -207,3 +203,10 @@ body.view-in-course .discussion-article { } } } + +.thread-wrapper, +.forum-new-post-form { + img { + max-width: 100%; + } +}