Change Close tab in Welcome Screen to a Dismiss link. Aligh bullets with paragraphs. Props georgestephanis, chexee. fixes #19271

git-svn-id: https://develop.svn.wordpress.org/trunk@19326 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2011-11-17 20:48:40 +00:00
parent bde6461ff4
commit 67600b73a3
8 changed files with 21 additions and 22 deletions

File diff suppressed because one or more lines are too long

View File

@ -706,10 +706,6 @@ table.widefat span.spam a,
.welcome-panel-column p {
color: #464646;
}
.welcome-panel .welcome-panel-close {
background: #eff8ff;
text-shadow: 1px 1px 1px #eff8ff;
}
.welcome-panel h3 {
text-shadow: 1px 1px 1px white;
}

File diff suppressed because one or more lines are too long

View File

@ -704,10 +704,6 @@ table.widefat span.spam a,
.welcome-panel-column p {
color: #464646;
}
.welcome-panel .welcome-panel-close {
background: #eee;
text-shadow: 1px 1px 1px #eee;
}
.welcome-panel h3 {
text-shadow: 1px 1px 1px white;
}

File diff suppressed because one or more lines are too long

View File

@ -2188,15 +2188,22 @@ body.admin-bar #adminmenu {
position: absolute;
top: 0;
right: 10px;
padding: 2px 12px;
font-size: 12px;
font-weight: bold;
padding: 8px 3px;
font-size: 13px;
text-decoration: none;
}
-webkit-border-bottom-left-radius: 3px;
-webkit-border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
.welcome-panel .welcome-panel-close:before {
background: url('../images/xit.gif') 0 17% no-repeat;
content: ' ';
height: 100%;
width: 10px;
left: -12px;
position: absolute;
}
.welcome-panel .welcome-panel-close:hover:before {
background-position: 100% 17%;
}
.welcome-panel .wp-badge {
@ -2223,7 +2230,7 @@ body.admin-bar #adminmenu {
}
.welcome-panel .welcome-panel-column ul {
margin-top: 1.6em;
margin: 1.6em 1em 1em 1.3em;
}
.welcome-panel .welcome-panel-column li {

View File

@ -1285,7 +1285,7 @@ function wp_welcome_panel() {
<?php wp_nonce_field( 'welcome-panel-nonce', 'welcomepanelnonce', false ); ?>
<a class="welcome-panel-close" href="#"><?php _e('Close'); ?></a>
<a class="welcome-panel-close" href="#"><?php _e('Dismiss'); ?></a>
<div class="wp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div>

View File

@ -432,13 +432,13 @@ function wp_default_styles( &$styles ) {
// Any rtl stylesheets that don't have a .dev version for ltr
$no_suffix = array( 'farbtastic' );
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20111116' );
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20111117' );
$styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20111015' );
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
// all colors stylesheets need to have the same query strings (cache manifest compat)
$colors_version = '20111115';
$colors_version = '20111117';
// Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string.
$styles->add( 'colors', true, array('wp-admin'), $colors_version );