Make WordPress Core

Ticket #26496: 26496.patch

File 26496.patch, 1.5 KB (added by SergeyBiryukov, 12 years ago)
  • src/wp-admin/css/wp-admin.css

     
    63376337
    63386338.themes-php .wrap h2 {
    63396339        float: left;
    6340         margin-bottom: 15px;
     6340        margin-bottom: 30px;
    63416341}
    63426342
    63436343.themes-php .wrap h2 .button {
     
    66766676 * The search form
    66776677 */
    66786678.themes-php .theme-search {
     6679        clear: right;
     6680        float: right;
    66796681        position: relative;
    6680         top: -2px;
    6681         left: 20px;
     6682        top: 15px;
    66826683        font-size: 16px;
    66836684        font-weight: 300;
    66846685        line-height: 1.5;
     6686        width: 250px;
    66856687}
    66866688
    66876689/**
  • src/wp-admin/js/theme.js

     
    7070
    7171                // Render and append after screen title
    7272                view.render();
    73                 $('#wpbody h2:first').append( view.el );
     73                $('#wpbody h2:first').after( view.el );
     74                $('#wpbody h2:first').after( '<label class="screen-reader-text" for="theme-search-input">' + l10n.search + '</label>' );
    7475        },
    7576
    7677        // Checks when the user gets close to the bottom
  • src/wp-admin/themes.php

     
    106106        ),
    107107        'l10n' => array(
    108108                'addNew' => __( 'Add New Theme' ),
    109                 'search'  => __( 'Search...' ),
     109                'search'  => __( 'Search Installed Themes...' ),
    110110        ),
    111111) );
    112112