Blue styles for DFW toolbar, props jorbin, fixes #17436

git-svn-id: https://develop.svn.wordpress.org/trunk@17939 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2011-05-17 03:58:27 +00:00
parent f69b353866
commit 350adc7abe
7 changed files with 41 additions and 13 deletions

File diff suppressed because one or more lines are too long

View File

@ -2111,3 +2111,20 @@ div.widgets-sortables,
color: #777;
}
/* custom header & background pages */
/* full screen */
.wp-fullscreen-focus #wp-fullscreen-title,
.wp-fullscreen-focus #wp-fullscreen-container {
border-color: #BED1DD;
}
#fullscreen-topbar {
border-bottom-color: #D1E5EE;
background-image: -ms-linear-gradient(top, #f7fcfe, #eff8ff); /* IE10 */
background-image: -moz-linear-gradient(top, #f7fcfe, #eff8ff); /* Firefox */
background-image: -o-linear-gradient(top, #f7fcfe, #eff8ff); /* Opera */
background-image: -webkit-gradient(linear, left top, left bottom, from(#f7fcfe), to(#eff8ff)); /* old Webkit */
background-image: -webkit-linear-gradient(top, #f7fcfe, #eff8ff); /* new Webkit */
background-image: linear-gradient(top, #f7fcfe, #eff8ff); /* proposed W3C Markup */
}

File diff suppressed because one or more lines are too long

View File

@ -2111,3 +2111,20 @@ div.widgets-sortables,
color: #777;
}
/* custom header & background pages */
/* full screen */
.wp-fullscreen-focus #wp-fullscreen-title,
.wp-fullscreen-focus #wp-fullscreen-container {
border-color: #ccc;
}
#fullscreen-topbar {
border-bottom-color: #DFDFDF;
background-image: -ms-linear-gradient(top, #f4f4f4, #e9e9e9); /* IE10 */
background-image: -moz-linear-gradient(top, #f4f4f4, #e9e9e9); /* Firefox */
background-image: -o-linear-gradient(top, #f4f4f4, #e9e9e9); /* Opera */
background-image: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#e9e9e9)); /* old Webkit */
background-image: -webkit-linear-gradient(top, #f4f4f4, #e9e9e9); /* new Webkit */
background-image: linear-gradient(top, #f4f4f4, #e9e9e9); /* proposed W3C Markup */
}

File diff suppressed because one or more lines are too long

View File

@ -640,10 +640,6 @@ form.upgrade .hint {
transition-duration: 0.6s;
}
.wp-fullscreen-focus #wp-fullscreen-title,
.wp-fullscreen-focus #wp-fullscreen-container {
border-color: #ccc;
}
#wp_mce_fullscreen {
width: 100%;
@ -673,13 +669,11 @@ form.upgrade .hint {
top: 0;
left: 0;
z-index: 150050;
border-bottom: 1px solid #C6C6C6;
border-bottom-style: solid;
border-bottom-width: 1px;
min-width: 800px;
width: 100%;
height: 40px;
background-color: #d9d9d9;
background-image: -moz-linear-gradient(bottom, #d7d7d7, #e4e4e4);
background-image: -webkit-gradient(linear, left bottom, left top, from(#d7d7d7), to(#e4e4e4));
}
#wp-fullscreen-toolbar {

View File

@ -482,13 +482,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(), '20110515' );
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20110516' );
$styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20101102' );
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
// all colors stylesheets need to have the same query strings (cache manifest compat)
$colors_version = '20110515';
$colors_version = '20110516';
// Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string.
$styles->add( 'colors', true, array(), $colors_version );