Skip to content

Commit

Permalink
Fix view issue page UI inconsistencies
Browse files Browse the repository at this point in the history
1. Titles in table headers are left aligned
2. Fix issue relationship box header title width

Fixes: #17831

Signed-off-by: Damien Regad <dregad@mantisbt.org>
  • Loading branch information
syncguru authored and dregad committed Dec 4, 2014
1 parent 3a0c7f8 commit b35d343
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/relationship_api.php
Expand Up @@ -831,7 +831,7 @@ function relationship_view_box( $p_bug_id ) {
if( access_has_bug_level( config_get( 'update_bug_threshold' ), $p_bug_id ) ) {
?>
<tr class="row-1">
<th class="category"><?php echo lang_get( 'add_new_relationship' )?></th>
<th class="category" width="15%"><?php echo lang_get( 'add_new_relationship' )?></th>
<td><?php echo lang_get( 'this_bug' )?>
<form method="post" action="bug_relationship_add.php">
<?php echo form_security_field( 'bug_relationship_add' ) ?>
Expand Down
4 changes: 2 additions & 2 deletions css/default.css
Expand Up @@ -89,7 +89,7 @@ td.my-buglist-description { width: 100%; vertical-align: top; }
/**
* view_all_bug_page.php
*/
#buglist td, th { text-align: center; }
#buglist td, #buglist th { text-align: center; }
#buglist .column-summary,
#buglist .column-description,
#buglist .column-steps-to-reproduce,
Expand Down Expand Up @@ -477,7 +477,7 @@ div.table-container table,
div.section-container table th,
div.form-container table th,
div.table-container table th {
text-align: center;
text-align: left;
}
div#reauth-div,
div#login-div,
Expand Down

0 comments on commit b35d343

Please sign in to comment.