Make WordPress Core


Ignore:
Timestamp:
11/21/2013 12:20:13 AM (10 years ago)
Author:
iammattthomas
Message:

Bring the install/update screens in line with the new admin design. This affects:

  • Creating a wp-config.php file
  • Installation
  • Database upgrade
  • Database repair
  • Readme.html
  • Network sites actions

What's changed:

  • Bring background/text/link/border colours in line with mp6
  • Bring fonts in line with mp6 (see note below)
  • Switch to device-width for the viewport and tweak margins etc so the layout works nicely on all device sizes
  • Switch to the new vector WordPress logo in the header to match the log in screen
  • Force table cells into rows in the <782px media query

Fixes #25951, props johnbillion.

File:
1 edited

Legend:

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

    r25657 r26298  
    5757<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
    5858<head>
     59    <meta name="viewport" content="width=device-width" />
    5960    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    6061    <title><?php _e( 'WordPress &rsaquo; Installation' ); ?></title>
     
    250251        break;
    251252}
     253if ( !wp_is_mobile() ) {
    252254?>
    253255<script type="text/javascript">var t = document.getElementById('weblog_title'); if (t){ t.focus(); }</script>
     256<?php } ?>
    254257<?php wp_print_scripts( 'user-profile' ); ?>
    255258</body>
Note: See TracChangeset for help on using the changeset viewer.