Make WordPress Core

Ticket #31654: 31654.patch

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

     
    464464}
    465465
    466466.widefat td,
    467 .widefat th {
     467.widefat th,
     468.widefat .th {
    468469        padding: 8px 10px;
    469470}
    470471
    471 .widefat thead th {
     472.widefat thead th,
     473.widefat thead .th {
    472474        border-bottom: 1px solid #e1e1e1;
    473475}
    474476
    475 .widefat tfoot th {
     477.widefat tfoot th,
     478.widefat tfoot .th {
    476479        border-top: 1px solid #e1e1e1;
    477480        border-bottom: none;
    478481}
     
    493496        line-height: 1.5em;
    494497}
    495498
    496 .widefat th {
     499.widefat th,
     500.widefat .th {
    497501        text-align: left;
    498502        line-height: 1.3em;
    499503        font-size: 14px;
    500504}
    501505
    502 .widefat th input {
     506.widefat th input,
     507.widefat .th input {
    503508        margin: 0 0 0 8px;
    504509        padding: 0;
    505510        vertical-align: text-top;
     
    523528        padding-top: 8px;
    524529}
    525530
    526 .widefat thead th.check-column,
     531.widefat thead .th.check-column,
    527532.widefat tbody th.check-column,
    528 .widefat tfoot th.check-column {
     533.widefat tfoot .th.check-column {
    529534        padding: 11px 0 0 3px;
    530535}
    531536
    532 .widefat thead th.check-column {
     537.widefat thead .th.check-column {
    533538        padding-top: 10px;
    534539}
    535540
     
    709714.side-info,
    710715#your-profile #rich_editing,
    711716.widefat thead th,
    712 .widefat tfoot th {
     717.widefat tfoot th,
     718.widefat tfoot .th {
    713719        line-height: 1.4em;
    714720}
    715721
     
    16601666        color: #555;
    16611667}
    16621668
    1663 .widefat th {
     1669.widefat th,
     1670.widefat .th {
    16641671        font-weight: normal;
    16651672}
    16661673
  • src/wp-admin/css/list-tables.css

     
    472472th.sorted a {
    473473        display: block;
    474474        overflow: hidden;
    475         padding: 7px 7px 8px 10px;
     475        padding: 8px 7px 8px 10px;
    476476}
    477477
    478478.fixed .column-comments.sortable a,
     
    10381038        font-size: 14px;
    10391039}
    10401040
    1041 .plugins thead th.check-column,
    1042 .plugins tfoot th.check-column,
     1041.plugins thead .th.check-column,
     1042.plugins tfoot .th.check-column,
    10431043.plugins .inactive th.check-column {
    10441044        padding-left: 6px;
    10451045}
    10461046
    1047 #update-plugins-table thead th.check-column,
    1048 #update-plugins-table tfoot th.check-column {
     1047#update-plugins-table thead .th.check-column,
     1048#update-plugins-table tfoot .th.check-column {
    10491049        padding-top: 11px;
    10501050}
    10511051
    10521052.plugins,
    10531053.plugins th,
     1054.plugins .th,
    10541055.plugins td {
    10551056        color: #000;
    10561057}
     
    18421843        }
    18431844
    18441845        .wp-list-table.plugins th.check-column,
     1846        .wp-list-table.plugins .th.check-column,
    18451847        .wp-list-table.plugins tr.update th.check-column {
    18461848                position: absolute;
    18471849                height: auto;
     
    18521854                padding-top: 18px;
    18531855        }
    18541856
    1855         .wp-list-table.plugins thead th.check-column,
    1856         .wp-list-table.plugins tfoot th.check-column {
     1857        .wp-list-table.plugins thead .th.check-column,
     1858        .wp-list-table.plugins tfoot .th.check-column {
    18571859                padding-left: 3px;
    18581860                padding-top: 11px;
    18591861                background: none;
     
    18611863
    18621864        .widefat tbody th.check-column input[type="checkbox"] {
    18631865                margin-top: -3px;
    1864                 margin-left: 8px;
     1866                margin-left: 9px;
    18651867        }
    18661868
    18671869        .wp-list-table.plugins .active .check-column input,
    1868         .wp-list-table.plugins .update .check-column input {
     1870        .wp-list-table.plugins .active.update .check-column input {
    18691871                margin-left: 5px;
    18701872        }
    18711873
  • src/wp-admin/includes/class-wp-list-table.php

     
    891891                        $style = ' style="' . $style . '"';
    892892
    893893                        if ( 'cb' == $column_key )
    894                                 $class[] = 'check-column';
     894                                $class[] = 'check-column th';
    895895                        elseif ( in_array( $column_key, array( 'posts', 'comments', 'links' ) ) )
    896896                                $class[] = 'num';
    897897
     
    916916                        if ( !empty( $class ) )
    917917                                $class = "class='" . join( ' ', $class ) . "'";
    918918
    919                         echo "<th scope='col' $id $class $style>$column_display_name</th>";
     919                        $th_or_td = 'cb' === $column_key ? 'td' : 'th scope="col"';
     920
     921                        echo "<$th_or_td $id $class $style>$column_display_name</th>";
    920922                }
    921923        }
    922924