twentyeleven code tidy up. Props dd32, lancewillett. fixes #17748

git-svn-id: http://svn.automattic.com/wordpress/trunk@18385 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2011-06-30 21:57:50 +00:00
parent bd2e887655
commit fdc7409251
8 changed files with 101 additions and 83 deletions

View File

@ -322,7 +322,7 @@ section.feature-image.large img {
/* Featured Slider */ /* Featured Slider */
.featured-posts { .featured-posts {
border-color: #222; border-color: #222;
} }
.featured-posts section.featured-post { .featured-posts section.featured-post {
background: #000; background: #000;
@ -594,7 +594,7 @@ li.bypostauthor a.comment-reply-link:active {
/* Comments */ /* Comments */
.commentlist > li.comment { .commentlist > li.comment {
} }
/* Post author highlighting */ /* Post author highlighting */
.commentlist > li.bypostauthor { .commentlist > li.bypostauthor {
color: #333; color: #333;

View File

@ -16,6 +16,8 @@
<div class="entry-content"> <div class="entry-content">
<?php the_content(); ?> <?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'twentyeleven' ) . '</span>', 'after' => '</div>' ) ); ?> <?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'twentyeleven' ) . '</span>', 'after' => '</div>' ) ); ?>
<?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
</div><!-- .entry-content --> </div><!-- .entry-content -->
<footer class="entry-meta">
<?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
</footer><!-- .entry-meta -->
</article><!-- #post-<?php the_ID(); ?> --> </article><!-- #post-<?php the_ID(); ?> -->

View File

