From 7183c32daf75d650c5345e98dea466d64c7ac3f2 Mon Sep 17 00:00:00 2001 From: Dave Lawrence Date: Fri, 11 Nov 2011 13:22:55 -0500 Subject: Bug 701170 - When no cc users attached to a bug, a blank 100px height empty box is displayed. Should be removed r=glob --- skins/custom/show_bug.css | 2 +- template/en/default/bug/edit.html.tmpl | 15 +++++++-------- 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 %] ([% IF user.id %]edit[% ELSE %]show[% END %]) - [% IF user.id %] -
-
    - [% FOREACH c = bug.cc %] -
  • [% c FILTER email FILTER html %]
  • - [% END %] -
-
+ [% IF user.id && bug.cc.size %] +
+ [% END %]
[% END %] -- cgit v1.2.3-24-g4f1b