Make WordPress Core

Changeset 20458


Ignore:
Timestamp:
04/12/2012 10:03:57 PM (13 years ago)
Author:
koopersmith
Message:

Manage Themes: Improved separators (markup/styles) for current theme author/version. see #20403.

Location:
trunk/wp-admin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/css/wp-admin.dev.css

    r20456 r20458  
    43164316}
    43174317
     4318#current-theme .theme-info li,
    43184319.available-theme .action-links li {
    43194320    float: left;
     
    43234324}
    43244325
     4326#current-theme .theme-info li:last-child,
    43254327.available-theme .action-links li:last-child {
    43264328    padding-right: 0;
     
    43794381#current-theme a {
    43804382    border-bottom: none;
     4383}
     4384
     4385#current-theme .theme-info {
     4386    margin: 1em 0;
     4387    overflow: hidden;
    43814388}
    43824389
  • trunk/wp-admin/themes.php

    r20445 r20458  
    114114
    115115    <div>
    116         <p>
    117             <span><?php printf( __('By %s'), $ct->display('Author') ); ?></span>
    118             |
    119             <span><?php printf( __('Version %s'), $ct->display('Version') ); ?></span>
    120         </p>
     116        <ul class="theme-info">
     117            <li><?php printf( __('By %s'), $ct->display('Author') ); ?></li>
     118            <li><?php printf( __('Version %s'), $ct->display('Version') ); ?></li>
     119        </ul>
    121120        <p class="theme-description"><?php echo $ct->display('Description'); ?></p>
    122121        <?php theme_update_available( $ct ); ?>
Note: See TracChangeset for help on using the changeset viewer.