diff options
author | Albert Ting <altlist@gmail.com> | 2015-03-19 08:39:53 +0100 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-03-19 08:39:53 +0100 |
commit | 0f01ca16e49a2b7b73778a11c4d03b5dd33b0099 (patch) | |
tree | 03c381234d6e49d0b796c05eff29f1937dda19df /skins/standard | |
parent | 6638a015487885a47bb0ba851865ef8b073d08fb (diff) | |
download | bugzilla-0f01ca16e49a2b7b73778a11c4d03b5dd33b0099.tar.gz bugzilla-0f01ca16e49a2b7b73778a11c4d03b5dd33b0099.tar.xz |
Bug 1139150: Support wrapping quoted comments in MarkDown
r=glob,a=glob
Diffstat (limited to 'skins/standard')
-rw-r--r-- | skins/standard/global.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/skins/standard/global.css b/skins/standard/global.css index 6e3b41fd7..3941808be 100644 --- a/skins/standard/global.css +++ b/skins/standard/global.css @@ -418,6 +418,17 @@ pre.bz_comment_text, .uneditable_textarea, tbody.file pre { /** End Comments **/ +/** Markdown **/ +blockquote.markdown { + border-left: 0.2em solid #CCC; + color: #65379C; + padding: 0 1em; + margin-left: 0.5em; + margin-bottom: 0em; + white-space: normal; +} +/** End Markdown **/ + .bz_default_hidden, .bz_tui_hidden, .bz_hidden_field, .bz_hidden_option { /* We have !important because we want elements with these classes to always * be hidden, even if there is some CSS that overrides it (we use these |