Changeset 32805
- Timestamp:
- 06/16/2015 09:32:53 PM (9 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/list-tables.css
r32782 r32805 316 316 table.media .column-title .row-actions { 317 317 margin-left: 70px; /* 60px image + margin */ 318 } 319 320 table.media .column-title .media-info p { 321 margin-bottom: 0.2em; 318 322 } 319 323 -
trunk/src/wp-admin/includes/class-wp-media-list-table.php
r32800 r32805 628 628 * @access protected 629 629 * 630 * @param object $ link Linkbeing acted upon.630 * @param object $post Attachment being acted upon. 631 631 * @param string $column_name Current column name. 632 632 * @param string $primary Primary column name. 633 * @return string Row action output for links.634 */ 635 protected function handle_row_actions( $ link, $column_name, $primary ) {633 * @return string Row actions output for media attachments. 634 */ 635 protected function handle_row_actions( $post, $column_name, $primary ) { 636 636 if ( $primary === $column_name ) { 637 $att_title = _draft_or_post_title(); 637 638 return $this->row_actions( $this->_get_row_actions( $post, $att_title ) ); 638 639 }
Note: See TracChangeset
for help on using the changeset viewer.