diff options
-rw-r--r-- | app/views/my/account.rhtml | 5 | ||||
-rw-r--r-- | public/stylesheets/application.css | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/app/views/my/account.rhtml b/app/views/my/account.rhtml index 2dda62d70..0badc4b94 100644 --- a/app/views/my/account.rhtml +++ b/app/views/my/account.rhtml @@ -4,7 +4,10 @@ <h2><%=l(:label_my_account)%></h2> <%= error_messages_for 'user' %> -<% form_for :user, @user, :url => { :action => "account" }, :builder => TabularFormBuilder, :lang => current_language do |f| %> +<% form_for :user, @user, :url => { :action => "account" }, + :builder => TabularFormBuilder, + :lang => current_language, + :html => { :id => 'my_account_form' } do |f| %> <div class="splitcontentleft"> <h3><%=l(:label_information_plural)%></h3> <div class="box tabular"> diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index f05fb9d91..249b20291 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -124,7 +124,7 @@ textarea.wiki-edit { width: 99%; } li p {margin-top: 0;} div.issue {background:#ffffdd; padding:6px; margin-bottom:6px;border: 1px solid #d7d7d7;} .autoscroll {overflow-x: auto; padding:1px; width:100%;} -#user_firstname, #user_lastname, #user_mail, #notification_option { width: 90%; } +#user_firstname, #user_lastname, #user_mail, #my_account_form select { width: 90%; } /***** Tabular forms ******/ .tabular p{ |