Make WordPress Core

Changeset 18276


Ignore:
Timestamp:
06/11/2011 03:44:06 PM (13 years ago)
Author:
ryan
Message:

Pinking shears

Location:
trunk
Files:
12 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/css/nav-menu.dev.css

    r18260 r18276  
    388388}
    389389
    390 #menu-to-edit .menu-item-invalid .menu-item-handle { 
    391     background-color: #f6c9cc; /* Fallback */ 
    392     background-image: -ms-linear-gradient(bottom, #f6c9cc, #fdf8ff); /* IE10 */ 
    393     background-image: -moz-linear-gradient(bottom, #f6c9cc, #fdf8ff); /* Firefox */ 
    394     background-image: -o-linear-gradient(bottom, #f6c9cc, #fdf8ff); /* Opera */ 
    395     background-image: -webkit-gradient(linear, left bottom, left top, from(#f6c9cc), to(#fdf8ff)); /* old Webkit  */ 
    396     background-image: -webkit-linear-gradient(bottom, #f6c9cc, #fdf8ff); /* new Webkit */ 
     390#menu-to-edit .menu-item-invalid .menu-item-handle {
     391    background-color: #f6c9cc; /* Fallback */
     392    background-image: -ms-linear-gradient(bottom, #f6c9cc, #fdf8ff); /* IE10 */
     393    background-image: -moz-linear-gradient(bottom, #f6c9cc, #fdf8ff); /* Firefox */
     394    background-image: -o-linear-gradient(bottom, #f6c9cc, #fdf8ff); /* Opera */
     395    background-image: -webkit-gradient(linear, left bottom, left top, from(#f6c9cc), to(#fdf8ff)); /* old Webkit  */
     396    background-image: -webkit-linear-gradient(bottom, #f6c9cc, #fdf8ff); /* new Webkit */
    397397    background-image: linear-gradient(bottom, #f6c9cc, #fdf8ff); /* proposed W3C Markup */
    398398}
  • trunk/wp-content/themes/twentyeleven/comments.php

    r18211 r18276  
    6464        <?php endif; // check for comment navigation ?>
    6565
    66     <?php 
     66    <?php
    6767        /* If there are no comments and comments are closed, let's leave a little note, shall we?
    6868         * But we don't want the note on pages or post types that do not support comments.
  • trunk/wp-content/themes/twentyeleven/content-aside.php

    r18274 r18276  
    44 *
    55 * Learn more: http://codex.wordpress.org/Post_Formats
    6  * 
     6 *
    77 * @package WordPress
    88 * @subpackage Twenty_Eleven
     
    1717                <h2 class="entry-format"><?php _e( 'Aside', 'twentyeleven' ); ?></h2>
    1818            </hgroup>
    19            
     19
    2020            <?php if ( comments_open() ) : ?>
    2121            <div class="comments-link">
  • trunk/wp-content/themes/twentyeleven/content-intro.php

    r17959 r18276  
    22/**
    33 * The template for displaying page content in the showcase.php page template
    4  * 
     4 *
    55 * @package WordPress
    66 * @subpackage Twenty_Eleven
  • trunk/wp-content/themes/twentyeleven/content-link.php

    r18274 r18276  
    44 *
    55 * Learn more: http://codex.wordpress.org/Post_Formats
    6  * 
     6 *
    77 * @package WordPress
    88 * @subpackage Twenty_Eleven
  • trunk/wp-content/themes/twentyeleven/content-status.php

    r18253 r18276  
    44 *
    55 * Learn more: http://codex.wordpress.org/Post_Formats
    6  * 
     6 *
    77 * @package WordPress
    88 * @subpackage Twenty_Eleven
     
    1616                <h2 class="entry-format"><?php _e( 'Status', 'twentyeleven' ); ?></h2>
    1717            </hgroup>
    18            
     18
    1919            <?php if ( comments_open() ) : ?>
    2020            <div class="comments-link">
     
    3131        <div class="entry-content">
    3232            <div class="avatar"><?php echo get_avatar( get_the_author_meta( 'ID' ), apply_filters( 'twentyeleven_status_avatar', '65' ) ); ?></div>
    33            
     33
    3434            <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyeleven' ) ); ?>
    3535            <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyeleven' ), 'after' => '</div>' ) ); ?>
  • trunk/wp-content/themes/twentyeleven/functions.php

    r18272 r18276  
    116116
    117117    // By leaving empty, we default to random image rotation
    118     define( 'HEADER_IMAGE', '' ); 
     118    define( 'HEADER_IMAGE', '' );
    119119
    120120    // The height and width of your custom header.
  • trunk/wp-content/themes/twentyeleven/inc/theme-options.php

    r18255 r18276  
    251251                            <div id="colorPickerDiv" style="z-index: 100; background:#eee; border:1px solid #ccc; position:absolute; display:none;"></div>
    252252                            <br />
    253                             <span><?php printf( __( 'Default color: %s', 'twentyeleven' ), '<span id="default-color">' . twentyeleven_get_default_link_color( $options['color_scheme'] ) . '</span>' ); ?></span> 
     253                            <span><?php printf( __( 'Default color: %s', 'twentyeleven' ), '<span id="default-color">' . twentyeleven_get_default_link_color( $options['color_scheme'] ) . '</span>' ); ?></span>
    254254                        </fieldset>
    255255                    </td>
     
    299299    if ( isset( $input['color_scheme'] ) && array_key_exists( $input['color_scheme'], twentyeleven_color_schemes() ) )
    300300        $output['color_scheme'] = $input['color_scheme'];
    301        
    302     // Our defaults for the link color may have changed, based on the color scheme. 
     301
     302    // Our defaults for the link color may have changed, based on the color scheme.
    303303    $output['link_color'] = $defaults['link_color'] = twentyeleven_get_default_link_color( $output['color_scheme'] );
    304304
     
    365365        section.recent-posts .other-recent-posts .comments-link a:hover {
    366366            border-color: <?php echo $link_color; ?>;
    367         }   
     367        }
    368368        article.feature-image.small .entry-summary p a:hover,
    369369        .entry-header .comments-link a:hover,
  • trunk/wp-content/themes/twentyeleven/searchform.php

    r18244 r18276  
    99?>
    1010    <form method="get" id="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>">
    11         <label for="s" class="assistive-text"><?php _e( 'Search', 'twentyeleven' ); ?></label> 
     11        <label for="s" class="assistive-text"><?php _e( 'Search', 'twentyeleven' ); ?></label>
    1212        <input type="text" class="field" name="s" id="s" placeholder="<?php esc_attr_e( 'Search', 'twentyeleven' ); ?>" />
    1313        <input type="submit" class="submit" name="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', 'twentyeleven' ); ?>" />
  • trunk/wp-content/themes/twentyeleven/showcase.php

    r18269 r18276  
    5555                    // The Featured Posts query.
    5656                    $featured = new WP_Query( $featured_args );
    57                    
     57
    5858                    // Proceed only if published posts exist
    5959                    if ( $featured->have_posts() ) :
     
    9999
    100100                    <section class="featured-post <?php echo $feature_class; ?>" id="featured-post-<?php echo $counter_slider; ?>">
    101    
     101
    102102                        <?php
    103103                            /**
  • trunk/wp-content/themes/twentyeleven/style.css

    r18255 r18276  
    847847}
    848848img.size-full {
    849     max-width: 97.5%;   
     849    max-width: 97.5%;
    850850    width: auto; /* Prevent stretching of full-size images in IE8 */
    851851}
     
    11051105.singular .entry-meta .edit-link a {
    11061106    bottom: auto;
    1107     left: 50px; 
     1107    left: 50px;
    11081108    position: absolute;
    11091109    right: auto;
     
    24492449    footer.entry-meta a[rel=bookmark]:visited:after {
    24502450        content:" [" attr(href) "] "; /* Show URLs */
    2451     }   
     2451    }
    24522452    #page {
    24532453        clear: both !important;
     
    25442544        display: none;
    25452545    }
    2546    
     2546
    25472547    /* Comments */
    25482548    .commentlist > li.comment {
     
    25822582        display: none;
    25832583    }
    2584    
     2584
    25852585    /* Post author highlighting */
    25862586    .commentlist > li.bypostauthor {
  • trunk/wp-includes/nav-menu.php

    r18260 r18276  
    529529
    530530    $items = array_map( 'wp_setup_nav_menu_item', $items );
    531    
    532     if ( ! in_array( $args['post_status'], array( 'draft', 'any' ) ) ) 
     531
     532    if ( ! in_array( $args['post_status'], array( 'draft', 'any' ) ) )
    533533        $items = array_filter( $items, '_is_valid_nav_menu_item' );
    534534
Note: See TracChangeset for help on using the changeset viewer.