Commit 496786963a6f68fe94758f9b986832ab1bd737b3
1 parent
8813c95c
Exists in
master
and in
28 other branches
signup-screen: improvements in field borders and deleting comments
AI2515
Showing
2 changed files
with
1 additions
and
5 deletions
Show diff stats
app/views/account/_signup_form.rhtml
| ... | ... | @@ -128,8 +128,6 @@ |
| 128 | 128 | <script type="text/javascript"> |
| 129 | 129 | jQuery(function($) { |
| 130 | 130 | |
| 131 | - //$('#signup-form #user_login').css('width', 350 - $('#signup-domain').outerWidth()); | |
| 132 | - | |
| 133 | 131 | $('#signup-form input[type=text], #signup-form textarea').each(function() { |
| 134 | 132 | $(this).bind('blur', function() { |
| 135 | 133 | if ($(this).val() == '') { | ... | ... |
public/stylesheets/application.css
| ... | ... | @@ -6049,13 +6049,11 @@ li.profile-activity-item.upload_image .activity-gallery-images-count-1 img { |
| 6049 | 6049 | border: 1px solid #7f0000; |
| 6050 | 6050 | background: #FFF; |
| 6051 | 6051 | box-shadow: 0 0 7px red; |
| 6052 | - /* padding: 5px 30px 8px 5px; */ | |
| 6053 | 6052 | } |
| 6054 | 6053 | |
| 6055 | 6054 | #signup-form input.valid_input { |
| 6056 | 6055 | border: 2px solid #005000; |
| 6057 | 6056 | background: #FFF; |
| 6058 | -/* padding: 5px 30px 8px 5px; */ | |
| 6059 | 6057 | } |
| 6060 | 6058 | |
| 6061 | 6059 | #signup-form select, |
| ... | ... | @@ -6076,7 +6074,7 @@ li.profile-activity-item.upload_image .activity-gallery-images-count-1 img { |
| 6076 | 6074 | #signup-form .invalid, |
| 6077 | 6075 | #signup-form input.validated, |
| 6078 | 6076 | #signup-form .checking { |
| 6079 | - border-width: 2px; | |
| 6077 | + border-width: 1px; | |
| 6080 | 6078 | border-style: solid; |
| 6081 | 6079 | background-color: #fff; |
| 6082 | 6080 | background-position: right center; | ... | ... |