- Timestamp:
- 06/15/2015 03:19:30 AM (9 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/edit.css
r32677 r32777 522 522 position: fixed; 523 523 top: 30%; 524 max-height: 70%; 524 525 left: 50%; 525 526 width: 450px; … … 530 531 line-height: 1.5; 531 532 z-index: 1000005; 533 overflow-y: auto; 532 534 } 533 535 -
trunk/src/wp-admin/css/forms.css
r32772 r32777 863 863 .request-filesystem-credentials-dialog .notification-dialog { 864 864 top: 15%; 865 max-height: 85%; 865 866 } 866 867 … … 1172 1173 width: 100%; 1173 1174 height: 100%; 1175 max-height: 100%; 1174 1176 position: fixed; 1175 1177 top: 0; 1176 1178 margin: 0; 1177 1179 left: 0; 1178 overflow-y: auto;1179 1180 } 1180 1181 } -
trunk/src/wp-admin/js/updates.js
r32776 r32777 468 468 }); 469 469 470 // Hide SSH fields when not selected 471 $( '#request-filesystem-credentials-dialog input[name="connection_type"]' ).on( 'change', function() { 472 $( this ).parents( 'form' ).find( '#private_key, #public_key' ).parents( 'label' ).toggle( ( 'ssh' == $( this ).val() ) ); 473 }).change(); 474 470 475 // Click handler for plugin updates in List Table view. 471 476 $( '.plugin-update-tr' ).on( 'click', '.update-link', function( e ) { … … 491 496 } ); 492 497 493 //494 498 $( '#plugin_update_from_iframe' ).on( 'click' , function( e ) { 495 499 var target, data;
Note: See TracChangeset
for help on using the changeset viewer.