Twenty Fourteen: remove style tags from accent color output, following r25786. Fixes #25599, props celloexpressions.

git-svn-id: https://develop.svn.wordpress.org/trunk@25790 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Lance Willett 2013-10-15 17:56:00 +00:00
parent 58ad40a695
commit 0d51ae78cc

View File

@ -112,8 +112,7 @@ function twentyfourteen_customizer_styles() {
$accent_lighter = get_theme_mod( 'accent_lighter' );
$accent_much_lighter = get_theme_mod( 'accent_much_lighter' );
$css = '<style type="text/css" id="twentyfourteen-accent-color">
/* Custom accent color. */
$css = '/* Custom accent color. */
h1 a:hover,
h2 a:hover,
h3 a:hover,
@ -198,8 +197,7 @@ function twentyfourteen_customizer_styles() {
.featured-content .more-link,
.widget-area a:hover {
color: ' . $accent_much_lighter . ';
}
</style>';
}';
wp_add_inline_style( 'twentyfourteen-style', $css );
}