Blue theme styles for welcome panel and about pages. see #11651, 18742.

git-svn-id: https://develop.svn.wordpress.org/trunk@19164 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Daryl Koopersmith 2011-11-05 02:06:56 +00:00
parent 986602c14c
commit d7f0b07a8e
3 changed files with 105 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -704,6 +704,23 @@ table.widefat span.spam a,
color: #bc0b0b;
}
.welcome-panel {
border-color: #d1e5ee;
}
.welcome-panel p {
color: #777;
}
.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;
}
.widget,
#widget-list .widget-top,
.postbox,
@ -2105,6 +2122,92 @@ div.widgets-sortables,
border-bottom-color: #D1E5EE;
}
/* Begin About Pages */
.about-wrap h1 {
color: #333;
text-shadow: 1px 1px 1px white;
}
.about-text {
color: #777;
}
.wp-badge {
color: #fff;
text-shadow: 0 -1px 0 #0c3d57;
border-color: #2B5173;
-moz-box-shadow: inset 0 0 0 1px #5F8CA8;
-webkit-box-shadow: inset 0 0 0 1px #5F8CA8;
box-shadow: inset 0 0 0 1px #5F8CA8;
background-color: #378aac;
background-image: url(../images/wp-badge.png);
background-image: url(../images/wp-badge.png), -ms-linear-gradient(top, #378aac, #165d84); /* IE10 */
background-image: url(../images/wp-badge.png), -moz-linear-gradient(top, #378aac, #165d84); /* Firefox */
background-image: url(../images/wp-badge.png), -o-linear-gradient(top, #378aac, #165d84); /* Opera */
background-image: url(../images/wp-badge.png), -webkit-gradient(linear, left top, left bottom, from(#378aac), to(#165d84)); /* old Webkit */
background-image: url(../images/wp-badge.png), -webkit-linear-gradient(top, #378aac, #165d84); /* new Webkit */
background-image: url(../images/wp-badge.png), linear-gradient(top, #378aac, #165d84); /* proposed W3C Markup */
}
.about-wrap h2 .nav-tab {
color: #21759B;
}
.about-wrap h2 .nav-tab:hover {
color: #d54e21;
}
.about-wrap h2 .nav-tab-active,
.about-wrap h2 .nav-tab-active:hover {
color: #333;
}
.about-wrap h2 .nav-tab-active {
text-shadow: 1px 1px 1px white;
color: #464646;
}
.about-wrap h3 {
color: #333;
text-shadow: 1px 1px 1px white;
}
.about-wrap .feature-section h4 {
color: #464646;
}
.about-wrap .feature-section img {
background: #f9f9f9;
border-color: #dfdfdf;
-moz-box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
-webkit-box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
}
.about-wrap h4.wp-people-group {
text-shadow: 1px 1px 1px white;
}
.about-wrap li.wp-person img.gravatar {
-moz-box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
-webkit-box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
}
.about-wrap li.wp-person .title {
color: #464646;
text-shadow: 1px 1px 1px white;
}
.freedoms-php .about-wrap ol li {
color: #999;
}
.freedoms-php .about-wrap ol p {
color: #464646;
}
/* End About Pages */
/*------------------------------------------------------------------------------
2.0 - Right to Left Styles

View File

@ -437,7 +437,7 @@ function wp_default_styles( &$styles ) {
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
// all colors stylesheets need to have the same query strings (cache manifest compat)
$colors_version = '20111104a';
$colors_version = '20111104b';
// 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 );