diff options
author | Evgeny Mandrikov <mandrikov@gmail.com> | 2011-07-28 16:52:04 +0400 |
---|---|---|
committer | Evgeny Mandrikov <mandrikov@gmail.com> | 2011-07-28 17:24:36 +0400 |
commit | 03922f211c9af4685d7917dfca18ed040f9dd060 (patch) | |
tree | b161d957d8d8fd23f4d221ed73f375b506068577 /sonar-server | |
parent | b6d37c5e6ce53dd38b122aa496f5857d29ead5c8 (diff) | |
download | sonarqube-03922f211c9af4685d7917dfca18ed040f9dd060.tar.gz sonarqube-03922f211c9af4685d7917dfca18ed040f9dd060.zip |
SONAR-2601 Use CSS style 'comments' for descriptions of SMTP settings
Diffstat (limited to 'sonar-server')
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/email_configuration/index.html.erb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/email_configuration/index.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/email_configuration/index.html.erb index 302a99b6a42..d1bd745c14a 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/email_configuration/index.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/email_configuration/index.html.erb @@ -5,37 +5,37 @@ <tr> <td class="keyCell"><label for="smtp_host"><%= message('email_configuration.smtp_host') -%>:</label></td> <td><%= text_field_tag 'smtp_host', @smtp_host %></td> - <td><%= message('email_configuration.smtp_host.description') -%></td> + <td class="comments"><%= message('email_configuration.smtp_host.description') -%></td> </tr> <tr> <td class="keyCell"><label for="smtp_port"><%= message('email_configuration.smtp_port') -%>:</label></td> <td><%= text_field_tag 'smtp_port', @smtp_port %></td> - <td><%= message('email_configuration.smtp_port.description') -%></td> + <td class="comments"><%= message('email_configuration.smtp_port.description') -%></td> </tr> <tr> <td class="keyCell"><label for="smtp_secure_connection"><%= message('email_configuration.smtp_secure_connection') -%>:</label></td> <td><%= select_tag 'smtp_secure_connection', options_for_select({'No' => '', 'SSL' => 'ssl'}, @smtp_secure_connection) %></td> - <td><%= message('email_configuration.smtp_secure_connection.description') -%></td> + <td class="comments"><%= message('email_configuration.smtp_secure_connection.description') -%></td> </tr> <tr> <td class="keyCell"><label for="smtp_username"><%= message('email_configuration.smtp_username') -%>:</label></td> <td><%= text_field_tag 'smtp_username', @smtp_username %></td> - <td><%= message('email_configuration.smtp_username.description') -%></td> + <td class="comments"><%= message('email_configuration.smtp_username.description') -%></td> </tr> <tr> <td class="keyCell"><label for="smtp_password"><%= message('email_configuration.smtp_password') -%>:</label></td> <td><%= password_field_tag 'smtp_password', @smtp_password %></td> - <td><%= message('email_configuration.smtp_password.description') -%></td> + <td class="comments"><%= message('email_configuration.smtp_password.description') -%></td> </tr> <tr> <td class="keyCell"><label for="email_from"><%= message('email_configuration.from_address') -%>:</label></td> <td><%= text_field_tag 'email_from', @email_from %></td> - <td><%= message('email_configuration.from_address.description') -%></td> + <td class="comments"><%= message('email_configuration.from_address.description') -%></td> </tr> <tr> <td class="keyCell"><label for="email_prefix"><%= message('email_configuration.email_prefix') -%>:</label></td> <td><%= text_field_tag 'email_prefix', @email_prefix %></td> - <td><%= message('email_configuration.email_prefix.description') -%></td> + <td class="comments"><%= message('email_configuration.email_prefix.description') -%></td> </tr> <tr> <td></td> |