Skip to content

Commit

Permalink
Fix #19660: incorrect font on Roadmap completed issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dregad committed Apr 29, 2015
1 parent 5fea91c commit fb019ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion core/print_api.php
Expand Up @@ -1842,7 +1842,7 @@ function print_bug_attachment( array $p_attachment ) {
*/
function print_bug_attachment_header( array $p_attachment ) {
echo "\n";
if( $p_attachment['exists'] ) {
if( false && $p_attachment['exists'] ) {

This comment has been minimized.

Copy link
@atrol

atrol Apr 29, 2015

Member

??

This comment has been minimized.

Copy link
@dregad

dregad Apr 29, 2015

Author Member

oops.

This comment has been minimized.

Copy link
@dregad

dregad Apr 29, 2015

Author Member

Fixed in 0c2da84

if( $p_attachment['can_download'] ) {
echo '<a href="' . string_attribute( $p_attachment['download_url'] ) . '">';
}
Expand Down
2 changes: 2 additions & 0 deletions css/default.css
Expand Up @@ -330,6 +330,8 @@ div.quick-summary-right { width: 49%; padding: 2px; text-align: right; float: ri
border-radius: 5px;
}

/* Roadmap */
tt > .strike { font-family: monospace; }
.progress400 { position: relative; width: 400px; border: 1px solid #d7d7d7; margin-top: 1em; margin-bottom: 1em; padding: 1px; }
.progress400 .bar { display: block; position: relative; background: #6bba70; text-align: center; font-weight: normal; color: #333; height: 2em; line-height: 2em; }

Expand Down

0 comments on commit fb019ce

Please sign in to comment.