diff --git a/src/wp-admin/css/install.css b/src/wp-admin/css/install.css
index a9a2cdf85f..df9eaca5a4 100644
a
|
b
|
label { |
81 | 81 | } |
82 | 82 | |
83 | 83 | #logo { |
84 | | margin: 6px 0 14px 0; |
85 | | padding: 0 0 7px 0; |
86 | | border-bottom: none; |
87 | | text-align: center |
88 | | } |
89 | | #logo a { |
| 84 | margin: -130px auto 25px; |
| 85 | padding: 0 0 25px 0; |
| 86 | width: 84px; |
| 87 | height: 84px; |
| 88 | overflow: hidden; |
90 | 89 | background-image: url(../images/w-logo-blue.png?ver=20131202); |
91 | 90 | background-image: none, url(../images/wordpress-logo.svg?ver=20131107); |
92 | 91 | background-size: 84px; |
93 | 92 | background-position: center top; |
94 | 93 | background-repeat: no-repeat; |
95 | 94 | color: #444; /* same as login.css */ |
96 | | height: 84px; |
97 | 95 | font-size: 20px; |
98 | 96 | font-weight: 400; |
99 | | line-height: 1.3; |
100 | | margin: -130px auto 25px; |
101 | | padding: 0; |
| 97 | line-height: 1.3em; |
102 | 98 | text-decoration: none; |
103 | | width: 84px; |
| 99 | text-align: center; |
104 | 100 | text-indent: -9999px; |
105 | 101 | outline: none; |
106 | | overflow: hidden; |
107 | | display: block; |
108 | 102 | } |
109 | 103 | |
110 | 104 | .step { |
diff --git a/src/wp-admin/install.php b/src/wp-admin/install.php
index 2168c03e18..fa0c31724a 100644
a
|
b
|
function display_header( $body_classes = '' ) { |
74 | 74 | <?php wp_admin_css( 'install', true ); ?> |
75 | 75 | </head> |
76 | 76 | <body class="wp-core-ui<?php echo $body_classes; ?>"> |
77 | | <p id="logo"><a href="<?php echo esc_url( __( 'https://wordpress.org/' ) ); ?>"><?php _e( 'WordPress' ); ?></a></p> |
| 77 | <p id="logo"><?php _e( 'WordPress' ); ?></p> |
78 | 78 | |
79 | 79 | <?php |
80 | 80 | } // End display_header(). |
diff --git a/src/wp-admin/setup-config.php b/src/wp-admin/setup-config.php
index f88e629f01..36eee67451 100644
a
|
b
|
function setup_config_display_header( $body_classes = array() ) { |
115 | 115 | <?php wp_admin_css( 'install', true ); ?> |
116 | 116 | </head> |
117 | 117 | <body class="<?php echo implode( ' ', $body_classes ); ?>"> |
118 | | <p id="logo"><a href="<?php echo esc_url( __( 'https://wordpress.org/' ) ); ?>"><?php _e( 'WordPress' ); ?></a></p> |
| 118 | <p id="logo"><?php _e( 'WordPress' ); ?></p> |
119 | 119 | <?php |
120 | 120 | } // End function setup_config_display_header(); |
121 | 121 | |