Make WordPress Core


Ignore:
Timestamp:
01/24/2014 07:05:15 PM (11 years ago)
Author:
azaozz
Message:

Remove all "valign" attributes from tables in wp-admin, props MikeHansenMe, Marventus. Fixes #22712.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/custom-header.php

    r26878 r27029  
    465465
    466466<?php if ( get_custom_header() || display_header_text() ) : ?>
    467 <tr valign="top">
     467<tr>
    468468<th scope="row"><?php _e( 'Preview' ); ?></th>
    469469<td>
     
    495495
    496496<?php if ( current_theme_supports( 'custom-header', 'uploads' ) ) : ?>
    497 <tr valign="top">
     497<tr>
    498498<th scope="row"><?php _e( 'Select Image' ); ?></th>
    499499<td>
     
    549549<tbody>
    550550    <?php if ( get_uploaded_header_images() ) : ?>
    551 <tr valign="top">
     551<tr>
    552552<th scope="row"><?php _e( 'Uploaded Images' ); ?></th>
    553553<td>
     
    560560    <?php endif;
    561561    if ( ! empty( $this->default_headers ) ) : ?>
    562 <tr valign="top">
     562<tr>
    563563<th scope="row"><?php _e( 'Default Images' ); ?></th>
    564564<td>
     
    575575    <?php endif;
    576576    if ( get_header_image() ) : ?>
    577 <tr valign="top">
     577<tr>
    578578<th scope="row"><?php _e( 'Remove Image' ); ?></th>
    579579<td>
     
    586586    $default_image = get_theme_support( 'custom-header', 'default-image' );
    587587    if ( $default_image && get_header_image() != $default_image ) : ?>
    588 <tr valign="top">
     588<tr>
    589589<th scope="row"><?php _e( 'Reset Image' ); ?></th>
    590590<td>
     
    603603<table class="form-table">
    604604<tbody>
    605 <tr valign="top">
     605<tr>
    606606<th scope="row"><?php _e( 'Header Text' ); ?></th>
    607607<td>
     
    612612</tr>
    613613
    614 <tr valign="top" class="displaying-header-text">
     614<tr class="displaying-header-text">
    615615<th scope="row"><?php _e( 'Text Color' ); ?></th>
    616616<td>
Note: See TracChangeset for help on using the changeset viewer.