Changeset 18276
- Timestamp:
- 06/11/2011 03:44:06 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/nav-menu.dev.css
r18260 r18276 388 388 } 389 389 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 */ 397 397 background-image: linear-gradient(bottom, #f6c9cc, #fdf8ff); /* proposed W3C Markup */ 398 398 } -
trunk/wp-content/themes/twentyeleven/comments.php
r18211 r18276 64 64 <?php endif; // check for comment navigation ?> 65 65 66 <?php 66 <?php 67 67 /* If there are no comments and comments are closed, let's leave a little note, shall we? 68 68 * 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 4 4 * 5 5 * Learn more: http://codex.wordpress.org/Post_Formats 6 * 6 * 7 7 * @package WordPress 8 8 * @subpackage Twenty_Eleven … … 17 17 <h2 class="entry-format"><?php _e( 'Aside', 'twentyeleven' ); ?></h2> 18 18 </hgroup> 19 19 20 20 <?php if ( comments_open() ) : ?> 21 21 <div class="comments-link"> -
trunk/wp-content/themes/twentyeleven/content-intro.php
r17959 r18276 2 2 /** 3 3 * The template for displaying page content in the showcase.php page template 4 * 4 * 5 5 * @package WordPress 6 6 * @subpackage Twenty_Eleven -
trunk/wp-content/themes/twentyeleven/content-link.php
r18274 r18276 4 4 * 5 5 * Learn more: http://codex.wordpress.org/Post_Formats 6 * 6 * 7 7 * @package WordPress 8 8 * @subpackage Twenty_Eleven -
trunk/wp-content/themes/twentyeleven/content-status.php
r18253 r18276 4 4 * 5 5 * Learn more: http://codex.wordpress.org/Post_Formats 6 * 6 * 7 7 * @package WordPress 8 8 * @subpackage Twenty_Eleven … … 16 16 <h2 class="entry-format"><?php _e( 'Status', 'twentyeleven' ); ?></h2> 17 17 </hgroup> 18 18 19 19 <?php if ( comments_open() ) : ?> 20 20 <div class="comments-link"> … … 31 31 <div class="entry-content"> 32 32 <div class="avatar"><?php echo get_avatar( get_the_author_meta( 'ID' ), apply_filters( 'twentyeleven_status_avatar', '65' ) ); ?></div> 33 33 34 34 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?> 35 35 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyeleven' ), 'after' => '</div>' ) ); ?> -
trunk/wp-content/themes/twentyeleven/functions.php
r18272 r18276 116 116 117 117 // By leaving empty, we default to random image rotation 118 define( 'HEADER_IMAGE', '' ); 118 define( 'HEADER_IMAGE', '' ); 119 119 120 120 // The height and width of your custom header. -
trunk/wp-content/themes/twentyeleven/inc/theme-options.php
r18255 r18276 251 251 <div id="colorPickerDiv" style="z-index: 100; background:#eee; border:1px solid #ccc; position:absolute; display:none;"></div> 252 252 <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> 254 254 </fieldset> 255 255 </td> … … 299 299 if ( isset( $input['color_scheme'] ) && array_key_exists( $input['color_scheme'], twentyeleven_color_schemes() ) ) 300 300 $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. 303 303 $output['link_color'] = $defaults['link_color'] = twentyeleven_get_default_link_color( $output['color_scheme'] ); 304 304 … … 365 365 section.recent-posts .other-recent-posts .comments-link a:hover { 366 366 border-color: <?php echo $link_color; ?>; 367 } 367 } 368 368 article.feature-image.small .entry-summary p a:hover, 369 369 .entry-header .comments-link a:hover, -
trunk/wp-content/themes/twentyeleven/searchform.php
r18244 r18276 9 9 ?> 10 10 <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> 12 12 <input type="text" class="field" name="s" id="s" placeholder="<?php esc_attr_e( 'Search', 'twentyeleven' ); ?>" /> 13 13 <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 55 55 // The Featured Posts query. 56 56 $featured = new WP_Query( $featured_args ); 57 57 58 58 // Proceed only if published posts exist 59 59 if ( $featured->have_posts() ) : … … 99 99 100 100 <section class="featured-post <?php echo $feature_class; ?>" id="featured-post-<?php echo $counter_slider; ?>"> 101 101 102 102 <?php 103 103 /** -
trunk/wp-content/themes/twentyeleven/style.css
r18255 r18276 847 847 } 848 848 img.size-full { 849 max-width: 97.5%; 849 max-width: 97.5%; 850 850 width: auto; /* Prevent stretching of full-size images in IE8 */ 851 851 } … … 1105 1105 .singular .entry-meta .edit-link a { 1106 1106 bottom: auto; 1107 left: 50px; 1107 left: 50px; 1108 1108 position: absolute; 1109 1109 right: auto; … … 2449 2449 footer.entry-meta a[rel=bookmark]:visited:after { 2450 2450 content:" [" attr(href) "] "; /* Show URLs */ 2451 } 2451 } 2452 2452 #page { 2453 2453 clear: both !important; … … 2544 2544 display: none; 2545 2545 } 2546 2546 2547 2547 /* Comments */ 2548 2548 .commentlist > li.comment { … … 2582 2582 display: none; 2583 2583 } 2584 2584 2585 2585 /* Post author highlighting */ 2586 2586 .commentlist > li.bypostauthor { -
trunk/wp-includes/nav-menu.php
r18260 r18276 529 529 530 530 $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' ) ) ) 533 533 $items = array_filter( $items, '_is_valid_nav_menu_item' ); 534 534
Note: See TracChangeset
for help on using the changeset viewer.