Make WordPress Core

Ticket #49231: 49231.remove-br.diff

File 49231.remove-br.diff, 3.0 KB (added by sabernhardt, 4 years ago)

cancels float on search-plugins form element and removes <br class="clear">

  • src/wp-admin/css/common.css

     
    10861086        margin: 0;
    10871087}
    10881088
     1089/* Use flexbox only on the plugins install page. The children `filter-links` and search form will become flex items. */
     1090.plugin-install-php .wp-filter {
     1091        display: flex;
     1092        flex-wrap: wrap;
     1093        justify-content: space-between;
     1094}
     1095
    10891096.wp-filter .search-form.search-plugins {
     1097        float: none;
     1098        margin-top: 0;
     1099}
     1100
     1101.wp-filter .search-form.search-plugins select,
     1102.wp-filter .search-form.search-plugins .wp-filter-search {
    10901103        display: inline-block;
     1104        margin-top: 10px;
     1105        vertical-align: top;
    10911106}
    10921107
    10931108.wp-filter .button.drawer-toggle {
     
    39683983        .wp-filter .search-form input[type="search"] {
    39693984                font-size: 1rem;
    39703985        }
     3986
     3987        .wp-filter .search-form.search-plugins {
     3988                /* This element is a flex item. */
     3989                min-width: 100%;
     3990        }
    39713991}
    39723992
    39733993/* Smartphone */
  • src/wp-admin/css/list-tables.css

     
    20942094                line-height: 1.5;
    20952095        }
    20962096
     2097        .plugins tbody th.check-column {
     2098                padding: 8px 0 0 5px;
     2099        }
     2100
     2101        .plugins thead td.check-column,
     2102        .plugins tfoot td.check-column,
     2103        .plugins .inactive th.check-column {
     2104                padding-left: 9px;
     2105        }
     2106
    20972107        /* Add New plugins page */
    20982108        table.plugin-install .column-name,
    20992109        table.plugin-install .column-version,
  • src/wp-admin/includes/plugin-install.php

     
    334334                        <option value="author"<?php selected( 'author', $type ); ?>><?php _e( 'Author' ); ?></option>
    335335                        <option value="tag"<?php selected( 'tag', $type ); ?>><?php _ex( 'Tag', 'Plugin Installer' ); ?></option>
    336336                </select>
    337                 <label><span class="screen-reader-text"><?php _e( 'Search Plugins' ); ?></span>
    338                         <input type="search" name="s" value="<?php echo esc_attr( $term ); ?>" class="wp-filter-search" placeholder="<?php esc_attr_e( 'Search plugins...' ); ?>" />
    339                 </label>
     337                <label class="screen-reader-text" for="search-plugins"><?php _e( 'Search Plugins' ); ?></label>
     338                <input type="search" name="s" id="search-plugins" value="<?php echo esc_attr( $term ); ?>" class="wp-filter-search" placeholder="<?php esc_attr_e( 'Search plugins...' ); ?>" />
    340339                <?php submit_button( __( 'Search Plugins' ), 'hide-if-js', false, false, array( 'id' => 'search-submit' ) ); ?>
    341340        </form>
    342341        <?php
  • src/wp-admin/plugin-install.php

     
    158158        </div>
    159159        <?php
    160160        $wp_list_table->views();
    161         echo '<br class="clear" />';
    162161}
    163162
    164163/**