Ticket #23631: 23631.2.diff
File 23631.2.diff, 3.2 KB (added by , 12 years ago) |
---|
-
wp-signup.php
46 46 .mu_register { width: 90%; margin:0 auto; } 47 47 .mu_register form { margin-top: 2em; } 48 48 .mu_register .error { font-weight:700; padding:10px; color:#333333; background:#FFEBE8; border:1px solid #CC0000; } 49 .mu_register input[type="submit"],50 .mu_register #blog_title,51 .mu_register #user_email,52 .mu_register #blogname,53 .mu_register #user_name { width:100%; font-size: 24px; margin:5px 0; }54 49 .mu_register .prefix_address, 55 50 .mu_register .suffix_address {font-size: 18px;display:inline; } 56 51 .mu_register label { font-weight:700; font-size:15px; display:block; margin:10px 0; } 57 52 .mu_register label.checkbox { display:inline; } 58 .mu_register .mu_alert { font-weight:700; padding:10px; color:#333333; background:#ffffe0; border:1px solid #e6db55; }53 .mu_register .mu_alert { font-weight:700; padding:10px; color:#333333; background:#ffffe0; border:1px solid #e6db55; margin-top: 2em; } 59 54 </style> 60 55 <?php 61 56 } … … 163 158 if ( $errmsg = $errors->get_error_message('user_name') ) { 164 159 echo '<p class="error">'.$errmsg.'</p>'; 165 160 } 166 echo '<input name="user_name" type="text" id="user_name" value="'. esc_attr($user_name) .'" maxlength="60" /><br />'; 167 _e( '(Must be at least 4 characters, letters and numbers only.)' ); 161 echo '<input name="user_name" type="text" id="user_name" value="'. esc_attr($user_name) .'" maxlength="60" />'; 168 162 ?> 163 <p class="mu-instructions"><?php esc_html_e('(Must be at least 4 characters, letters and numbers only.)'); ?></p> 169 164 170 165 <label for="user_email"><?php _e( 'Email Address:' ) ?></label> 171 166 <?php if ( $errmsg = $errors->get_error_message('user_email') ) { ?> 172 167 <p class="error"><?php echo $errmsg ?></p> 173 168 <?php } ?> 174 <input name="user_email" type="text" id="user_email" value="<?php echo esc_attr($user_email) ?>" maxlength="200" /><br /><?php _e('We send your registration email to this address. (Double-check your email address before continuing.)') ?> 169 <input name="user_email" type="text" id="user_email" value="<?php echo esc_attr($user_email) ?>" maxlength="200" /> 170 <p class="mu-instructions"><?php esc_html_e('We send your registration email to this address. (Double-check your email address before continuing.)'); ?></p> 175 171 <?php 176 172 if ( $errmsg = $errors->get_error_message('generic') ) { 177 173 echo '<p class="error">' . $errmsg . '</p>'; -
wp-content/themes/twentythirteen/style.css
2171 2171 2172 2172 2173 2173 /** 2174 * 5.12 Comments 2174 * 5.12 Comments and Multisite front-end forms 2175 2175 * ---------------------------------------------------------------------------- 2176 2176 */ 2177 2177 2178 2178 .comments-title, 2179 2179 .comment-list, 2180 2180 #reply-title, 2181 #respond #commentform { 2181 #respond #commentform, 2182 .mu_register { 2182 2183 margin: 0 auto; 2183 2184 max-width: 604px; 2184 2185 width: 100%; … … 2372 2373 } 2373 2374 2374 2375 .form-allowed-tags, 2375 .form-allowed-tags code { 2376 .form-allowed-tags code, 2377 .mu-instructions { 2376 2378 color: #7d7b6d; 2377 2379 font-size: 12px; 2378 2380 }