diff options
author | Byron Jones <bjones@mozilla.com> | 2014-02-13 06:48:52 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2014-02-13 06:48:52 +0100 |
commit | c56d18a3e5c4d022741c6457f5c91122699e482f (patch) | |
tree | 2b18e1d7709f6408021cb63c8b3aef49f20d918f /skins/contrib | |
parent | b5ed02725ff4bd4aa4245aa7389130c5935d9c90 (diff) | |
download | bugzilla-c56d18a3e5c4d022741c6457f5c91122699e482f.tar.gz bugzilla-c56d18a3e5c4d022741c6457f5c91122699e482f.tar.xz |
Bug 40896: Bugzilla needs a "preview" mode for comments
Diffstat (limited to 'skins/contrib')
-rw-r--r-- | skins/contrib/Mozilla/global.css | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/skins/contrib/Mozilla/global.css b/skins/contrib/Mozilla/global.css index 4d6fd7113..d47c4e2f8 100644 --- a/skins/contrib/Mozilla/global.css +++ b/skins/contrib/Mozilla/global.css @@ -449,11 +449,15 @@ table.edit_form hr { } .bz_comment { - width: 65em !important; + width: 65em; margin: 0 0 20px; } -.bz_comment pre { +.bz_comment_table .bz_comment { + width: 65em !important; +} + +.bz_comment pre, #comment { font: 13px/1.2 "Droid Sans Mono", Menlo, Monaco, "Courier New", Courier, monospace; } @@ -618,7 +622,17 @@ table.edit_form hr { -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; - margin: 5px 0 20px; +} + +#comment_tabs { + margin-top: 2px; +} + +#comment_preview_text { + background: transparent; + border: none; + box-shadow: none; + padding: 2px 2px 2px 1px; } #footer { |