Skip to content

Commit

Permalink
Move styles for recently-visited into css. remove html style elements.
Browse files Browse the repository at this point in the history
  • Loading branch information
Daryn Warriner committed Aug 25, 2010
1 parent e087425 commit c0d2239
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions core/print_api.php
Expand Up @@ -1494,7 +1494,7 @@ function print_recently_visited() {
return;
}

echo '<div align="right" class="recently-visited"><small>' . lang_get( 'recently_visited' ) . ': ';
echo '<div class="recently-visited">' . lang_get( 'recently_visited' ) . ': ';
$t_first = true;

foreach( $t_ids as $t_id ) {
Expand All @@ -1506,7 +1506,7 @@ function print_recently_visited() {

echo string_get_bug_view_link( $t_id );
}
echo '</small></div>';
echo '</div>';
}

# print a dropdown box from input array
Expand Down
4 changes: 3 additions & 1 deletion css/default.css
Expand Up @@ -108,7 +108,9 @@ td.login-info-right { width: 33%; padding: 0px; text-align: right; white-space:
#account-menu ul, #doc-menu ul { margin: 0 auto; padding: .25em; float: right; text-align: center; }
#account-menu ul li, #doc-menu ul li { display: block; float: left; padding: 0; margin: 0; }

#content { clear: both; margin: 0; padding: .5em; }
#content { position: relative; top: 0; margin: 0; padding: .5em; }
.recently-visited { position: relative; top: .5em; right: -14em; float: right; text-align: right; font-size: x-small; }

br { clear:both; }

.bug-jump { position: relative; top: -2.5em; right: .5em; float: right; z-index: 100; }
Expand Down

0 comments on commit c0d2239

Please sign in to comment.