From d713b288b5bb360024567d48447529353f8b1318 Mon Sep 17 00:00:00 2001 From: Brian Talbot Date: Tue, 5 Feb 2013 15:21:41 -0500 Subject: [PATCH] studio - resolved HTML display issue where bold and blockquote elements didn't match LMSs style --- common/lib/xmodule/xmodule/css/html/display.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/common/lib/xmodule/xmodule/css/html/display.scss b/common/lib/xmodule/xmodule/css/html/display.scss index c031ecb141..956923c6d0 100644 --- a/common/lib/xmodule/xmodule/css/html/display.scss +++ b/common/lib/xmodule/xmodule/css/html/display.scss @@ -52,13 +52,17 @@ em, i { } strong, b { - font-style: bold; + font-weight: bold; } p + p, ul + p, ol + p { margin-top: 20px; } +blockquote { + margin: 1em 40px; +} + ol, ul { margin: 1em 0; padding: 0 0 0 1em;