Make WordPress Core

Ticket #46005: 46005.3.diff

File 46005.3.diff, 1.3 KB (added by afercia, 6 years ago)
  • src/js/_enqueues/admin/common.js

     
    110110         * @returns {string} The hidden column names separated by a comma.
    111111         */
    112112        hidden : function() {
    113                 return $( '.manage-column[id]' ).filter( ':hidden' ).map(function() {
     113                return $( '.manage-column[id]' ).filter( '.hidden' ).map(function() {
    114114                        return this.id;
    115115                }).get().join( ',' );
    116116        },
  • src/wp-admin/css/list-tables.css

     
    18141814                display: block;
    18151815        }
    18161816
     1817        /* Comment author hidden via Screen Options */
     1818        .fixed .column-author.hidden ~ .column-comment .comment-author {
     1819                display: none;
     1820        }
     1821
    18171822        #the-comment-list .is-expanded td {
    18181823                box-shadow: none;
    18191824        }
     
    20342039                padding: 10px 9px; /* reset from other list tables that have a label at this width */
    20352040        }
    20362041
     2042        /* Plugin description hidden via Screen Options */
     2043        #wpbody-content .wp-list-table.plugins .desc.hidden {
     2044                display: none;
     2045        }
     2046
    20372047        #wpbody-content .wp-list-table.plugins .column-description {
    20382048                padding-top: 2px;
    20392049        }