Make WordPress Core


Ignore:
Timestamp:
09/24/2013 01:53:08 AM (13 years ago)
Author:
helen
Message:

Saner CSS for row actions - now we can just target .row-actions instead of both .row-actions and .row-actions-visible. CSS for .row-actions-visible remains for now due to usage in plugins. Visibility is controlled by toggling a .visible class. fixes #25403.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-list-table.php

    r25556 r25592  
    341341            return '';
    342342
    343         $out = '<div class="' . ( $always_visible ? 'row-actions-visible' : 'row-actions' ) . '">';
     343        $out = '<div class="' . ( $always_visible ? 'row-actions visible' : 'row-actions' ) . '">';
    344344        foreach ( $actions as $action => $link ) {
    345345            ++$i;
Note: See TracChangeset for help on using the changeset viewer.