Skip to content

Commit

Permalink
more css and html fixes
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@584 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
Kenzaburo Ito committed Dec 28, 2001
1 parent ef24e65 commit 7e7f734
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 28 deletions.
5 changes: 3 additions & 2 deletions css_inc.php
Expand Up @@ -17,6 +17,7 @@
table {}
td { font-family: Verdana, Arial, Helvetica; font-size: 10pt; padding: 4px; text-align: left }
a {}
span.print { font-size: 8pt; }

span.required { font-size: 8pt; color: #aa0000 }
span.small { font-size: 8pt }
Expand All @@ -39,8 +40,8 @@
td.form-title { background-color: <? echo $g_white_color ?>; font-weight: bold; }
td.nopad { padding: 0px; }
td.spacer { font-size: 1pt; line-height: 0.1; }
td.small-caption { font-size: 8pt }
td.print { font-size: 8pt }
td.small-caption { font-size: 8pt; }
td.print { font-size: 8pt; text-align: center; }

tr.center { text-align: center; }
tr.row-1 { background-color: <? echo $g_primary_color_dark ?>; }
Expand Down
20 changes: 10 additions & 10 deletions print_all_bug_page.php3
Expand Up @@ -295,34 +295,34 @@
<p>
</tr>
<tr class="row-category">
<td width="8%">
<td class="center" width="8%">
<? print_view_bug_sort_link( $link_page, "P", "priority", $f_sort, $f_dir ) ?>
<? print_sort_icon( $f_dir, $f_sort, "priority" ) ?>
</td>
<td width="8%">
<td class="center" width="8%">
<? print_view_bug_sort_link( $link_page, $s_id, "id", $f_sort, $f_dir ) ?>
<? print_sort_icon( $f_dir, $f_sort, "id" ) ?>
</td>
<td width="3%">
<td class="center" width="3%">
#
</td>
<td width="12%">
<td class="center" width="12%">
<? print_view_bug_sort_link( $link_page, $s_category, "category", $f_sort, $f_dir ) ?>
<? print_sort_icon( $f_dir, $f_sort, "category" ) ?>
</td>
<td width="10%">
<td class="center" width="10%">
<? print_view_bug_sort_link( $link_page, $s_severity, "severity", $f_sort, $f_dir ) ?>
<? print_sort_icon( $f_dir, $f_sort, "severity" ) ?>
</td>
<td width="10%">
<td class="center" width="10%">
<? print_view_bug_sort_link( $link_page, $s_status, "status", $f_sort, $f_dir ) ?>
<? print_sort_icon( $f_dir, $f_sort, "status" ) ?>
</td>
<td width="12%">
<td class="center" width="12%">
<? print_view_bug_sort_link( $link_page, $s_updated, "last_updated", $f_sort, $f_dir ) ?>
<? print_sort_icon( $f_dir, $f_sort, "last_updated" ) ?>
</td>
<td width="37%">
<td class="center" width="37%">
<? print_view_bug_sort_link( $link_page, $s_summary, "summary", $f_sort, $f_dir ) ?>
<? print_sort_icon( $f_dir, $f_sort, "summary" ) ?>
</td>
Expand Down Expand Up @@ -402,8 +402,8 @@
}
?>
</td>
<td class="print">
<? echo $v_summary ?>
<td class="left">
<span class="print"><? echo $v_summary ?></a>
</td>
</tr>
<?
Expand Down
32 changes: 16 additions & 16 deletions view_all_inc.php
Expand Up @@ -137,34 +137,34 @@
</td>
</tr>
<tr class="row-category">
<td width="5%">
<td class="center" width="5%">
<? print_view_bug_sort_link( $link_page, "P", "priority", $f_sort, $f_dir ) ?>
<? print_sort_icon( $f_dir, $f_sort, "priority" ) ?>
</td>
<td width="8%">
<td class="center" width="8%">
<? print_view_bug_sort_link( $link_page, $s_id, "id", $f_sort, $f_dir ) ?>
<? print_sort_icon( $f_dir, $f_sort, "id" ) ?>
</td>
<td width="3%">
<td class="center" width="3%">
#
</td>
<td width="12%">
<td class="center" width="12%">
<? print_view_bug_sort_link( $link_page, $s_category, "category", $f_sort, $f_dir ) ?>
<? print_sort_icon( $f_dir, $f_sort, "category" ) ?>
</td>
<td width="10%">
<td class="center" width="10%">
<? print_view_bug_sort_link( $link_page, $s_severity, "severity", $f_sort, $f_dir ) ?>
<? print_sort_icon( $f_dir, $f_sort, "severity" ) ?>
</td>
<td width="10%">
<td class="center" width="10%">
<? print_view_bug_sort_link( $link_page, $s_status, "status", $f_sort, $f_dir ) ?>
<? print_sort_icon( $f_dir, $f_sort, "status" ) ?>
</td>
<td width="12%">
<td class="center" width="12%">
<? print_view_bug_sort_link( $link_page, $s_updated, "last_updated", $f_sort, $f_dir ) ?>
<? print_sort_icon( $f_dir, $f_sort, "last_updated" ) ?>
</td>
<td width="40%">
<td class="center" width="40%">
<? print_view_bug_sort_link( $link_page, $s_summary, "summary", $f_sort, $f_dir ) ?>
<? print_sort_icon( $f_dir, $f_sort, "summary" ) ?>
</td>
Expand Down Expand Up @@ -207,7 +207,7 @@
$v_bugnote_updated = db_result( $res2, 0, 0 );
?>
<tr bgcolor="<? echo $status_color ?>">
<td>
<td class="center">
<?
if ( $g_show_priority_text == 0 ) {
print_status_icon( $v_priority );
Expand All @@ -216,10 +216,10 @@
}
?>
</td>
<td>
<td class="center">
<? print_bug_link( $v_id ) ?>
</td>
<td>
<td class="center">
<?
if ($bugnote_count > 0){
if ( sql_to_unix_time( $v_bugnote_updated ) >
Expand All @@ -233,13 +233,13 @@
}
?>
</td>
<td>
<td class="center">
<? echo $v_category ?>
</td>
<td>
<td class="center">
<? print_formatted_severity_string( $v_status, $v_severity ) ?>
</td>
<td>
<td class="center">
<?
# print username instead of status
if (( $g_show_assigned_names==1 )&&( $v_handler_id > 0 )) {
Expand All @@ -249,7 +249,7 @@
}
?>
</td>
<td>
<td class="center">
<?
if ( sql_to_unix_time( $v_last_updated ) >
strtotime( "-$f_highlight_changed hours" ) ) {
Expand All @@ -260,7 +260,7 @@
}
?>
</td>
<td>
<td class="left">
<? echo $v_summary ?>
</td>
</tr>
Expand Down

0 comments on commit 7e7f734

Please sign in to comment.