diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2013-05-10 16:44:47 +0200 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2013-05-10 16:44:47 +0200 |
commit | cd478d226e183efc30939fb13f797bd012117405 (patch) | |
tree | 6a279e006cc18053c4d4e27eff77c3f9d119940d /skins | |
parent | f92a5f03ea670c89be57ccdb16dba276099abdc5 (diff) | |
download | bugzilla-cd478d226e183efc30939fb13f797bd012117405.tar.gz bugzilla-cd478d226e183efc30939fb13f797bd012117405.tar.xz |
Bug 850135 - hide the textarea custom fields by default with an (edit) link
r=glob,a=LpSolit
Diffstat (limited to 'skins')
-rw-r--r-- | skins/standard/global.css | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/skins/standard/global.css b/skins/standard/global.css index 3ca350dba..b1c9a7d07 100644 --- a/skins/standard/global.css +++ b/skins/standard/global.css @@ -520,8 +520,23 @@ input.required, select.required, span.required_explanation { list-style-type: none; } +.field_textarea_readonly { + margin: 2px; + padding: 4px; + overflow: auto; + float: left; + max-width: 30em; + max-height: 7em; + border: 1px solid #CCC; +} + +.field_textarea_readonly pre { + font-family: monospace; + white-space: pre-wrap; +} + /* custom styles for inline instances of autocomplete input fields */ -.yui-skin-sam .yui-ac-input { position:static !important; +.yui-skin-sam .yui-ac-input { position:static !important; vertical-align:middle !important; } .yui-skin-sam .yui-ac-container { left:0px !important; } .yui-skin-sam .yui-ac { display: inline-block; } |