diff options
-rw-r--r-- | modules/update/update.css | 4 | ||||
-rw-r--r-- | modules/update/update.report.inc | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/modules/update/update.css b/modules/update/update.css index a020e96ad..d6895a54a 100644 --- a/modules/update/update.css +++ b/modules/update/update.css @@ -18,6 +18,10 @@ padding-left: .5em; /* LTR */ } +.update .version-date { + white-space: nowrap; +} + .update .info { margin: 0; padding: 1em 1em .25em 1em; diff --git a/modules/update/update.report.inc b/modules/update/update.report.inc index 9d18b5706..77e9c2c68 100644 --- a/modules/update/update.report.inc +++ b/modules/update/update.report.inc @@ -102,7 +102,7 @@ function theme_update_report($data) { } $row .= ' '. check_plain($project['existing_version']); if ($project['install_type'] == 'dev' && !empty($project['datestamp'])) { - $row .= ' ('. format_date($project['datestamp'], 'custom', 'Y-M-d') .') '; + $row .= ' <span class="version-date">('. format_date($project['datestamp'], 'custom', 'Y-M-d') .')</span>'; } $row .= "</div>\n"; @@ -221,7 +221,7 @@ function theme_update_version($version, $tag, $class) { $output .= '<td class="version-title">'. $tag ."</td>\n"; $output .= '<td class="version-details">'; $output .= l($version['version'], $version['release_link']); - $output .= ' ('. format_date($version['date'], 'custom', 'Y-M-d') .') '; + $output .= ' <span class="version-date">('. format_date($version['date'], 'custom', 'Y-M-d') .')</span>'; $output .= "</td>\n"; $output .= '<td class="version-links">'; $links = array(); |