Change Close tab in Welcome Screen to a Dismiss link. Aligh bullets with paragraphs. Props georgestephanis, chexee. fixes #19271
git-svn-id: http://svn.automattic.com/wordpress/trunk@19326 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
27a55d6459
commit
258bed4b6f
File diff suppressed because one or more lines are too long
|
@ -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
|
@ -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
|
@ -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 {
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -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 );
|
||||
|
|
Loading…
Reference in New Issue