@ -26,17 +26,22 @@
<footer class="entry-meta"> <footer class="entry-meta">
<?php <?php
/* translators: used between list items, there is a space after the comma */
$categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) );
/* translators: used between list items, there is a space after the comma */ /* translators: used between list items, there is a space after the comma */
$tag_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) ); $tag_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) );
if ( '' != $tag_list ) { if ( '' != $tag_list ) {
$utility_text = __( 'This entry was posted in %1$s and tagged %2$s by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyeleven' ); $utility_text = __( 'This entry was posted in %1$s and tagged %2$s by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyeleven' );
} else { } elseif ( '' != $categories_list ) {
$utility_text = __( 'This entry was posted in %1$s by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyeleven' ); $utility_text = __( 'This entry was posted in %1$s by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyeleven' );
} else {
$utility_text = __( 'This entry was posted by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyeleven' );
} }
printf( printf(
$utility_text, $utility_text,
/* translators: used between list items, there is a space after the comma */ $categories_list,
get_the_category_list( __( ', ', 'twentyeleven' ) ),
$tag_list, $tag_list,
esc_url( get_permalink() ), esc_url( get_permalink() ),
the_title_attribute( 'echo=0' ), the_title_attribute( 'echo=0' ),

View File

@ -4,10 +4,10 @@ Theme Name: Twenty Eleven
/* /*
Used to style the TinyMCE editor. Used to style the TinyMCE editor.
*/ */
html .mceContentBody{ html .mceContentBody {
direction:rtl; direction: rtl;
unicode-bidi:embed; unicode-bidi: embed;
float:right; float: right;
max-width: 584px; max-width: 584px;
} }
* { * {

View File

@ -500,7 +500,7 @@ function twentyeleven_comment( $comment, $args, $depth ) {
case 'trackback' : case 'trackback' :
?> ?>
<li class="post pingback"> <li class="post pingback">
<p><?php _e( 'Pingback:', 'twentyeleven' ); ?> <?php comment_author_link(); ?><?php edit_comment_link( __( '(Edit)', 'twentyeleven' ), ' ' ); ?></p> <p><?php _e( 'Pingback:', 'twentyeleven' ); ?> <?php comment_author_link(); ?><?php edit_comment_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?></p>
<?php <?php
break; break;
default : default :
@ -528,7 +528,7 @@ function twentyeleven_comment( $comment, $args, $depth ) {
); );
?> ?>
<?php edit_comment_link( __( '[Edit]', 'twentyeleven' ), ' ' ); ?> <?php edit_comment_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
</div><!-- .comment-author .vcard --> </div><!-- .comment-author .vcard -->
<?php if ( $comment->comment_approved == '0' ) : ?> <?php if ( $comment->comment_approved == '0' ) : ?>

View File

@ -165,7 +165,7 @@ function twentyeleven_get_default_theme_options() {
'theme_layout' => 'content-sidebar', 'theme_layout' => 'content-sidebar',
); );
if ( is_rtl() ) if ( is_rtl() )
$default_theme_options['theme_layout'] = 'sidebar-content'; $default_theme_options['theme_layout'] = 'sidebar-content';
return apply_filters( 'twentyeleven_default_theme_options', $default_theme_options ); return apply_filters( 'twentyeleven_default_theme_options', $default_theme_options );

View File

@ -85,7 +85,7 @@ ul, ol {
margin: 0 2.5em 1.625em 0; margin: 0 2.5em 1.625em 0;
} }
.ltr ul, ol { .ltr ul, ol {
margin: 0 0 1.625em 2.5em; margin: 0 0 1.625em 2.5em;
} }
blockquote { blockquote {
font-family: Arial, sans-serif; font-family: Arial, sans-serif;

View File

@ -265,11 +265,11 @@ body {
} }
.one-column.singular .entry-meta .edit-link a { .one-column.singular .entry-meta .edit-link a {
position: absolute; position: absolute;
left: 0px; left: 0;
top: 40px; top: 40px;
} }
.one-column.singular #author-info { .one-column.singular #author-info {
margin: 2.2em -8.8% 0px; margin: 2.2em -8.8% 0;
padding: 20px 8.8%; padding: 20px 8.8%;
} }
/* Make sure we have room for our comment avatars */ /* Make sure we have room for our comment avatars */
@ -822,18 +822,21 @@ dl.gallery-item {
.page-link span { .page-link span {
margin-right: 6px; margin-right: 6px;
} }
.entry-meta .edit-link a { .entry-meta .edit-link a,
.commentlist .edit-link a {
background: #eee; background: #eee;
-moz-border-radius: 3px; -moz-border-radius: 3px;
border-radius: 3px; border-radius: 3px;
color: #666; color: #666;
float: right; float: right;
font-size: 12px; font-size: 12px;
line-height: 1.5em;
font-weight: 300; font-weight: 300;
text-decoration: none; text-decoration: none;
padding: 0px 8px; padding: 0 8px;
} }
.entry-meta .edit-link a:hover { .entry-meta .edit-link a:hover,
.commentlist .edit-link a:hover {
background: #888; background: #888;
color: #fff; color: #fff;
} }
@ -890,7 +893,7 @@ p img,
} }
.wp-caption .wp-caption-text { .wp-caption .wp-caption-text {
margin-bottom: 0.6em; margin-bottom: 0.6em;
padding: 10px 0px 5px 40px; padding: 10px 0 5px 40px;
position: relative; position: relative;
} }
.wp-caption .wp-caption-text:before { .wp-caption .wp-caption-text:before {
@ -908,25 +911,25 @@ p img,
margin: 0 auto 1.625em; margin: 0 auto 1.625em;
} }
#content .gallery a img { #content .gallery a img {
border: none; border: none;
} }
img#wpstats { img#wpstats {
display: block; display: block;
margin: 0 auto 1.625em; margin: 0 auto 1.625em;
} }
#content .gallery-columns-4 .gallery-item { #content .gallery-columns-4 .gallery-item {
width:23%; width: 23%;
padding-right:2%; padding-right: 2%;
} }
#content .gallery-columns-4 .gallery-item img { #content .gallery-columns-4 .gallery-item img {
width:100%; width: 100%;
height:auto; height: auto;
} }
/* Image borders */ /* Image borders */
img[class*="align"], img[class*="align"],
img[class*="wp-image-"], img[class*="wp-image-"],
#content .gallery .gallery-icon img { /* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */ #content .gallery .gallery-icon img {/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
border: 1px solid #ddd; border: 1px solid #ddd;
padding: 6px; padding: 6px;
} }
@ -941,13 +944,13 @@ a:hover img[class*="wp-image-"],
a:active img[class*="wp-image-"], a:active img[class*="wp-image-"],
#content .gallery .gallery-icon a:focus img, #content .gallery .gallery-icon a:focus img,
#content .gallery .gallery-icon a:hover img, #content .gallery .gallery-icon a:hover img,
#content .gallery .gallery-icon a:active img { /* Add some useful style to those fancy borders for linked images ... */ #content .gallery .gallery-icon a:active img {/* Add some useful style to those fancy borders for linked images ... */
background: #eee; background: #eee;
border-color: #bbb; border-color: #bbb;
} }
.wp-caption a:focus img, .wp-caption a:focus img,
.wp-caption a:active img, .wp-caption a:active img,
.wp-caption a:hover img { /* ... including captioned images! */ .wp-caption a:hover img {/* ... including captioned images! */
background: #fff; background: #fff;
border-color: #ddd; border-color: #ddd;
} }
@ -1029,13 +1032,13 @@ a:active img[class*="wp-image-"],
color: rgba(255,255,255,0.8); color: rgba(255,255,255,0.8);
} }
.entry-header .comments-link .leave-reply { .entry-header .comments-link .leave-reply {
visibility: hidden; visibility: hidden;
} }
/* /*
Post Formats Headings Post Formats Headings
To hide the headings, display: none the ".entry-header .entry-format" selector, To hide the headings, display: none the ".entry-header .entry-format" selector,
and remove the padding rules below. and remove the padding rules below.
*/ */
.entry-header .entry-format { .entry-header .entry-format {
color: #666; color: #666;
@ -1223,7 +1226,7 @@ blockquote.pull {
margin-bottom: 0; margin-bottom: 0;
} }
.indexed.format-image footer.entry-meta { .indexed.format-image footer.entry-meta {
background: #e0e6e8; background: #ddd;
margin-top: -7px; margin-top: -7px;
padding: 20px 30px; padding: 20px 30px;
overflow: hidden; overflow: hidden;
@ -1245,6 +1248,9 @@ blockquote.pull {
.indexed.format-image footer.entry-meta a { .indexed.format-image footer.entry-meta a {
color: #444; color: #444;
} }
.indexed.format-image footer.entry-meta a:hover {
color: #fff;
}
#content .indexed.format-image img { #content .indexed.format-image img {
border: none; border: none;
max-width: 100%; max-width: 100%;
@ -1328,7 +1334,7 @@ article.intro .entry-title {
article.intro .entry-content { article.intro .entry-content {
color: #111; color: #111;
font-size: 16px; font-size: 16px;
padding: 1.625em 0px 0.625em; padding: 1.625em 0 0.625em;
} }
article.intro .edit-link a { article.intro .edit-link a {
background: #aaa; background: #aaa;
@ -1336,7 +1342,7 @@ article.intro .edit-link a {
border-radius: 3px; border-radius: 3px;
color: #fff; color: #fff;
font-size: 12px; font-size: 12px;
padding: 0px 8px; padding: 0 8px;
position: absolute; position: absolute;
top: 30px; top: 30px;
right: 20px; right: 20px;
@ -1511,8 +1517,8 @@ section.feature-image.large img {
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C */ background: linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C */
width: 100%; width: 100%;
height: 45px; height: 45px;
position: absolute; position: absolute;
top: 230px; top: 230px;
} }
.featured-post .feature-image.small:after { .featured-post .feature-image.small:after {
@ -1966,7 +1972,7 @@ a.comment-reply-link {
color: #666; color: #666;
display: inline-block; display: inline-block;
font-size: 12px; font-size: 12px;
padding: 0px 8px; padding: 0 8px;
text-decoration: none; text-decoration: none;
} }
a.comment-reply-link:hover, a.comment-reply-link:hover,
@ -2104,10 +2110,10 @@ a.comment-reply-link > span {
color: #eee; color: #eee;
cursor: pointer; cursor: pointer;
font-size: 15px; font-size: 15px;
left: 30px;
margin: 20px 0; margin: 20px 0;
padding: 5px 42px 5px 22px; padding: 5px 42px 5px 22px;
position: relative; position: relative;
left: 30px;
text-shadow: 0 -1px 0 rgba(0,0,0,0.3); text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
} }
#respond input#submit:active { #respond input#submit:active {
@ -2308,12 +2314,12 @@ p.comment-form-comment {
margin: 0 0 0 1.625em; margin: 0 0 0 1.625em;
} }
.singular .entry-meta .edit-link a { .singular .entry-meta .edit-link a {
left: 0px; left: 0;
position: absolute; position: absolute;
top: 40px; top: 40px;
} }
.singular #author-info { .singular #author-info {
margin: 2.2em -8.8% 0px; margin: 2.2em -8.8% 0;
padding: 20px 8.8%; padding: 20px 8.8%;
} }
/* Make sure we have room for our comment avatars */ /* Make sure we have room for our comment avatars */
@ -2346,6 +2352,7 @@ p.comment-form-comment {
object { object {
max-width: 100%; max-width: 100%;
} }
} }
@media (max-width: 650px) { @media (max-width: 650px) {
/* @media (max-width: 650px) Reduce font-sizes for better readability on smaller devices */ /* @media (max-width: 650px) Reduce font-sizes for better readability on smaller devices */
@ -2410,7 +2417,7 @@ p.comment-form-comment {
padding: 1.625em 0 0; padding: 1.625em 0 0;
} }
.singular.page .hentry { .singular.page .hentry {
padding: 1.625em 0 0; padding: 1.625em 0 0;
} }
/* Talking avatars take up too much room at this size */ /* Talking avatars take up too much room at this size */
.commentlist > li.comment, .commentlist > li.comment,
@ -2432,30 +2439,32 @@ p.comment-form-comment {
} }
/* Use the available space in the smaller comment form */ /* Use the available space in the smaller comment form */
#respond input[type="text"] { #respond input[type="text"] {
width: 95%; width: 95%;
} }
#respond .comment-form-author .required, #respond .comment-form-author .required,
#respond .comment-form-email .required { #respond .comment-form-email .required {
left: 95%; left: 95%;
} }
#content .gallery-columns-3 .gallery-item { #content .gallery-columns-3 .gallery-item {
width:31%; width: 31%;
padding-right:2%; padding-right: 2%;
} }
#content .gallery-columns-3 .gallery-item img { #content .gallery-columns-3 .gallery-item img {
width:100%; width: 100%;
height:auto; height: auto;
} }
} }
@media (max-width: 450px) { @media (max-width: 450px) {
#content .gallery-columns-2 .gallery-item { #content .gallery-columns-2 .gallery-item {
width:45%; width: 45%;
padding-right:4%; padding-right: 4%;
} }
#content .gallery-columns-2 .gallery-item img { #content .gallery-columns-2 .gallery-item img {
width:100%; width: 100%;
height:auto; height: auto;
} }
} }
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) { @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
body { body {
@ -2467,6 +2476,7 @@ p.comment-form-comment {
#branding { #branding {
border-top: none; border-top: none;
} }
} }
@ -2480,7 +2490,7 @@ p.comment-form-comment {
} }
footer.entry-meta a[rel=bookmark]:link:after, footer.entry-meta a[rel=bookmark]:link:after,
footer.entry-meta a[rel=bookmark]:visited:after { footer.entry-meta a[rel=bookmark]:visited:after {
content:" [" attr(href) "] "; /* Show URLs */ content: " [" attr(href) "] "; /* Show URLs */
} }
#page { #page {
clear: both !important; clear: both !important;
@ -2494,7 +2504,7 @@ p.comment-form-comment {
padding: 0; padding: 0;
} }
#branding hgroup { #branding hgroup {
margin: 0; margin: 0;
} }
#site-title a { #site-title a {
font-size: 21pt; font-size: 21pt;
@ -2516,20 +2526,20 @@ p.comment-form-comment {
box-shadow: none; box-shadow: none;
} }
#primary { #primary {
float: left; float: left;
margin: 0; margin: 0;
width: 100%; width: 100%;
} }
#content { #content {
margin: 0; margin: 0;
width: auto; width: auto;
} }
.singular #content { .singular #content {
margin: 0; margin: 0;
width: 100%; width: 100%;
} }
.singular .entry-header .entry-meta { .singular .entry-header .entry-meta {
position: static; position: static;
} }
.entry-meta .edit-link a { .entry-meta .edit-link a {
display: none; display: none;
@ -2542,7 +2552,7 @@ p.comment-form-comment {
.singular footer.entry-meta, .singular footer.entry-meta,
.singular #comments-title { .singular #comments-title {
margin: 0; margin: 0;
width: 100%; width: 100%;
} }
.singular .hentry { .singular .hentry {
padding: 0; padding: 0;
@ -2561,11 +2571,11 @@ p.comment-form-comment {
display: none; display: none;
} }
.singular #author-info { .singular #author-info {
background: none; background: none;
border-bottom: none; border-bottom: none;
border-top: none; border-top: none;
margin: 2.2em 0 0; margin: 2.2em 0 0;
padding: 0; padding: 0;
} }
#respond { #respond {
display: none; display: none;
@ -2579,30 +2589,30 @@ p.comment-form-comment {
/* Comments */ /* Comments */
.commentlist > li.comment { .commentlist > li.comment {
background: none; background: none;
border: 1px solid #ddd; border: 1px solid #ddd;
-moz-border-radius: 3px 3px 3px 3px; -moz-border-radius: 3px 3px 3px 3px;
border-radius: 3px 3px 3px 3px; border-radius: 3px 3px 3px 3px;
margin: 0 auto 1.625em; margin: 0 auto 1.625em;
padding: 1.625em; padding: 1.625em;
position: relative; position: relative;
width: auto; width: auto;
} }
.commentlist .avatar { .commentlist .avatar {
height: 39px; height: 39px;
left: 2.2em; left: 2.2em;
top: 2.2em; top: 2.2em;
width: 39px; width: 39px;
} }
.commentlist li.comment .comment-meta { .commentlist li.comment .comment-meta {
line-height: 1.625em; line-height: 1.625em;
margin-left: 50px; margin-left: 50px;
} }
.commentlist li.comment .fn { .commentlist li.comment .fn {
display: block; display: block;
} }
.commentlist li.comment .comment-content { .commentlist li.comment .comment-content {
margin: 1.625em 0 0; margin: 1.625em 0 0;
} }
.commentlist .comment-edit-link { .commentlist .comment-edit-link {
display: none; display: none;
@ -2635,6 +2645,7 @@ p.comment-form-comment {
.commentlist .children > li.bypostauthor > article .comment-meta { .commentlist .children > li.bypostauthor > article .comment-meta {
color: #666; color: #666;
} }
} }