summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2022-07-28 03:04:45 +0000
committerGo MAEDA <maeda@farend.jp>2022-07-28 03:04:45 +0000
commitda289cc80d436d2c5b6cb3d3b9cd0b99484681a6 (patch)
tree30cdb20e51ba4e4818ee3c2055e05617bb034edd /app
parentd6a8d34dc9f5478bdf49d56857502b07d7399659 (diff)
downloadredmine-da289cc80d436d2c5b6cb3d3b9cd0b99484681a6.tar.gz
redmine-da289cc80d436d2c5b6cb3d3b9cd0b99484681a6.zip
Normalize HTML in settings/_users, and remove broken CSS left over from the old times (#37507).
Patch by Holger Just. git-svn-id: https://svn.redmine.org/redmine/trunk@21743 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r--app/views/settings/_users.html.erb15
1 files changed, 7 insertions, 8 deletions
diff --git a/app/views/settings/_users.html.erb b/app/views/settings/_users.html.erb
index 2ae55b1a3..3482b22d6 100644
--- a/app/views/settings/_users.html.erb
+++ b/app/views/settings/_users.html.erb
@@ -12,16 +12,15 @@
<p><%= setting_check_box :unsubscribe %></p>
</div>
- <fieldset class="box tabular settings">
+ <fieldset class="box">
<legend><%= l(:label_default_values_for_new_users) %></legend>
- <p><%= setting_check_box :default_users_hide_mail, :label => :field_hide_mail %></p>
-
- <p><%= setting_select(:default_notification_option, User.valid_notification_options.collect {|o| [l(o.last), o.first.to_s]}) %></p>
-
- <p><%= setting_check_box :default_users_no_self_notified, :label => :label_user_mail_no_self_notified %></p>
-
- <p><%= setting_select :default_users_time_zone, ActiveSupport::TimeZone.all.collect {|z| [ z.to_s, z.name ]}, :label => :field_time_zone, :blank => :label_none %></p>
+ <div class="tabular settings">
+ <p><%= setting_check_box :default_users_hide_mail, :label => :field_hide_mail %></p>
+ <p><%= setting_select(:default_notification_option, User.valid_notification_options.collect {|o| [l(o.last), o.first.to_s]}) %></p>
+ <p><%= setting_check_box :default_users_no_self_notified, :label => :label_user_mail_no_self_notified %></p>
+ <p><%= setting_select :default_users_time_zone, ActiveSupport::TimeZone.all.collect {|z| [ z.to_s, z.name ]}, :label => :field_time_zone, :blank => :label_none %></p>
+ </div>
</fieldset>
<%= submit_tag l(:button_save) %>