Ticket #46005: 46005.3.diff
File 46005.3.diff, 1.3 KB (added by , 6 years ago) |
---|
-
src/js/_enqueues/admin/common.js
110 110 * @returns {string} The hidden column names separated by a comma. 111 111 */ 112 112 hidden : function() { 113 return $( '.manage-column[id]' ).filter( ' :hidden' ).map(function() {113 return $( '.manage-column[id]' ).filter( '.hidden' ).map(function() { 114 114 return this.id; 115 115 }).get().join( ',' ); 116 116 }, -
src/wp-admin/css/list-tables.css
1814 1814 display: block; 1815 1815 } 1816 1816 1817 /* Comment author hidden via Screen Options */ 1818 .fixed .column-author.hidden ~ .column-comment .comment-author { 1819 display: none; 1820 } 1821 1817 1822 #the-comment-list .is-expanded td { 1818 1823 box-shadow: none; 1819 1824 } … … 2034 2039 padding: 10px 9px; /* reset from other list tables that have a label at this width */ 2035 2040 } 2036 2041 2042 /* Plugin description hidden via Screen Options */ 2043 #wpbody-content .wp-list-table.plugins .desc.hidden { 2044 display: none; 2045 } 2046 2037 2047 #wpbody-content .wp-list-table.plugins .column-description { 2038 2048 padding-top: 2px; 2039 2049 }