Make WordPress Core

Changeset 23629


Ignore:
Timestamp:
03/06/2013 11:36:42 PM (12 years ago)
Author:
lancewillett
Message:

Twenty Thirteen: minor tweaks and fixes, props obenland. Fixes #23698.

  • Add 1px to top margin for second level menus to align child menus with parent height
  • Remove text-decoration on hover for cancel-comment-reply-link
  • Pull floated images only in post content
  • Close edit link span element correctly
Location:
trunk/wp-content/themes/twentythirteen
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/themes/twentythirteen/functions.php

    r23539 r23629  
    357357                        sprintf( _x( '%1$s at %2$s', '1: date, 2: time', 'twentythirteen' ), get_comment_date(), get_comment_time() )
    358358                    );
    359                     edit_comment_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '<span>' );
     359                    edit_comment_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' );
    360360                ?>
    361361            </header><!-- .comment-meta -->
  • trunk/wp-content/themes/twentythirteen/style.css

    r23628 r23629  
    716716
    717717img.alignleft {
    718     margin: 5px 20px 5px -60px;
     718    margin: 5px 20px 5px 0;
    719719}
    720720
    721721.wp-caption.alignleft {
    722     margin: 5px 10px 5px -60px;
     722    margin: 5px 10px 5px 0;
    723723}
    724724
    725725img.alignright {
    726     margin: 5px -60px 5px 20px;
     726    margin: 5px 0 5px 20px;
    727727}
    728728
    729729.wp-caption.alignright {
    730     margin: 5px -60px 5px 10px;
     730    margin: 5px 0 5px 10px;
    731731}
    732732
     
    878878    padding: 0;
    879879    position: absolute;
    880     top: 44px;
     880    top: 45px;
    881881    left: -2px;
    882882    z-index: 99999;
     
    11691169}
    11701170
     1171.entry-content img.alignleft,
     1172.entry-content .wp-caption.alignleft {
     1173    margin-left: -60px;
     1174}
     1175
     1176.entry-content img.alignright,
     1177.entry-content .wp-caption.alignright {
     1178    margin-right: -60px;
     1179}
     1180
    11711181footer.entry-meta {
    11721182    margin-top: 24px;
     
    23242334#reply-title small a:hover {
    23252335    color: #ed331c;
     2336    text-decoration: none;
    23262337}
    23272338
Note: See TracChangeset for help on using the changeset viewer.