Settings, password field: fix placement of the error icon and removal of the error class.
Props liljimmi, adamsilverstein. Fixes #33406 for trunk. git-svn-id: https://develop.svn.wordpress.org/trunk@34068 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
1a333bd537
commit
f855ddb134
@ -248,6 +248,19 @@ textarea[readonly] {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
/* Adjust error indicator for password layout */
|
||||
.form-table .form-required.user-pass1-wrap.form-invalid td:after {
|
||||
content: '';
|
||||
}
|
||||
|
||||
.form-table .form-required.user-pass1-wrap.form-invalid .password-input-wrapper:after {
|
||||
content: '\f534';
|
||||
font: normal 20px/1 dashicons;
|
||||
color: #dc3232;
|
||||
margin: 0 6px 0 -29px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.form-input-tip {
|
||||
color: #666;
|
||||
}
|
||||
|
@ -50,7 +50,7 @@ var wpAjax = jQuery.extend( {
|
||||
return true;
|
||||
},
|
||||
invalidateForm: function ( selector ) {
|
||||
return jQuery( selector ).addClass( 'form-invalid' ).find('input:visible').change( function() { jQuery(this).closest('.form-invalid').removeClass( 'form-invalid' ); } );
|
||||
return jQuery( selector ).addClass( 'form-invalid' ).find('input').one( 'change', function() { jQuery(this).closest('.form-invalid').removeClass( 'form-invalid' ); } );
|
||||
},
|
||||
validateForm: function( selector ) {
|
||||
selector = jQuery( selector );
|
||||
|
Loading…
x
Reference in New Issue
Block a user