From fb019ce1bd78e329b212ebe6ad315a2ea5fae102 Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Sat, 24 Jan 2015 00:07:22 +0100 Subject: [PATCH] Fix #19660: incorrect font on Roadmap completed issues --- core/print_api.php | 2 +- css/default.css | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/core/print_api.php b/core/print_api.php index b094da041b..733a6dd546 100644 --- a/core/print_api.php +++ b/core/print_api.php @@ -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'] ) { if( $p_attachment['can_download'] ) { echo ''; } diff --git a/css/default.css b/css/default.css index c0fcffe070..1b522b4989 100644 --- a/css/default.css +++ b/css/default.css @@ -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; }