Make WordPress Core

Changeset 9567


Ignore:
Timestamp:
11/08/2008 07:56:42 AM (16 years ago)
Author:
azaozz
Message:

Small styling fixes to themes.php

Location:
trunk/wp-admin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/themes.php

    r9565 r9567  
    103103<h2><?php echo wp_specialchars( $title ); ?></h2>
    104104
    105 <h2><?php _e('Current Theme'); ?></h2>
     105<h3><?php _e('Current Theme'); ?></h3>
    106106<div id="current-theme">
    107107<?php if ( $ct->screenshot ) : ?>
    108108<img src="<?php echo WP_CONTENT_URL . $ct->stylesheet_dir . '/' . $ct->screenshot; ?>" alt="<?php _e('Current theme preview'); ?>" />
    109109<?php endif; ?>
    110 <h3><?php printf(_c('%1$s %2$s by %3$s|1: theme title, 2: theme version, 3: theme author'), $ct->title, $ct->version, $ct->author) ; ?></h3>
     110<h4><?php printf(_c('%1$s %2$s by %3$s|1: theme title, 2: theme version, 3: theme author'), $ct->title, $ct->version, $ct->author) ; ?></h4>
    111111<p class="description"><?php echo $ct->description; ?></p>
    112112<?php if ($ct->parent_theme) { ?>
     
    122122</div>
    123123
    124 <h2><?php _e('Available Themes'); ?></h2>
    125 <br class="clear" />
     124<h3><?php _e('Available Themes'); ?></h3>
     125<div class="clear"></div>
    126126
    127127<?php if ( $page_links ) : ?>
  • trunk/wp-admin/wp-admin.css

    r9564 r9567  
    6565    border-bottom: 1px solid #ccc;
    6666    margin: 10px auto;
     67    width: 100%;
    6768}
    6869
     
    112113
    113114#current-theme {
    114     margin-top: 1em;
     115    margin: 1em 0 1.5em;
    115116}
    116117
     
    30123013    padding: 20px 12px 0;
    30133014}
     3015
     3016br.clear {
     3017    height: 2px;
     3018    line-height: 2px;
     3019}
Note: See TracChangeset for help on using the changeset viewer.