Make WordPress Core

Ticket #17748: 17748.4.diff

File 17748.4.diff, 14.2 KB (added by lancewillett, 13 years ago)

One more try, better fix for the image format entry-meta link hover color on front page

  • wp-content/themes/twentyeleven/content-single.php

     
    2727        <footer class="entry-meta">
    2828                <?php
    2929                        /* translators: used between list items, there is a space after the comma */
     30                        $categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) );
     31
     32                        /* translators: used between list items, there is a space after the comma */
    3033                        $tag_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) );
    3134                        if ( '' != $tag_list ) {
    3235                                $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' );
     36                        } elseif ( '' != $categories_list ) {
     37                                $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' );
    3338                        } else {
    34                                 $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' );
     39                                $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' );
    3540                        }
     41
    3642                        printf(
    3743                                $utility_text,
    38                                 /* translators: used between list items, there is a space after the comma */
    39                                 get_the_category_list( __( ', ', 'twentyeleven' ) ),
     44                                $categories_list,
    4045                                $tag_list,
    4146                                esc_url( get_permalink() ),
    4247                                the_title_attribute( 'echo=0' ),
  • wp-content/themes/twentyeleven/style.css

     
    4242        list-style: none;
    4343}
    4444table {/* tables still need 'cellspacing="0"' in the markup */
    45         border-collapse: separate;
    46         border-spacing: 0;
     45border-collapse: separate;
     46border-spacing: 0;
    4747}
    4848caption, th, td {
    4949        font-weight: normal;
     
    265265}
    266266.one-column.singular .entry-meta .edit-link a {
    267267        position: absolute;
    268         left: 0px;
     268        left: 0;
    269269        top: 40px;
    270270}
    271271.one-column.singular #author-info {
    272         margin: 2.2em -8.8% 0px;
     272        margin: 2.2em -8.8% 0;
    273273        padding: 20px 8.8%;
    274274}
    275275/* Make sure we have room for our comment avatars */
     
    822822.page-link span {
    823823        margin-right: 6px;
    824824}
    825 .entry-meta .edit-link a {
     825.entry-meta .edit-link a,
     826.commentlist .edit-link a {
    826827        background: #eee;
    827828        -moz-border-radius: 3px;
    828829        border-radius: 3px;
    829830        color: #666;
    830831        float: right;
    831832        font-size: 12px;
     833        line-height: 1.5em;
    832834        font-weight: 300;
    833835        text-decoration: none;
    834         padding: 0px 8px;
     836        padding: 0 8px;
    835837}
    836 .entry-meta .edit-link a:hover {
     838.entry-meta .edit-link a:hover,
     839.commentlist .edit-link a:hover {
    837840        background: #888;
    838841        color: #fff;
    839842}
     
    890893}
    891894.wp-caption .wp-caption-text {
    892895        margin-bottom: 0.6em;
    893         padding: 10px 0px 5px 40px;
     896        padding: 10px 0 5px 40px;
    894897        position: relative;
    895898}
    896899.wp-caption .wp-caption-text:before {
     
    908911        margin: 0 auto 1.625em;
    909912}
    910913#content .gallery a img {
    911     border: none;
     914        border: none;
    912915}
    913916img#wpstats {
    914     display: block;
    915     margin: 0 auto 1.625em;
     917        display: block;
     918        margin: 0 auto 1.625em;
    916919}
    917920#content .gallery-columns-4 .gallery-item {
    918         width:23%;
    919         padding-right:2%;
     921        width: 23%;
     922        padding-right: 2%;
    920923}
    921924#content .gallery-columns-4 .gallery-item img {
    922         width:100%;
    923         height:auto;
     925        width: 100%;
     926        height: auto;
    924927}
    925928
    926929/* Image borders */
    927930img[class*="align"],
    928931img[class*="wp-image-"],
    929 #content .gallery .gallery-icon img { /* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
     932#content .gallery .gallery-icon img {/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
    930933        border: 1px solid #ddd;
    931934        padding: 6px;
    932935}
     
    941944a:active img[class*="wp-image-"],
    942945#content .gallery .gallery-icon a:focus img,
    943946#content .gallery .gallery-icon a:hover img,
    944 #content .gallery .gallery-icon a:active img { /* Add some useful style to those fancy borders for linked images ... */
     947#content .gallery .gallery-icon a:active img {/* Add some useful style to those fancy borders for linked images ... */
    945948        background: #eee;
    946949        border-color: #bbb;
    947950}
    948951.wp-caption a:focus img,
    949952.wp-caption a:active img,
    950 .wp-caption a:hover img { /* ... including captioned images! */
     953.wp-caption a:hover img {/* ... including captioned images! */
    951954        background: #fff;
    952955        border-color: #ddd;
    953956}
     
    10291032        color: rgba(255,255,255,0.8);
    10301033}
    10311034.entry-header .comments-link .leave-reply {
    1032          visibility: hidden;
     1035        visibility: hidden;
    10331036}
    10341037
    10351038/*
    1036         Post Formats Headings
    1037         To hide the headings, display: none the ".entry-header .entry-format" selector,
    1038         and remove the padding rules below.
     1039Post Formats Headings
     1040To hide the headings, display: none the ".entry-header .entry-format" selector,
     1041and remove the padding rules below.
    10391042*/
    10401043.entry-header .entry-format {
    10411044        color: #666;
     
    12231226        margin-bottom: 0;
    12241227}
    12251228.indexed.format-image footer.entry-meta {
    1226         background: #e0e6e8;
     1229        background: #ddd;
    12271230        margin-top: -7px;
    12281231        padding: 20px 30px;
    12291232        overflow: hidden;
     
    12451248.indexed.format-image footer.entry-meta a {
    12461249        color: #444;
    12471250}
     1251.indexed.format-image footer.entry-meta a:hover {
     1252        color: #fff;
     1253}
    12481254#content .indexed.format-image img {
    12491255        border: none;
    12501256        max-width: 100%;
     
    13281334article.intro .entry-content {
    13291335        color: #111;
    13301336        font-size: 16px;
    1331         padding: 1.625em 0px 0.625em;
     1337        padding: 1.625em 0 0.625em;
    13321338}
    13331339article.intro .edit-link a {
    13341340        background: #aaa;
     
    13361342        border-radius: 3px;
    13371343        color: #fff;
    13381344        font-size: 12px;
    1339         padding: 0px 8px;
     1345        padding: 0 8px;
    13401346        position: absolute;
    13411347        top: 30px;
    13421348        right: 20px;
     
    15111517        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
    15121518        background: linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C */
    15131519        width: 100%;
    1514     height: 45px;
    1515     position: absolute;
     1520        height: 45px;
     1521        position: absolute;
    15161522        top: 230px;
    15171523}
    15181524.featured-post .feature-image.small:after {
     
    19661972        color: #666;
    19671973        display: inline-block;
    19681974        font-size: 12px;
    1969         padding: 0px 8px;
     1975        padding: 0 8px;
    19701976        text-decoration: none;
    19711977}
    19721978a.comment-reply-link:hover,
     
    21042110        color: #eee;
    21052111        cursor: pointer;
    21062112        font-size: 15px;
    2107         left: 30px;
    21082113        margin: 20px 0;
    21092114        padding: 5px 42px 5px 22px;
    21102115        position: relative;
     2116        left: 30px;
    21112117        text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
    21122118}
    21132119#respond input#submit:active {
     
    23082314                margin: 0 0 0 1.625em;
    23092315        }
    23102316        .singular .entry-meta .edit-link a {
    2311                 left: 0px;
     2317                left: 0;
    23122318                position: absolute;
    23132319                top: 40px;
    23142320        }
    23152321        .singular #author-info {
    2316                 margin: 2.2em -8.8% 0px;
     2322                margin: 2.2em -8.8% 0;
    23172323                padding: 20px 8.8%;
    23182324        }
    23192325        /* Make sure we have room for our comment avatars */
     
    24102416                padding: 1.625em 0 0;
    24112417        }
    24122418        .singular.page .hentry {
    2413             padding: 1.625em 0 0;
     2419                padding: 1.625em 0 0;
    24142420        }
    24152421        /* Talking avatars take up too much room at this size */
    24162422        .commentlist > li.comment,
     
    24322438        }
    24332439        /* Use the available space in the smaller comment form */
    24342440        #respond input[type="text"] {
    2435             width: 95%;
     2441                width: 95%;
    24362442        }
    24372443        #respond .comment-form-author .required,
    24382444        #respond .comment-form-email .required {
    2439             left: 95%;
     2445                left: 95%;
    24402446        }
    24412447        #content .gallery-columns-3 .gallery-item {
    2442                 width:31%;
    2443                 padding-right:2%;
     2448                width: 31%;
     2449                padding-right: 2%;
    24442450        }
    24452451        #content .gallery-columns-3 .gallery-item img {
    2446                 width:100%;
    2447                 height:auto;
     2452                width: 100%;
     2453                height: auto;
    24482454        }
    24492455}
    24502456@media (max-width: 450px) {
    24512457        #content .gallery-columns-2 .gallery-item {
    2452                 width:45%;
    2453                 padding-right:4%;
     2458                width: 45%;
     2459                padding-right: 4%;
    24542460        }
    24552461        #content .gallery-columns-2 .gallery-item img {
    2456                 width:100%;
    2457                 height:auto;
     2462                width: 100%;
     2463                height: auto;
    24582464        }
    24592465}
    24602466@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
     
    24802486        }
    24812487        footer.entry-meta a[rel=bookmark]:link:after,
    24822488        footer.entry-meta a[rel=bookmark]:visited:after {
    2483                 content:" [" attr(href) "] "; /* Show URLs */
     2489                content: " [" attr(href) "] "; /* Show URLs */
    24842490        }
    24852491        #page {
    24862492                clear: both !important;
     
    24942500                padding: 0;
    24952501        }
    24962502        #branding hgroup {
    2497             margin: 0;
     2503                margin: 0;
    24982504        }
    24992505        #site-title a {
    25002506                font-size: 21pt;
     
    25162522                box-shadow: none;
    25172523        }
    25182524        #primary {
    2519             float: left;
    2520             margin: 0;
    2521             width: 100%;
     2525                float: left;
     2526                margin: 0;
     2527                width: 100%;
    25222528        }
    25232529        #content {
    2524             margin: 0;
    2525             width: auto;
     2530                margin: 0;
     2531                width: auto;
    25262532        }
    25272533        .singular #content {
    2528             margin: 0;
     2534                margin: 0;
    25292535                width: 100%;
    25302536        }
    25312537        .singular .entry-header .entry-meta {
    2532             position: static;
     2538                position: static;
    25332539        }
    25342540        .entry-meta .edit-link a {
    25352541                display: none;
     
    25422548        .singular footer.entry-meta,
    25432549        .singular #comments-title {
    25442550                margin: 0;
    2545             width: 100%;
     2551                width: 100%;
    25462552        }
    25472553        .singular .hentry {
    25482554                padding: 0;
     
    25612567                display: none;
    25622568        }
    25632569        .singular #author-info {
    2564             background: none;
    2565             border-bottom: none;
    2566             border-top: none;
    2567             margin: 2.2em 0 0;
    2568             padding: 0;
     2570                background: none;
     2571                border-bottom: none;
     2572                border-top: none;
     2573                margin: 2.2em 0 0;
     2574                padding: 0;
    25692575        }
    25702576        #respond {
    25712577                display: none;
     
    25792585
    25802586        /* Comments */
    25812587        .commentlist > li.comment {
    2582             background: none;
    2583             border: 1px solid #ddd;
    2584             -moz-border-radius: 3px 3px 3px 3px;
    2585             border-radius: 3px 3px 3px 3px;
    2586             margin: 0 auto 1.625em;
    2587             padding: 1.625em;
    2588             position: relative;
    2589             width: auto;
     2588                background: none;
     2589                border: 1px solid #ddd;
     2590                -moz-border-radius: 3px 3px 3px 3px;
     2591                border-radius: 3px 3px 3px 3px;
     2592                margin: 0 auto 1.625em;
     2593                padding: 1.625em;
     2594                position: relative;
     2595                width: auto;
    25902596        }
    25912597        .commentlist .avatar {
    25922598                height: 39px;
    2593             left: 2.2em;
    2594             top: 2.2em;
     2599                left: 2.2em;
     2600                top: 2.2em;
    25952601                width: 39px;
    25962602        }
    25972603        .commentlist li.comment .comment-meta {
    2598             line-height: 1.625em;
    2599             margin-left: 50px;
     2604                line-height: 1.625em;
     2605                margin-left: 50px;
    26002606        }
    26012607        .commentlist li.comment .fn {
    2602             display: block;
     2608                display: block;
    26032609        }
    26042610        .commentlist li.comment .comment-content {
    2605             margin: 1.625em 0 0;
     2611                margin: 1.625em 0 0;
    26062612        }
    26072613        .commentlist .comment-edit-link {
    26082614                display: none;
  • wp-content/themes/twentyeleven/editor-style-rtl.css

     
    44/*
    55Used to style the TinyMCE editor.
    66*/
    7 html .mceContentBody{
    8         direction:rtl;
    9         unicode-bidi:embed;
    10         float:right;
     7html .mceContentBody {
     8        direction: rtl;
     9        unicode-bidi: embed;
     10        float: right;
    1111        max-width: 584px;
    1212}
    1313* {
  • wp-content/themes/twentyeleven/content-page.php

     
    1616        <div class="entry-content">
    1717                <?php the_content(); ?>
    1818                <?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'twentyeleven' ) . '</span>', 'after' => '</div>' ) ); ?>
     19        </div><!-- .entry-content -->
     20        <footer class="entry-meta">
    1921                <?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
    20         </div><!-- .entry-content -->
     22        </footer><!-- .entry-meta -->
    2123</article><!-- #post-<?php the_ID(); ?> -->
  • wp-content/themes/twentyeleven/rtl.css

     
    8585        margin: 0 2.5em 1.625em 0;
    8686}
    8787.ltr ul, ol {
    88         margin: 0 0 1.625em  2.5em;     
     88        margin: 0 0 1.625em  2.5em;
    8989}
    9090blockquote {
    9191        font-family: Arial, sans-serif;
  • wp-content/themes/twentyeleven/functions.php

     
    500500                case 'trackback' :
    501501        ?>
    502502        <li class="post pingback">
    503                 <p><?php _e( 'Pingback:', 'twentyeleven' ); ?> <?php comment_author_link(); ?><?php edit_comment_link( __( '(Edit)', 'twentyeleven' ), ' ' ); ?></p>
     503                <p><?php _e( 'Pingback:', 'twentyeleven' ); ?> <?php comment_author_link(); ?><?php edit_comment_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?></p>
    504504        <?php
    505505                        break;
    506506                default :
     
    528528                                                );
    529529                                        ?>
    530530
    531                                         <?php edit_comment_link( __( '[Edit]', 'twentyeleven' ), ' ' ); ?>
     531                                        <?php edit_comment_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
    532532                                </div><!-- .comment-author .vcard -->
    533533
    534534                                <?php if ( $comment->comment_approved == '0' ) : ?>
  • wp-content/themes/twentyeleven/colors/dark.css

     
    322322
    323323/* Featured Slider */
    324324.featured-posts {
    325         border-color: #222;     
     325        border-color: #222;
    326326}
    327327.featured-posts section.featured-post {
    328328        background: #000;
     
    594594        /* Comments */
    595595        .commentlist > li.comment {
    596596        }
    597        
     597
    598598        /* Post author highlighting */
    599599        .commentlist > li.bypostauthor {
    600600                color: #333;
  • wp-content/themes/twentyeleven/inc/theme-options.php

     
    165165                'theme_layout' => 'content-sidebar',
    166166        );
    167167
    168         if ( is_rtl() ) 
     168        if ( is_rtl() )
    169169                $default_theme_options['theme_layout'] = 'sidebar-content';
    170170
    171171        return apply_filters( 'twentyeleven_default_theme_options', $default_theme_options );