summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--skins/custom/show_bug.css2
-rw-r--r--template/en/default/bug/edit.html.tmpl15
2 files changed, 8 insertions, 9 deletions
diff --git a/skins/custom/show_bug.css b/skins/custom/show_bug.css
index 23839fe17..b96c997f1 100644
--- a/skins/custom/show_bug.css
+++ b/skins/custom/show_bug.css
@@ -28,10 +28,10 @@
margin:0px;
padding:5px;
padding-right:20px;
- height:100px;
overflow:auto;
float:left;
max-width:465px;
+ max-height:100px;
border:1px solid #CCC;
}
diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl
index b44d7c9b0..ae7ee8047 100644
--- a/template/en/default/bug/edit.html.tmpl
+++ b/template/en/default/bug/edit.html.tmpl
@@ -821,14 +821,13 @@
[% IF user.id || bug.cc.size %]
<span id="cc_edit_area_showhide_container" class="bz_default_hidden">
(<a href="#" id="cc_edit_area_showhide">[% IF user.id %]edit[% ELSE %]show[% END %]</a>)
- [% IF user.id %]
- <div id="cc_list_num_users">
- <ul class="cc_list_display">
- [% FOREACH c = bug.cc %]
- <li>[% c FILTER email FILTER html %]</li>
- [% END %]
- </ul>
- </div>
+ [% IF user.id && bug.cc.size %]
+ <br>
+ <ul class="cc_list_display">
+ [% FOREACH c = bug.cc %]
+ <li>[% c FILTER email FILTER html %]</li>
+ [% END %]
+ </ul>
[% END %]
</span>
[% END %]