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/standard | |
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/standard')
-rw-r--r-- | skins/standard/global.css | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/skins/standard/global.css b/skins/standard/global.css index bb44a919b..25a60f750 100644 --- a/skins/standard/global.css +++ b/skins/standard/global.css @@ -586,6 +586,40 @@ input.required, select.required, span.required_explanation { margin-left: -1px; } +.comment_tab { + float: left; + border: 1px solid silver; + border-bottom: 0px; + padding: 2px 1em; + cursor: pointer; + background: transparent; +} + +.active_comment_tab { + background: #fff; + font-weight: bold; +} + +#comment_preview { + border: 1px solid silver; + padding: 2px; + overflow: auto; + margin: 0px; +} + +#comment_preview_text { + margin: 0px; + width: auto; +} + +#comment_preview_loading { + font-style: italic; +} + +#comment { + margin-top: 0px; +} + /*******************/ /* Form Validation */ /*******************/ |