Make WordPress Core

Ticket #34267: 34267.patch

File 34267.patch, 2.4 KB (added by afercia, 10 years ago)
  • src/wp-admin/css/common.css

     
    15791579        font-weight: 600;
    15801580}
    15811581
    1582 .ie8 #screen-options-wrap legend {
     1582#request-filesystem-credentials-form legend {
     1583        font-size: 1em;
     1584        padding: 1.33em 0;
     1585        font-weight: 600;
     1586}
     1587
     1588.ie8 #screen-options-wrap legend,
     1589#request-filesystem-credentials-form legend {
    15831590        color: inherit;
    15841591}
    15851592
  • src/wp-admin/includes/file.php

     
    11381138</script>
    11391139<form action="<?php echo esc_url( $form_post ) ?>" method="post">
    11401140<div id="request-filesystem-credentials-form" class="request-filesystem-credentials-form">
    1141 <h3 id="request-filesystem-credentials-title"><?php _e( 'Connection Information' ) ?></h3>
     1141<h2 id="request-filesystem-credentials-title"><?php _e( 'Connection Information' ) ?></h2>
    11421142<p id="request-filesystem-credentials-desc"><?php
    11431143        $label_user = __('Username');
    11441144        $label_pass = __('Password');
     
    11761176        </label>
    11771177</div>
    11781178<?php if ( isset($types['ssh']) ) : ?>
    1179 <h4><?php _e('Authentication Keys') ?></h4>
     1179<fieldset>
     1180<legend><?php _e( 'Authentication Keys' ); ?></legend>
    11801181<label for="public_key">
    11811182        <span class="field-title"><?php _e('Public Key:') ?></span>
    11821183        <input name="public_key" type="text" id="public_key" aria-describedby="auth-keys-desc" value="<?php echo esc_attr($public_key) ?>"<?php disabled( defined('FTP_PUBKEY') ); ?> />
     
    11851186        <span class="field-title"><?php _e('Private Key:') ?></span>
    11861187        <input name="private_key" type="text" id="private_key" value="<?php echo esc_attr($private_key) ?>"<?php disabled( defined('FTP_PRIKEY') ); ?> />
    11871188</label>
     1189</fieldset>
    11881190<span id="auth-keys-desc"><?php _e('Enter the location on the server where the public and private keys are located. If a passphrase is needed, enter that in the password field above.') ?></span>
    11891191<?php endif; ?>
    1190 <h4><?php _e('Connection Type') ?></h4>
    1191 <fieldset><legend class="screen-reader-text"><span><?php _e('Connection Type') ?></span></legend>
     1192<fieldset>
     1193<legend><?php _e( 'Connection Type' ); ?></legend>
    11921194<?php
    11931195        $disabled = disabled( (defined('FTP_SSL') && FTP_SSL) || (defined('FTP_SSH') && FTP_SSH), true, false );
    11941196        foreach ( $types as $name => $text ) : ?>