Make WordPress Core


Ignore:
Timestamp:
03/20/2009 12:14:57 AM (17 years ago)
Author:
azaozz
Message:

More theme install styling, see #8652

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/plugin-install.php

    r10820 r10823  
    126126
    127127    <h4><?php _e('Search') ?></h4>
     128    <p class="install-help"><?php _e('Search for plugins by keyword, author, or tag.') ?></p>
    128129    <?php install_search_form(); ?>
    129130
    130131    <h4><?php _e('Install a plugin in .zip format') ?></h4>
    131     <p><?php _e('If you have a plugin in a .zip format, You may install it by uploading it here.') ?></p>
     132    <p class="install-help"><?php _e('If you have a plugin in a .zip format, You may install it by uploading it here.') ?></p>
    132133    <form method="post" enctype="multipart/form-data" action="<?php echo admin_url('plugin-install.php?tab=upload') ?>">
    133134        <?php wp_nonce_field( 'plugin-upload') ?>
     
    137138
    138139    <h4><?php _e('Popular tags') ?></h4>
    139     <p><?php _e('You may also browse based on the most popular tags in the Plugin Directory:') ?></p>
     140    <p class="install-help"><?php _e('You may also browse based on the most popular tags in the Plugin Directory:') ?></p>
    140141    <?php
    141142
     
    150151                                'id' => sanitize_title_with_dashes($tag['name']),
    151152                                'count' => $tag['count'] );
    152     echo '<p>';
     153    echo '<p class="popular-tags">';
    153154    echo wp_generate_tag_cloud($tags, array( 'single_text' => __('%d plugin'), 'multiple_text' => __('%d plugins') ) );
    154155    echo '</p><br class="clear" />';
     
    170171            <option value="tag"<?php selected('tag', $type) ?>><?php _e('Tag') ?></option>
    171172        </select>
    172         <input type="text" name="s" id="search-field" value="<?php echo attribute_escape($term) ?>" />
     173        <input type="text" name="s" class="search-input" value="<?php echo attribute_escape($term) ?>" />
    173174        <input type="submit" name="search" value="<?php echo attribute_escape(__('Search')) ?>" class="button" />
    174175    </form><?php
Note: See TracChangeset for help on using the changeset viewer.