Changeset 33623
- Timestamp:
- 08/17/2015 03:37:03 PM (10 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/list-tables.css
r33608 r33623 1765 1765 } 1766 1766 1767 .wp-list-table th:not(.column-primary), 1768 .wp-list-table th:not(.column-primary), 1769 .wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary):not(.check-column) { 1767 .wp-list-table th.column-primary ~ th, 1768 .wp-list-table tr:not(.inline-edit-row):not(.no-items) td.column-primary ~ td:not(.check-column) { 1770 1769 display: none; 1771 1770 } … … 1781 1780 } 1782 1781 1783 .wp-list-table . toggle-row {1782 .wp-list-table .column-primary .toggle-row { 1784 1783 display: block; 1785 1784 } … … 1796 1795 } 1797 1796 1798 .wp-list-table tr:not(.inline-edit-row):not(.no-items) td :not(.column-primary):not(.check-column) {1797 .wp-list-table tr:not(.inline-edit-row):not(.no-items) td.column-primary ~ td:not(.check-column) { 1799 1798 padding: 3px 8px 3px 35%; 1800 1799 } -
trunk/src/wp-admin/includes/class-wp-list-table.php
r33270 r33623 1259 1259 */ 1260 1260 protected function handle_row_actions( $item, $column_name, $primary ) { 1261 return '';1261 return $column_name == $primary ? '<button type="button" class="toggle-row"><span class="screen-reader-text">' . __( 'Show more details' ) . '</span></button>' : ''; 1262 1262 } 1263 1263
Note: See TracChangeset
for help on using the changeset viewer.