diff options
author | Jean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com> | 2014-01-27 15:30:18 +0100 |
---|---|---|
committer | Jean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com> | 2014-01-27 15:30:25 +0100 |
commit | f405b38527c05b23fb876a21a995697c360acf8d (patch) | |
tree | 6237ac78db8f2dabbe6eb6fd9855f166039428ae | |
parent | 3f8e45260624a3a751133a90e59ab1b382a3ea5b (diff) | |
download | sonarqube-f405b38527c05b23fb876a21a995697c360acf8d.tar.gz sonarqube-f405b38527c05b23fb876a21a995697c360acf8d.zip |
SONAR-4868 Fix vertical align and highlight external links
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/updatecenter/system_updates.html.erb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/updatecenter/system_updates.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/updatecenter/system_updates.html.erb index 27b0710468f..9399514f7bc 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/updatecenter/system_updates.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/updatecenter/system_updates.html.erb @@ -48,6 +48,7 @@ <tr class="even"> <td> <table class="width100 spaced"> + <tbody style="vertical-align: top"> <tr> <td class="thin nowrap"><b>Date: </b></td> <td class="sep"></td> @@ -93,17 +94,18 @@ <% end %> <li>Stop Sonar</li> <li><%= link_to 'Download', release.getDownloadUrl(), :class => 'external' -%> and install - SonarQube <%= release.getVersion() -%> after having carefully read the <a href="http://docs.codehaus.org/display/SONAR/Upgrading">upgrade guide</a>. + SonarQube <%= release.getVersion() -%> after having carefully read the <a href="http://docs.codehaus.org/display/SONAR/Upgrading" class="external">upgrade guide</a>. </li> <li>Start Sonar</li> </ol> <% else %> <%= link_to 'Download', release.getDownloadUrl(), :class => 'external' -%> and install - SonarQube <%= release.getVersion() -%> after having carefully read the <a href="http://docs.codehaus.org/display/SONAR/Upgrading">upgrade guide</a>. + SonarQube <%= release.getVersion() -%> after having carefully read the <a href="http://docs.codehaus.org/display/SONAR/Upgrading" class="external">upgrade guide</a>. <% end %> </td> </tr> + </tbody> </table> </td> </tr> |