Twenty Twelve: remove an unneeded, presentational class value, see #19978.

git-svn-id: http://svn.automattic.com/wordpress/trunk@20011 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
lancewillett 2012-02-28 05:28:08 +00:00
parent 240242aa06
commit 5750c6d41b
3 changed files with 4 additions and 3 deletions

View File

@ -18,7 +18,7 @@ get_header(); ?>
<div id="content" role="main">
<?php if ( have_posts() ) : ?>
<h1 class="archive-title all-caps-title"><?php
<h1 class="archive-title"><?php
if ( is_day() ) {
printf( __( 'Daily Archives: %s', 'twentytwelve' ), '<span>' . get_the_date() . '</span>' );
} elseif ( is_month() ) {

View File

@ -220,7 +220,7 @@ function twentytwelve_widgets_init() {
'id' => 'sidebar-1',
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => "</aside>",
'before_title' => '<h3 class="widget-title all-caps-title">',
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
) );
}

View File

@ -117,7 +117,8 @@ img {
/* patterns.scss
* Repeatable patterns
* ------------------------------------------------------------------ */
.all-caps-title {
.archive-title,
.widget-title {
text-transform: uppercase;
font-weight: 400;
font-size: 12px;