Skip to content

Commit bbfbdea

Browse files
committed
CSS for the about.php point release changelog. props chexee, fixes #19346.
git-svn-id: https://develop.svn.wordpress.org/trunk@19542 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 44ab86d commit bbfbdea

7 files changed

Lines changed: 44 additions & 10 deletions

File tree

wp-admin/css/colors-classic.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

wp-admin/css/colors-classic.dev.css

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2168,8 +2168,7 @@ div.widgets-sortables,
21682168
color: #464646;
21692169
}
21702170

2171-
.about-wrap .feature-section img,
2172-
.about-wrap .feature-section .image-mask {
2171+
.about-wrap .feature-section img {
21732172
background: #fff;
21742173
border-color: #dfdfdf;
21752174

@@ -2178,6 +2177,18 @@ div.widgets-sortables,
21782177
box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
21792178
}
21802179

2180+
.about-wrap .point-releases {
2181+
border-bottom: 1px solid #dfdfdf;
2182+
}
2183+
2184+
.about-wrap .point-releases h3 {
2185+
border-top: 1px solid #dfdfdf;
2186+
}
2187+
2188+
.about-wrap .point-releases h3:first-child {
2189+
border: 0;
2190+
}
2191+
21812192
.about-wrap h4.wp-people-group {
21822193
text-shadow: 1px 1px 1px white;
21832194
}

wp-admin/css/colors-fresh.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

wp-admin/css/colors-fresh.dev.css

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1795,8 +1795,7 @@ div.widgets-sortables,
17951795
color: #464646;
17961796
}
17971797

1798-
.about-wrap .feature-section img,
1799-
.about-wrap .feature-section .image-mask {
1798+
.about-wrap .feature-section img {
18001799
background: #fff;
18011800
border-color: #dfdfdf;
18021801

@@ -1809,6 +1808,18 @@ div.widgets-sortables,
18091808
text-shadow: 1px 1px 1px white;
18101809
}
18111810

1811+
.about-wrap .point-releases {
1812+
border-bottom: 1px solid #dfdfdf;
1813+
}
1814+
1815+
.about-wrap .point-releases h3 {
1816+
border-top: 1px solid #dfdfdf;
1817+
}
1818+
1819+
.about-wrap .point-releases h3:first-child {
1820+
border: 0;
1821+
}
1822+
18121823
.about-wrap li.wp-person img.gravatar {
18131824
-moz-box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
18141825
-webkit-box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );

wp-admin/css/wp-admin.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

wp-admin/css/wp-admin.dev.css

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4893,6 +4893,18 @@ html.ie8 .about-wrap img.element-screenshot {
48934893
padding: 2px;
48944894
}
48954895

4896+
/* Point Releases */
4897+
4898+
.about-wrap .point-releases {
4899+
margin-top: 5px;
4900+
}
4901+
.about-wrap .changelog.point-releases h3 {
4902+
padding-top: 35px;
4903+
}
4904+
.about-wrap .changelog.point-releases h3:first-child {
4905+
padding-top: 7px;
4906+
}
4907+
48964908
/* WordPress Version Badge */
48974909

48984910
.wp-badge {
@@ -5077,7 +5089,7 @@ html.ie8 .about-wrap .feature-section.three-col img {
50775089
.about-wrap ul.wp-people-group {
50785090
overflow: hidden;
50795091
padding: 5px;
5080-
margin: 0 -5px;
5092+
margin: 0 -15px 0 -5px;
50815093
}
50825094
.about-wrap ul.compact {
50835095
margin-bottom: 0

wp-includes/script-loader.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -433,13 +433,13 @@ function wp_default_styles( &$styles ) {
433433
// Any rtl stylesheets that don't have a .dev version for ltr
434434
$no_suffix = array( 'farbtastic' );
435435

436-
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20111130b' );
436+
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20111202' );
437437

438438
$styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20111130' );
439439
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
440440

441441
// all colors stylesheets need to have the same query strings (cache manifest compat)
442-
$colors_version = '20111128';
442+
$colors_version = '20111202';
443443

444444
// Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string.
445445
$styles->add( 'colors', true, array('wp-admin'), $colors_version );

0 commit comments

Comments
 (0)