diff -u old/admin-header.php new/admin-header.php
old
|
new
|
|
95 | 95 | } |
96 | 96 | ?> |
97 | 97 | |
98 | | <img id="header-logo" src="../wp-includes/images/blank.gif" alt="" width="32" height="32" /> <h1 id="site-heading" <?php echo $title_class ?>><a href="<?php echo trailingslashit( get_bloginfo('url') ); ?>" title="<?php _e('Visit Site') ?>"><span id="site-title"><?php echo $blog_name ?></span> <em id="site-visit-button" class="site-title-button"><?php _e('Visit Site') ?></em></a><?php if ( ! get_option('blog_public') ) { ?> <a href="options-privacy.php" title="<?php esc_attr_e('Your blog is hidden from search engines') ?>"><em class="site-title-button"><?php _e('Privacy On') ?></em></a><?php } ?></h1> |
| 98 | <img id="header-logo" src="../wp-includes/images/blank.gif" alt="" width="32" height="32" /> <h1 id="site-heading" <?php echo $title_class ?>><a href="<?php echo trailingslashit( get_bloginfo('url') ); ?>" title="<?php esc_attr_e('Visit Site') ?>"><span id="site-title"><?php echo $blog_name ?></span> <em id="site-visit-button" class="site-title-button"><?php esc_html_e('Visit Site') ?></em></a><?php if ( ! get_option('blog_public') ) { ?><a id="privacy-on-link" class="site-title-button" href="options-privacy.php" title="<?php esc_attr_e('Your blog is hidden from search engines') ?>"> <?php esc_html_e('Privacy On') ?></a><?php } ?></h1> |
99 | 99 | |
100 | 100 | <div id="wphead-info"> |
101 | 101 | <div id="user_info"> |
diff -u old/wp-admin.dev.css new/wp-admin.dev.css
old
|
new
|
|
920 | 920 | vertical-align: middle; |
921 | 921 | } |
922 | 922 | |
| 923 | #wphead #privacy-on-link { |
| 924 | background:none; |
| 925 | color:#fff; |
| 926 | } |
| 927 | |
923 | 928 | #wphead h1 a:hover { |
924 | 929 | text-decoration:none; |
925 | 930 | } |
926 | | #wphead h1 a:hover #site-title { |
| 931 | #wphead h1 a:hover #site-title, |
| 932 | #wphead h1 #privacy-on-link:hover { |
927 | 933 | text-decoration:underline; |
928 | 934 | } |
929 | 935 | |