diff options
author | Byron Jones <bjones@mozilla.com> | 2014-02-13 06:45:42 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2014-02-13 06:45:42 +0100 |
commit | adceb1cda6441d2969ed5a3d6d45add6f33c6df7 (patch) | |
tree | b97e5509c54029d6cb5d1873ba83c02da93c0e6b /skins | |
parent | a7ca86321e295e6df44386826aee90deca50ba20 (diff) | |
download | bugzilla-adceb1cda6441d2969ed5a3d6d45add6f33c6df7.tar.gz bugzilla-adceb1cda6441d2969ed5a3d6d45add6f33c6df7.tar.xz |
Bug 40896: Bugzilla needs a "preview" mode for comments
r=gerv, a=justdave
Diffstat (limited to 'skins')
-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 29dd9f44e..18bec598a 100644 --- a/skins/standard/global.css +++ b/skins/standard/global.css @@ -678,6 +678,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 */ /*******************/ |