]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 578434 - Bug group checkboxes lay out poorly beside attachment field
authorDave Lawrence <dlawrence@mozilla.com>
Wed, 18 Sep 2013 16:50:41 +0000 (12:50 -0400)
committerDave Lawrence <dlawrence@mozilla.com>
Wed, 18 Sep 2013 16:50:41 +0000 (12:50 -0400)
- Backed out to make adjustments on screen size before the groups drop down

https://bugzilla.mozilla.org/show_bug.cgi?id=578464

skins/standard/global.css
skins/standard/show_bug.css
template/en/default/bug/comments.html.tmpl
template/en/default/bug/edit.html.tmpl

index 5b1aa532e428c48ebeb23b91aeee4d7b945eded7..51d7c29db8f4ca7e7392091a920adbbbd0d45152 100644 (file)
@@ -286,7 +286,7 @@ div#docslinks {
 }
 
 .bz_comment_text {
-     max-width: 60em;
+     width: 50em;
 }
 
 .bz_comment_user, .bz_comment_time, .bz_comment_number, 
@@ -299,6 +299,14 @@ div#docslinks {
     float: right;
 }
 
+.bz_collapse_expand_comments {
+    padding: 0;
+    margin: 0 0 0 1em;
+    list-style-type: none;
+}
+.bz_collapse_expand_comments li {
+    margin-bottom: .5em;
+}
 .bz_collapse_comment {
     text-decoration: none;
 }
@@ -547,19 +555,6 @@ input.required, select.required, span.required_explanation {
     margin-left: -1px;
 }
 
-#bz_big_form_parts #left {
-    float: left;
-    min-width: 55em;
-    margin-right: 1em;
-    margin-bottom: 1em;
-}
-
-#bz_big_form_parts #right {
-    float: left;
-    width: auto;
-    max-width: 35em;
-}
-
 /*******************/
 /* Form Validation */
 /*******************/
@@ -580,4 +575,4 @@ form th {
 }
 th.left {
     text-align: left;
-}
+}
\ No newline at end of file
index fe2e6abb334ff68a4fa5264b7aa830487fb79fa1..b776b60bcef57229ee82a1e2f9a8a544131f5a04 100644 (file)
@@ -66,6 +66,10 @@ table#flags {
     vertical-align: top;
 }
 
+.bz_group_visibility_section {
+    margin-left: 1em;
+}
+
 .bz_group_visibility_section .instructions {
     font-style: italic;
 }
index 2ea0c3c4c3263f0e8b25b82aaba2c5dcc56168f8..61d1c67e07e9827f61f5c42f65532823e91a945b 100644 (file)
     [% sort_order = "oldest_to_newest" %]
 [% END %]
 
-<!-- This auto-sizes the comments and positions the collapse/expand links
-     above the coments. -->
-<table class="bz_comment_table" cellpadding="0" cellspacing="0">
-[% IF mode == "edit" %]
-  <tr>
-    <td>
-      <div class="bz_collapse_expand_comments">
-        <a href="#" onclick="toggle_all_comments('collapse');
-                             return false;">Collapse All Comments</a> |
-        <a href="#" onclick="toggle_all_comments('expand');
-                             return false;">Expand All Comments</a>
-        [% IF user.settings.comment_box_position.value == "after_comments" && user.id %]
-          | <span class="bz_add_comment"><a href="#"
-                  onclick="return goto_add_comments('bug_status_bottom');">
-                  Add Comment</a></span>
-        [% END %]
-      </div>
-    </td>
-  </tr>
-[% END %]
-<tr>
+<!-- This auto-sizes the comments and positions the collapse/expand links 
+     to the right. -->
+<table class="bz_comment_table" cellpadding="0" cellspacing="0"><tr>
 <td>
+
 [% FOREACH comment = comments %]
   [% IF comment.count >= start_at %]
     [% PROCESS a_comment %]
   #%]  
 [% Hook.process("aftercomments") %]
 
+</td>
+<td>
+  [% IF mode == "edit" %]
+    <ul class="bz_collapse_expand_comments">
+      <li><a href="#" onclick="toggle_all_comments('collapse'); 
+                               return false;">Collapse All Comments</a></li>
+      <li><a href="#" onclick="toggle_all_comments('expand');
+                               return false;">Expand All Comments</a></li>
+      [% IF user.settings.comment_box_position.value == "after_comments" && user.id %]
+        <li class="bz_add_comment"><a href="#" 
+            onclick="return goto_add_comments('bug_status_bottom');">
+            Add Comment</a></li>
+      [% END %]                               
+    </ul>
+  [% END %]
 </td>
 </tr></table>
 
index 9af8ee627111e2bd71f91f036e66960820e41912..683d6ed4a7f1e94aaabaea3d0ba24439cd716056 100644 (file)
     </tr>
   </table>
 
-  <div id="bz_big_form_parts">
-    <div id="left">
-      [% IF user.is_timetracker %]
-        <div id="timetracking">
-          [% PROCESS section_timetracking %]
-        </div>
-      [% END %]
-
-      <div id="attachments">
-        [%# *** Attachments *** %]
+  <table id="bz_big_form_parts" cellspacing="0" cellpadding="0"><tr>
+  <td>
+    [% IF user.is_timetracker %]
+      [% PROCESS section_timetracking %]
+    [% END %]
 
-        [% PROCESS attachment/list.html.tmpl
-                   attachments = bug.attachments
-                   bugid       = bug.bug_id
-                   num_attachment_flag_types = bug.num_attachment_flag_types
-                   show_attachment_flags = bug.show_attachment_flags
-        %]
-      </div>
+    [%# *** Attachments *** %]
 
-      [% IF user.settings.comment_box_position.value == 'before_comments' %]
-        <div id="comment_box">
-          [% PROCESS comment_box %]
-        </div>
-      [% END %]
+    [% PROCESS attachment/list.html.tmpl
+               attachments = bug.attachments
+               bugid       = bug.bug_id
+               num_attachment_flag_types = bug.num_attachment_flag_types
+               show_attachment_flags = bug.show_attachment_flags
+    %]
 
-      [%# *** Additional Comments *** %]
-      <div id="comments">
-        [% PROCESS bug/comments.html.tmpl
-                   comments = bug.comments
-                   mode = user.id ? "edit" : "show"
-        %]
-      </div>
+    [% IF user.settings.comment_box_position.value == 'before_comments' %]
+      [% PROCESS comment_box %]
+    [% END %]
+  </td>
+  <td>
+    [% PROCESS section_restrict_visibility %]
+  </td>
+  </tr></table>
 
-      [% IF user.settings.comment_box_position.value == 'after_comments' %]
-        <div id="comment_box">
-          [% PROCESS comment_box %]
-        </div>
-      [% END %]
-    </div>
+  [%# *** Additional Comments *** %]
+  <div id="comments">
+    [% PROCESS bug/comments.html.tmpl
+      comments = bug.comments
+      mode = user.id ? "edit" : "show"
+    %]
+  </div>
 
-    <div id="right">
-      <div id="restrict_visibility">
-        [% PROCESS section_restrict_visibility %]
-      </div>
-    </div>
+  [% IF user.settings.comment_box_position.value == 'after_comments' %]
+    <hr>
+    [% PROCESS comment_box %]
+  [% END %]        
 
-    <div style="clear:both;"></div>
-  </div>
 </form>
 
 [%############################################################################%]