CSS for the about.php point release changelog. props chexee, fixes #19346.

git-svn-id: http://svn.automattic.com/wordpress/trunk@19542 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2011-12-02 17:21:24 +00:00
parent f046807b64
commit 35d5377887
7 changed files with 44 additions and 10 deletions

File diff suppressed because one or more lines are too long

View File

@ -2168,8 +2168,7 @@ div.widgets-sortables,
color: #464646;
}
.about-wrap .feature-section img,
.about-wrap .feature-section .image-mask {
.about-wrap .feature-section img {
background: #fff;
border-color: #dfdfdf;
@ -2178,6 +2177,18 @@ div.widgets-sortables,
box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
}
.about-wrap .point-releases {
border-bottom: 1px solid #dfdfdf;
}
.about-wrap .point-releases h3 {
border-top: 1px solid #dfdfdf;
}
.about-wrap .point-releases h3:first-child {
border: 0;
}
.about-wrap h4.wp-people-group {
text-shadow: 1px 1px 1px white;
}

File diff suppressed because one or more lines are too long

View File

@ -1795,8 +1795,7 @@ div.widgets-sortables,
color: #464646;
}
.about-wrap .feature-section img,
.about-wrap .feature-section .image-mask {
.about-wrap .feature-section img {
background: #fff;
border-color: #dfdfdf;
@ -1809,6 +1808,18 @@ div.widgets-sortables,
text-shadow: 1px 1px 1px white;
}
.about-wrap .point-releases {
border-bottom: 1px solid #dfdfdf;
}
.about-wrap .point-releases h3 {
border-top: 1px solid #dfdfdf;
}
.about-wrap .point-releases h3:first-child {
border: 0;
}
.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 );

File diff suppressed because one or more lines are too long

View File

@ -4893,6 +4893,18 @@ html.ie8 .about-wrap img.element-screenshot {
padding: 2px;
}
/* Point Releases */
.about-wrap .point-releases {
margin-top: 5px;
}
.about-wrap .changelog.point-releases h3 {
padding-top: 35px;
}
.about-wrap .changelog.point-releases h3:first-child {
padding-top: 7px;
}
/* WordPress Version Badge */
.wp-badge {
@ -5077,7 +5089,7 @@ html.ie8 .about-wrap .feature-section.three-col img {
.about-wrap ul.wp-people-group {
overflow: hidden;
padding: 5px;
margin: 0 -5px;
margin: 0 -15px 0 -5px;
}
.about-wrap ul.compact {
margin-bottom: 0

View File

@ -433,13 +433,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(), '20111130b' );
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20111202' );
$styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20111130' );
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
// all colors stylesheets need to have the same query strings (cache manifest compat)
$colors_version = '20111128';
$colors_version = '20111202';
// 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 );