Fix arrows in 2011, props iandstewart, fixes #17809

git-svn-id: http://svn.automattic.com/wordpress/trunk@18359 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2011-06-27 22:02:29 +00:00
parent ccb41c4beb
commit e38b292638
3 changed files with 12 additions and 9 deletions

View File

@ -354,8 +354,8 @@ section.recent-posts .other-recent-posts .comments-link > span {
/* Singular navigation */ /* Singular navigation */
#nav-single { #nav-single {
right: auto; float: left;
left: 0; text-align: left;
} }
#nav-single .nav-next { #nav-single .nav-next {
padding-left: 0; padding-left: 0;

View File

@ -16,8 +16,8 @@ get_header(); ?>
<nav id="nav-single"> <nav id="nav-single">
<h3 class="assistive-text"><?php _e( 'Post navigation', 'twentyeleven' ); ?></h3> <h3 class="assistive-text"><?php _e( 'Post navigation', 'twentyeleven' ); ?></h3>
<span class="nav-previous"><?php previous_post_link( '%link', __( '&larr; Previous', 'twentyeleven' ) ); ?></span> <span class="nav-previous"><?php previous_post_link( '%link', __( '<span class="meta-nav">&larr;</span> Previous', 'twentyeleven' ) ); ?></span>
<span class="nav-next"><?php next_post_link( '%link', __( 'Next &rarr;', 'twentyeleven' ) ); ?></span> <span class="nav-next"><?php next_post_link( '%link', __( 'Next <span class="meta-nav">&rarr;</span>', 'twentyeleven' ) ); ?></span>
</nav><!-- #nav-single --> </nav><!-- #nav-single -->
<?php get_template_part( 'content', 'single' ); ?> <?php get_template_part( 'content', 'single' ); ?>

View File

@ -1686,14 +1686,17 @@ section.recent-posts .other-recent-posts li:after {
text-align: right; text-align: right;
width: 50%; width: 50%;
} }
#content nav .meta-nav {
font-weight: normal;
}
/* Singular navigation */ /* Singular navigation */
#nav-single { #nav-single {
display: inline-block; float: right;
overflow: visible !important; position: relative;
position: absolute; top: -0.3em;
top: -4px; text-align: right;
right: 0; width: 100%;
z-index: 1; z-index: 1;
} }
#nav-single .nav-previous, #nav-single .nav-previous,