From 58cd5bfb11bccb5e326847b218809be2c93a00d5 Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Thu, 1 Aug 2013 11:06:14 -0700 Subject: [PATCH] Remove unnecessary div/class/css --- app/assets/stylesheets/small.css.scss | 26 ------ app/views/user/new.html.erb | 115 ++++++++++++------------ test/functional/user_controller_test.rb | 8 +- test/integration/user_creation_test.rb | 4 +- 4 files changed, 62 insertions(+), 91 deletions(-) diff --git a/app/assets/stylesheets/small.css.scss b/app/assets/stylesheets/small.css.scss index 5e21ce186..65cefa76d 100644 --- a/app/assets/stylesheets/small.css.scss +++ b/app/assets/stylesheets/small.css.scss @@ -172,32 +172,6 @@ p.search_results_entry { } } -/* Rules for the signup form */ - -#signupForm input[type="text"], #signupForm input[type="password"] { - width: 100%; -} - -#signupForm input#user_email { - max-width: 30em; -} - -#signupForm input#user_email_confirmation { - max-width: 30em; -} - -#signupForm input#user_display_name { - max-width: 20em; -} - -#signupForm input#user_pass_crypt { - max-width: 20em; -} - -#signupForm input#user_pass_crypt_confirmation { - max-width: 20em; -} - /* Rules for the login form */ #login_login input#user_email { diff --git a/app/views/user/new.html.erb b/app/views/user/new.html.erb index 478905b09..82d1b5d9c 100644 --- a/app/views/user/new.html.erb +++ b/app/views/user/new.html.erb @@ -4,72 +4,69 @@
<% end %> -<%= form_for :user, :url => { :action => 'create' }, :html => { :class => 'signup-form-wrapper fillL col6 pad2' } do %> +<%= form_for :user, :url => { :action => 'create' }, :html => { :class => 'signup-form-wrapper standard-form fillL col6 pad2' } do %> <%= error_messages_for 'user' %> <%= hidden_field_tag('referer', h(@referer)) unless @referer.nil? %> -
- -
-
- - <%= email_field(:user, :email, { :tabindex => 1 }) %> -
-
- - <%= email_field(:user, :email_confirmation, { :tabindex => 2 }) %> -
- <%= raw(t 'user.new.not displayed publicly') %> -
- -
-
- - <%= text_field(:user, :display_name, { :tabindex => 3 }) %> -
- <%= t 'user.new.display name description' %> -
- -
-
- - <%= url_field(:user, :openid_url, { :id => "openid_url", :tabindex => 4, :class => "openid_url" }) %> -
- - <%= t 'user.new.openid no password' %> - -
- -
-
- - <%= password_field(:user, :pass_crypt, {:tabindex => 5 }) %> -
-
- - <%= password_field(:user, :pass_crypt_confirmation, { :tabindex => 6 }) %> -
-
- -
- <%= link_to raw(t("user.new.use openid", :logo => openid_logo)), "#", :id => "openid_enable" %> +
+
+ + <%= email_field(:user, :email, { :tabindex => 1 }) %>
+
+ + <%= email_field(:user, :email_confirmation, { :tabindex => 2 }) %> +
+ <%= raw(t 'user.new.not displayed publicly') %> +
+ +
+
+ + <%= text_field(:user, :display_name, { :tabindex => 3 }) %> +
+ <%= t 'user.new.display name description' %> +
+ +
+
+ + <%= url_field(:user, :openid_url, { :id => "openid_url", :tabindex => 4, :class => "openid_url" }) %> +
+ + <%= t 'user.new.openid no password' %> + +
+ +
+
+ + <%= password_field(:user, :pass_crypt, {:tabindex => 5 }) %> +
+
+ + <%= password_field(:user, :pass_crypt_confirmation, { :tabindex => 6 }) %> +
+
- <%= submit_tag t('user.new.continue'), :tabindex => 6 %> +
+ <%= link_to raw(t("user.new.use openid", :logo => openid_logo)), "#", :id => "openid_enable" %>
+ + <%= submit_tag t('user.new.continue'), :tabindex => 6 %> <% end %>
diff --git a/test/functional/user_controller_test.rb b/test/functional/user_controller_test.rb index 52a0e0b5c..6ae27c6eb 100644 --- a/test/functional/user_controller_test.rb +++ b/test/functional/user_controller_test.rb @@ -260,7 +260,7 @@ class UserControllerTest < ActionController::TestCase assert_response :success assert_template 'new' assert_select "div#errorExplanation" - assert_select "div#signupForm > fieldset > div.form-row > div.field_with_errors > input#user_email" + assert_select "form > fieldset > div.form-row > div.field_with_errors > input#user_email" end def test_user_create_submit_duplicate_email_uppercase @@ -280,7 +280,7 @@ class UserControllerTest < ActionController::TestCase assert_response :success assert_template 'new' assert_select "div#errorExplanation" - assert_select "div#signupForm > fieldset > div.form-row > div.field_with_errors > input#user_email" + assert_select "form > fieldset > div.form-row > div.field_with_errors > input#user_email" end def test_user_create_submit_duplicate_name @@ -300,7 +300,7 @@ class UserControllerTest < ActionController::TestCase assert_response :success assert_template 'new' assert_select "div#errorExplanation" - assert_select "div#signupForm > fieldset > div.form-row > div.field_with_errors > input#user_display_name" + assert_select "form > fieldset > div.form-row > div.field_with_errors > input#user_display_name" end def test_user_create_submit_duplicate_name_uppercase @@ -320,7 +320,7 @@ class UserControllerTest < ActionController::TestCase assert_response :success assert_template 'new' assert_select "div#errorExplanation" - assert_select "div#signupForm > fieldset > div.form-row > div.field_with_errors > input#user_display_name" + assert_select "form > fieldset > div.form-row > div.field_with_errors > input#user_display_name" end def test_user_terms_new_user diff --git a/test/integration/user_creation_test.rb b/test/integration/user_creation_test.rb index f595ee73d..9945bd886 100644 --- a/test/integration/user_creation_test.rb +++ b/test/integration/user_creation_test.rb @@ -30,7 +30,7 @@ class UserCreationTest < ActionController::IntegrationTest assert_template 'user/new' assert_equal response.headers['Content-Language'][0..1], localer.to_s[0..1] unless localer == :root assert_select "div#errorExplanation" - assert_select "div#signupForm > fieldset > div.form-row > div.field_with_errors > input#user_email" + assert_select "form > fieldset > div.form-row > div.field_with_errors > input#user_email" assert_no_missing_translations end end @@ -49,7 +49,7 @@ class UserCreationTest < ActionController::IntegrationTest assert_response :success assert_template 'user/new' assert_select "div#errorExplanation" - assert_select "div#signupForm > fieldset > div.form-row > div.field_with_errors > input#user_display_name" + assert_select "form > fieldset > div.form-row > div.field_with_errors > input#user_display_name" assert_no_missing_translations end end -- 2.43.2