Twenty Fifteen: clean up of twentyfifteen_color_scheme_css_template() in customizer.php. Props iamtakashi. Fixes #30601.

Built from https://develop.svn.wordpress.org/trunk@30763


git-svn-id: http://core.svn.wordpress.org/trunk@30753 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Ozz 2014-12-07 02:40:21 +00:00
parent ef0501e1bc
commit adf4f440f5
2 changed files with 5 additions and 8 deletions

View File

@ -82,7 +82,7 @@ add_action( 'customize_register', 'twentyfifteen_customize_register', 11 );
* The order of colors in a colors array:
* 1. Main Background Color.
* 2. Sidebar Background Color.
* 3. Box Background Bolor.
* 3. Box Background Color.
* 4. Main Text and Link Color.
* 5. Sidebar Text and Link Color.
* 6. Meta Box Background Color.
@ -460,6 +460,7 @@ function twentyfifteen_color_scheme_css_template() {
.main-navigation ul,
.main-navigation li,
.post-navigation,
.post-navigation div + div,
.pagination,
.comment-navigation,
.widget li,
@ -468,13 +469,13 @@ function twentyfifteen_color_scheme_css_template() {
.widget_pages .children,
.site-header,
.site-footer,
.hentry .hentry,
.hentry + .hentry,
.author-info,
.entry-content .page-links a,
.page-links > span,
.page-header,
.comments-area,
.comment-list .comment-respond,
.comment-list + .comment-respond,
.comment-list article,
.comment-list .pingback,
.comment-list .trackback,
@ -484,10 +485,6 @@ function twentyfifteen_color_scheme_css_template() {
border-color: {{ data.border_color }};
}
.post-navigation div + div {
border-color: {{ data.border_color }};
}
/* Border Focus Color */
a:focus,
button:focus,

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.1-beta2-30762';
$wp_version = '4.1-beta2-30763';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.