Commit ea89c6a5 authored by jocuri%softhome.net's avatar jocuri%softhome.net

Patch for bug 275631: Only the first column (not all) should have excess CSS…

Patch for bug 275631: Only the first column (not all) should have excess CSS padding-left; patch by byron jones (glob) <bugzilla@glob.com.au>, r=gerv, r=vladd, a=justdave.
parent d19448c3
...@@ -30,7 +30,6 @@ ...@@ -30,7 +30,6 @@
table#form tr th { text-align: right; } table#form tr th { text-align: right; }
table.bz_buglist td, table.bz_buglist th { table.bz_buglist td, table.bz_buglist th {
padding-left: 20px;
} }
/* For styling rows; by default striped white and gray */ /* For styling rows; by default striped white and gray */
...@@ -50,6 +49,10 @@ tr.bz_secure td.first-child { ...@@ -50,6 +49,10 @@ tr.bz_secure td.first-child {
background-color: inherit; background-color: inherit;
} }
th.first-child, td.first-child {
padding-left: 20px;
}
tr.bz_secure_mode_implied td.first-child { tr.bz_secure_mode_implied td.first-child {
} }
......
...@@ -87,7 +87,7 @@ ...@@ -87,7 +87,7 @@
[% IF dotweak %] [% IF dotweak %]
<th>&nbsp;</th> <th>&nbsp;</th>
[% END %] [% END %]
<th colspan="[% splitheader ? 2 : 1 %]"> <th colspan="[% splitheader ? 2 : 1 %]" class="first-child">
[% IF sorted_by_relevance %] [% IF sorted_by_relevance %]
ID ID
[% ELSE %] [% ELSE %]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment