Make WordPress Core

Changeset 10012


Ignore:
Timestamp:
12/02/2008 07:00:48 PM (16 years ago)
Author:
ryan
Message:

Show actions on hover for links and media.

Location:
trunk/wp-admin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit-attachment-rows.php

    r9980 r10012  
    8787        $action_count = count($actions);
    8888        $i = 0;
     89        echo '<div class="row-actions">';
    8990        foreach ( $actions as $action => $link ) {
    9091            ++$i;
     
    9293            echo "<span class='$action'>$link$sep</span>";
    9394        }
     95        echo '</div>';
    9496        ?></p></td>
    9597        <?php
  • trunk/wp-admin/link-manager.php

    r9967 r10012  
    198198                    $action_count = count($actions);
    199199                    $i = 0;
     200                    echo '<div class="row-actions">';
    200201                    foreach ( $actions as $action => $linkaction ) {
    201202                        ++$i;
     
    203204                        echo "<span class='$action'>$linkaction$sep</span>";
    204205                    }
     206                    echo '</div>';
    205207                    echo '</td>';
    206208                    break;
Note: See TracChangeset for help on using the changeset viewer.