diff options
author | lpsolit%gmail.com <> | 2009-12-18 00:15:32 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2009-12-18 00:15:32 +0100 |
commit | 3eb0b0d657efa47583d5bea699d8b9a62547fb6c (patch) | |
tree | b7fea57d9cc27c890ff3ea422f433f5e9632ff96 /template/en/default | |
parent | c5612a1fdcbdfd6aacf9e85e1f74c399ba021fa5 (diff) | |
download | bugzilla-3eb0b0d657efa47583d5bea699d8b9a62547fb6c.tar.gz bugzilla-3eb0b0d657efa47583d5bea699d8b9a62547fb6c.tar.xz |
Bug 470608: <colgroup> is not well supported - Patch by Aaron Larson <aaron@larsonsonline.net> r/a=LpSolit
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/list/table.html.tmpl | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/template/en/default/list/table.html.tmpl b/template/en/default/list/table.html.tmpl index f6a871e19..64ed319db 100644 --- a/template/en/default/list/table.html.tmpl +++ b/template/en/default/list/table.html.tmpl @@ -77,16 +77,6 @@ [% tableheader = BLOCK %] <table class="bz_buglist" cellspacing="0" cellpadding="4" width="100%"> - <colgroup> - [% IF dotweak %] - <col class="bz_checkbox_column"> - [% END %] - <col class="bz_id_column"> - [% FOREACH id = displaycolumns %] - <col class="bz_[% id FILTER css_class_quote %]_column"> - [% END %] - </colgroup> - <tr class="bz_buglist_header bz_first_buglist_header" align="left"> [% IF dotweak %] <th> </th> @@ -188,18 +178,19 @@ "> [% IF dotweak %] - <td> + <td class="bz_checkbox_column"> <input type="checkbox" name="id_[% bug.bug_id %]"> </td> [% END %] - <td class="first-child"> + <td class="first-child bz_id_column"> <a name="b[% bug.bug_id %]" href="show_bug.cgi?id=[% bug.bug_id %]">[% bug.bug_id %]</a> <span style="display: none">[%+ '[SEC]' IF bug.secure_mode %]</span> </td> [% FOREACH column = displaycolumns %] - <td [% 'style="white-space: nowrap"' IF NOT abbrev.$column.wrap %]> + <td [% 'style="white-space: nowrap"' IF NOT abbrev.$column.wrap %] + class="bz_[% column FILTER css_class_quote %]_column"> [% IF abbrev.$column.maxlength %] <span title="[%- display_value(column, bug.$column) FILTER html %]"> [% END %] |