diff --git a/wp-content/themes/twentyten/comments.php b/wp-content/themes/twentyten/comments.php index eece437d69e02f48cd2aaa7bc54d1503a2efff02..62527288f42afff84d16189df4720e25d14de98b 100644 --- a/wp-content/themes/twentyten/comments.php +++ b/wp-content/themes/twentyten/comments.php @@ -62,15 +62,13 @@ </div><!-- .navigation --> <?php endif; // check for comment navigation ?> -<?php else : // or, if we don't have comments: - - /* If there are no comments and comments are closed, - * let's leave a little note, shall we? + <?php + /* If there are no comments and comments are closed, let's leave a little note, shall we? + * But we only want the note on posts and pages that had comments in the first place. */ - if ( ! comments_open() ) : -?> - <p class="nocomments"><?php _e( 'Comments are closed.', 'twentyten' ); ?></p> -<?php endif; // end ! comments_open() ?> + if ( ! comments_open() && get_comments_number() ) : ?> + <p class="nocomments"><?php _e( 'Comments are closed.' , 'twentyten' ); ?></p> + <?php endif; ?> <?php endif; // end have_comments() ?> diff --git a/wp-content/themes/twentyten/footer.php b/wp-content/themes/twentyten/footer.php index 337cc9123dfd4bd85827d0af9e0e1b74e0e01d26..6dcfec0ca8b84448907a5f718971df5a1264da82 100644 --- a/wp-content/themes/twentyten/footer.php +++ b/wp-content/themes/twentyten/footer.php @@ -30,7 +30,7 @@ <div id="site-generator"> <?php do_action( 'twentyten_credits' ); ?> - <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentyten' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyten' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s.', 'twentyten' ), 'WordPress' ); ?></a> + <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentyten' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyten' ); ?>"><?php printf( __( 'Proudly powered by %s.', 'twentyten' ), 'WordPress' ); ?></a> </div><!-- #site-generator --> </div><!-- #colophon --> diff --git a/wp-content/themes/twentyten/functions.php b/wp-content/themes/twentyten/functions.php index 696ff15d87901ddfe9bf16d1ed8b1902a811f6c0..67be12ccd595e2f5fd0b9f6d9034bd60b1ebdbc4 100644 --- a/wp-content/themes/twentyten/functions.php +++ b/wp-content/themes/twentyten/functions.php @@ -115,9 +115,9 @@ function twentyten_setup() { // Callback for styling the header preview in the admin. 'admin-head-callback' => 'twentyten_admin_header_style', ); - + add_theme_support( 'custom-header', $custom_header_support ); - + if ( ! function_exists( 'get_custom_header' ) ) { // This is all for compatibility with versions of WordPress prior to 3.4. define( 'HEADER_TEXTCOLOR', '' ); @@ -224,7 +224,8 @@ endif; * @since Twenty Ten 1.0 */ function twentyten_page_menu_args( $args ) { - $args['show_home'] = true; + if ( ! isset( $args['show_home'] ) ) + $args['show_home'] = true; return $args; } add_filter( 'wp_page_menu_args', 'twentyten_page_menu_args' ); @@ -243,6 +244,7 @@ function twentyten_excerpt_length( $length ) { } add_filter( 'excerpt_length', 'twentyten_excerpt_length' ); +if ( ! function_exists( 'twentyten_continue_reading_link' ) ) : /** * Returns a "Continue Reading" link for excerpts * @@ -252,6 +254,7 @@ add_filter( 'excerpt_length', 'twentyten_excerpt_length' ); function twentyten_continue_reading_link() { return ' <a href="'. get_permalink() . '">' . __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) . '</a>'; } +endif; /** * Replaces "[...]" (appended to automatically generated excerpts) with an ellipsis and twentyten_continue_reading_link(). @@ -330,28 +333,28 @@ function twentyten_comment( $comment, $args, $depth ) { ?> <li <?php comment_class(); ?> id="li-comment-<?php comment_ID(); ?>"> <div id="comment-<?php comment_ID(); ?>"> - <div class="comment-author vcard"> - <?php echo get_avatar( $comment, 40 ); ?> - <?php printf( __( '%s <span class="says">says:</span>', 'twentyten' ), sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) ); ?> - </div><!-- .comment-author .vcard --> - <?php if ( $comment->comment_approved == '0' ) : ?> - <em class="comment-awaiting-moderation"><?php _e( 'Your comment is awaiting moderation.', 'twentyten' ); ?></em> - <br /> - <?php endif; ?> - - <div class="comment-meta commentmetadata"><a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>"> - <?php - /* translators: 1: date, 2: time */ - printf( __( '%1$s at %2$s', 'twentyten' ), get_comment_date(), get_comment_time() ); ?></a><?php edit_comment_link( __( '(Edit)', 'twentyten' ), ' ' ); - ?> - </div><!-- .comment-meta .commentmetadata --> - - <div class="comment-body"><?php comment_text(); ?></div> - - <div class="reply"> - <?php comment_reply_link( array_merge( $args, array( 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?> - </div><!-- .reply --> - </div><!-- #comment-## --> + <div class="comment-author vcard"> + <?php echo get_avatar( $comment, 40 ); ?> + <?php printf( __( '%s <span class="says">says:</span>', 'twentyten' ), sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) ); ?> + </div><!-- .comment-author .vcard --> + <?php if ( $comment->comment_approved == '0' ) : ?> + <em class="comment-awaiting-moderation"><?php _e( 'Your comment is awaiting moderation.', 'twentyten' ); ?></em> + <br /> + <?php endif; ?> + + <div class="comment-meta commentmetadata"><a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>"> + <?php + /* translators: 1: date, 2: time */ + printf( __( '%1$s at %2$s', 'twentyten' ), get_comment_date(), get_comment_time() ); ?></a><?php edit_comment_link( __( '(Edit)', 'twentyten' ), ' ' ); + ?> + </div><!-- .comment-meta .commentmetadata --> + + <div class="comment-body"><?php comment_text(); ?></div> + + <div class="reply"> + <?php comment_reply_link( array_merge( $args, array( 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?> + </div><!-- .reply --> + </div><!-- #comment-## --> <?php break; diff --git a/wp-content/themes/twentyten/images/headers/berries-thumbnail.jpg b/wp-content/themes/twentyten/images/headers/berries-thumbnail.jpg index 6e684f48b342b363654d66273e1810b302689bb6..9588d31b70c20f7129696f47aac714fa1c9f54cc 100644 Binary files a/wp-content/themes/twentyten/images/headers/berries-thumbnail.jpg and b/wp-content/themes/twentyten/images/headers/berries-thumbnail.jpg differ diff --git a/wp-content/themes/twentyten/images/headers/berries.jpg b/wp-content/themes/twentyten/images/headers/berries.jpg index 3031a059138e85b73440aa6590613081ca6b75af..b221abc4f640d52df837a5eec6f782436acfbc75 100644 Binary files a/wp-content/themes/twentyten/images/headers/berries.jpg and b/wp-content/themes/twentyten/images/headers/berries.jpg differ diff --git a/wp-content/themes/twentyten/images/headers/cherryblossoms-thumbnail.jpg b/wp-content/themes/twentyten/images/headers/cherryblossoms-thumbnail.jpg index 710049a36e4c7af5634f849dc08b956d9857ad80..c74744a8620086df891b3491139ed98356f50b52 100644 Binary files a/wp-content/themes/twentyten/images/headers/cherryblossoms-thumbnail.jpg and b/wp-content/themes/twentyten/images/headers/cherryblossoms-thumbnail.jpg differ diff --git a/wp-content/themes/twentyten/images/headers/cherryblossoms.jpg b/wp-content/themes/twentyten/images/headers/cherryblossoms.jpg index 56e9df0e2531986b1b72df20280fe5a966555e4e..c9fffea3ed52388afe7a230805a36fdee8a3f922 100644 Binary files a/wp-content/themes/twentyten/images/headers/cherryblossoms.jpg and b/wp-content/themes/twentyten/images/headers/cherryblossoms.jpg differ diff --git a/wp-content/themes/twentyten/images/headers/concave-thumbnail.jpg b/wp-content/themes/twentyten/images/headers/concave-thumbnail.jpg index b271867936fb0ea84d987ad8d49ed3151b7d0b2f..ed24a365cd20297f0bcc9e2a1e0bc6db581da591 100644 Binary files a/wp-content/themes/twentyten/images/headers/concave-thumbnail.jpg and b/wp-content/themes/twentyten/images/headers/concave-thumbnail.jpg differ diff --git a/wp-content/themes/twentyten/images/headers/concave.jpg b/wp-content/themes/twentyten/images/headers/concave.jpg index 9970de267bec887f26d35aad2fda49aa156ca4a1..0f29e4c5505807fa29d1af6af64ea7dbbb4a027a 100644 Binary files a/wp-content/themes/twentyten/images/headers/concave.jpg and b/wp-content/themes/twentyten/images/headers/concave.jpg differ diff --git a/wp-content/themes/twentyten/images/headers/fern-thumbnail.jpg b/wp-content/themes/twentyten/images/headers/fern-thumbnail.jpg index c6113ab5b8f8c1335256517adc446c0bd72f9b6a..1f78bd8a9436bce626946f02584249a717a7c113 100644 Binary files a/wp-content/themes/twentyten/images/headers/fern-thumbnail.jpg and b/wp-content/themes/twentyten/images/headers/fern-thumbnail.jpg differ diff --git a/wp-content/themes/twentyten/images/headers/fern.jpg b/wp-content/themes/twentyten/images/headers/fern.jpg index fc0b39437c45e12218bc85c1e6825af00eb092f4..bbefc6516f82b1947610b46d1e84c394f9f0fe23 100644 Binary files a/wp-content/themes/twentyten/images/headers/fern.jpg and b/wp-content/themes/twentyten/images/headers/fern.jpg differ diff --git a/wp-content/themes/twentyten/images/headers/forestfloor-thumbnail.jpg b/wp-content/themes/twentyten/images/headers/forestfloor-thumbnail.jpg index b888fc3e17e0b80610f9c425fa5cd8c3c93193c6..2c9eb7e01f85ee9da79674d6ddb44d5e42bb2ad1 100644 Binary files a/wp-content/themes/twentyten/images/headers/forestfloor-thumbnail.jpg and b/wp-content/themes/twentyten/images/headers/forestfloor-thumbnail.jpg differ diff --git a/wp-content/themes/twentyten/images/headers/forestfloor.jpg b/wp-content/themes/twentyten/images/headers/forestfloor.jpg index 453394882bade1113f4f9761256ffd799f7a0359..9cf3e60b91a10bbb0867d71484ca33c5f1b45482 100644 Binary files a/wp-content/themes/twentyten/images/headers/forestfloor.jpg and b/wp-content/themes/twentyten/images/headers/forestfloor.jpg differ diff --git a/wp-content/themes/twentyten/images/headers/inkwell-thumbnail.jpg b/wp-content/themes/twentyten/images/headers/inkwell-thumbnail.jpg index 61e775ed620d6976f593bbdf248915d9b51d1546..3693f0a001a8896b47ad5b13a9325ac1af0d9e7b 100644 Binary files a/wp-content/themes/twentyten/images/headers/inkwell-thumbnail.jpg and b/wp-content/themes/twentyten/images/headers/inkwell-thumbnail.jpg differ diff --git a/wp-content/themes/twentyten/images/headers/inkwell.jpg b/wp-content/themes/twentyten/images/headers/inkwell.jpg index 82b0b7d155bb6af0b773b15cbc79812492683761..8bd914712276c864fa088a389ee65c5772b8c8e7 100644 Binary files a/wp-content/themes/twentyten/images/headers/inkwell.jpg and b/wp-content/themes/twentyten/images/headers/inkwell.jpg differ diff --git a/wp-content/themes/twentyten/images/headers/path-thumbnail.jpg b/wp-content/themes/twentyten/images/headers/path-thumbnail.jpg index 0585ec462db4509e4fa43240b1df2a591b41939b..c19bba87393f1bfbd2cb06492da677072f444832 100644 Binary files a/wp-content/themes/twentyten/images/headers/path-thumbnail.jpg and b/wp-content/themes/twentyten/images/headers/path-thumbnail.jpg differ diff --git a/wp-content/themes/twentyten/images/headers/path.jpg b/wp-content/themes/twentyten/images/headers/path.jpg index d8694978864f13660982114378436732d9a725ab..5ebc76a92bfec4d4ed5e399541ca758d97cd8ce0 100644 Binary files a/wp-content/themes/twentyten/images/headers/path.jpg and b/wp-content/themes/twentyten/images/headers/path.jpg differ diff --git a/wp-content/themes/twentyten/images/headers/sunset-thumbnail.jpg b/wp-content/themes/twentyten/images/headers/sunset-thumbnail.jpg index 416c11a855663bee0945f511235c458397604f8c..34e0730c54d7b15e97b922f2cdfabce8d53edae2 100644 Binary files a/wp-content/themes/twentyten/images/headers/sunset-thumbnail.jpg and b/wp-content/themes/twentyten/images/headers/sunset-thumbnail.jpg differ diff --git a/wp-content/themes/twentyten/images/headers/sunset.jpg b/wp-content/themes/twentyten/images/headers/sunset.jpg index 66eddaa7fc2a7c7528ddbde6a65647f79418e40f..98cb24544c8b4c1d2d285c91d6b79941b2a94528 100644 Binary files a/wp-content/themes/twentyten/images/headers/sunset.jpg and b/wp-content/themes/twentyten/images/headers/sunset.jpg differ diff --git a/wp-content/themes/twentyten/images/wordpress.png b/wp-content/themes/twentyten/images/wordpress.png index 224f7c8da356a1eae25daea11a4d1a6db5778e3d..ac9d227805c225da997c56571ea7a7e6bc55f842 100644 Binary files a/wp-content/themes/twentyten/images/wordpress.png and b/wp-content/themes/twentyten/images/wordpress.png differ diff --git a/wp-content/themes/twentyten/languages/twentyten.pot b/wp-content/themes/twentyten/languages/twentyten.pot index e25d155f404eab8a075969c9d29610b0decf82b8..c2ea97d264cff50d305af552d79a540950f446e8 100644 --- a/wp-content/themes/twentyten/languages/twentyten.pot +++ b/wp-content/themes/twentyten/languages/twentyten.pot @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: Twenty Ten 1.4\n" "Report-Msgid-Bugs-To: http://wordpress.org/tags/twentyten\n" -"POT-Creation-Date: 2012-06-10 15:18:09+00:00\n" +"POT-Creation-Date: 2012-11-16 22:18:49+00:00\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -79,12 +79,12 @@ msgstr "" msgid "Newer Comments <span class=\"meta-nav\">→</span>" msgstr "" -#: comments.php:72 +#: comments.php:70 msgid "Comments are closed." msgstr "" #. #-#-#-#-# twentyten.pot (Twenty Ten 1.4) #-#-#-#-# -#. Theme URI of the plugin/theme +#. Author URI of the plugin/theme #: footer.php:33 msgid "http://wordpress.org/" msgstr "" @@ -141,102 +141,102 @@ msgstr "" msgid "Sunset" msgstr "" -#: functions.php:253 loop-attachment.php:104 loop.php:115 loop.php:143 +#: functions.php:255 loop-attachment.php:104 loop.php:115 loop.php:143 msgid "Continue reading <span class=\"meta-nav\">→</span>" msgstr "" -#: functions.php:335 +#: functions.php:338 msgid "%s <span class=\"says\">says:</span>" msgstr "" -#: functions.php:338 +#: functions.php:341 msgid "Your comment is awaiting moderation." msgstr "" #. translators: 1: date, 2: time -#: functions.php:345 +#: functions.php:348 msgid "%1$s at %2$s" msgstr "" -#: functions.php:345 functions.php:362 +#: functions.php:348 functions.php:365 msgid "(Edit)" msgstr "" -#: functions.php:362 +#: functions.php:365 msgid "Pingback:" msgstr "" -#: functions.php:381 +#: functions.php:384 msgid "Primary Widget Area" msgstr "" -#: functions.php:383 +#: functions.php:386 msgid "The primary widget area" msgstr "" -#: functions.php:392 +#: functions.php:395 msgid "Secondary Widget Area" msgstr "" -#: functions.php:394 +#: functions.php:397 msgid "The secondary widget area" msgstr "" -#: functions.php:403 +#: functions.php:406 msgid "First Footer Widget Area" msgstr "" -#: functions.php:405 +#: functions.php:408 msgid "The first footer widget area" msgstr "" -#: functions.php:414 +#: functions.php:417 msgid "Second Footer Widget Area" msgstr "" -#: functions.php:416 +#: functions.php:419 msgid "The second footer widget area" msgstr "" -#: functions.php:425 +#: functions.php:428 msgid "Third Footer Widget Area" msgstr "" -#: functions.php:427 +#: functions.php:430 msgid "The third footer widget area" msgstr "" -#: functions.php:436 +#: functions.php:439 msgid "Fourth Footer Widget Area" msgstr "" -#: functions.php:438 +#: functions.php:441 msgid "The fourth footer widget area" msgstr "" -#: functions.php:472 +#: functions.php:475 msgid "" "<span class=\"%1$s\">Posted on</span> %2$s <span class=\"meta-sep\">by</" "span> %3$s" msgstr "" -#: functions.php:481 loop-attachment.php:36 +#: functions.php:484 loop-attachment.php:36 msgid "View all posts by %s" msgstr "" -#: functions.php:498 +#: functions.php:501 msgid "" "This entry was posted in %1$s and tagged %2$s. Bookmark the <a href=\"%3$s\" " "title=\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>." msgstr "" -#: functions.php:500 +#: functions.php:503 msgid "" "This entry was posted in %1$s. Bookmark the <a href=\"%3$s\" title=" "\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>." msgstr "" -#: functions.php:502 +#: functions.php:505 msgid "" "Bookmark the <a href=\"%3$s\" title=\"Permalink to %4$s\" rel=\"bookmark" "\">permalink</a>." @@ -394,6 +394,10 @@ msgstr "" msgid "Twenty Ten" msgstr "" +#. Theme URI of the plugin/theme +msgid "http://wordpress.org/extend/themes/twentyten" +msgstr "" + #. Description of the plugin/theme msgid "" "The 2010 theme for WordPress is stylish, customizable, simple, and readable " @@ -410,13 +414,6 @@ msgstr "" msgid "the WordPress team" msgstr "" -#. Tags of the plugin/theme -msgid "" -"black, blue, white, two-columns, fixed-width, custom-header, custom-" -"background, threaded-comments, sticky-post, translation-ready, microformats, " -"rtl-language-support, editor-style, custom-menu" -msgstr "" - #. Template Name of the plugin/theme msgid "One column, no sidebar" msgstr "" diff --git a/wp-content/themes/twentyten/loop.php b/wp-content/themes/twentyten/loop.php index 3e22fe2477f9c2d3bfc1c2985de16048fb52a4fe..044e14f12bcd3bed6f8d22fd88e6b1a7d38aad6c 100644 --- a/wp-content/themes/twentyten/loop.php +++ b/wp-content/themes/twentyten/loop.php @@ -59,7 +59,7 @@ <?php if ( ( function_exists( 'get_post_format' ) && 'gallery' == get_post_format( $post->ID ) ) || in_category( _x( 'gallery', 'gallery category slug', 'twentyten' ) ) ) : ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> - <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> + <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <div class="entry-meta"> <?php twentyten_posted_on(); ?> @@ -80,7 +80,7 @@ <a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php echo $image_img_tag; ?></a> </div><!-- .gallery-thumb --> <p><em><?php printf( _n( 'This gallery contains <a %1$s>%2$s photo</a>.', 'This gallery contains <a %1$s>%2$s photos</a>.', $total_images, 'twentyten' ), - 'href="' . get_permalink() . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark"', + 'href="' . get_permalink() . '" title="' . esc_attr( sprintf( __( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ) ) . '" rel="bookmark"', number_format_i18n( $total_images ) ); ?></em></p> <?php endif; ?> @@ -128,7 +128,7 @@ <?php else : ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> - <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> + <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <div class="entry-meta"> <?php twentyten_posted_on(); ?> diff --git a/wp-content/themes/twentyten/rtl.css b/wp-content/themes/twentyten/rtl.css index 339e6e5296ce22f6aebe978f15c847b12d5c5234..fd79cd83b6dddbefdaa3679bae7531a32edf336e 100644 --- a/wp-content/themes/twentyten/rtl.css +++ b/wp-content/themes/twentyten/rtl.css @@ -66,7 +66,7 @@ h3#reply-title, .pingback p, .reply, .widget-title, -input[type=submit] { +input[type="submit"] { font-family: Arial, Tahoma, sans-serif; } diff --git a/wp-content/themes/twentyten/screenshot.png b/wp-content/themes/twentyten/screenshot.png index 256069fc5963f7ed9f2cbd25fc2f6741db1db859..6f01d9451ad3d083eaf2b9228fbb4fa2dd9b8f55 100644 Binary files a/wp-content/themes/twentyten/screenshot.png and b/wp-content/themes/twentyten/screenshot.png differ diff --git a/wp-content/themes/twentyten/style.css b/wp-content/themes/twentyten/style.css index ecf29f58023b458402b5f069404d4d348fdbcdf4..390e0fed5fce1350f72bd639ba3037f903da205d 100644 --- a/wp-content/themes/twentyten/style.css +++ b/wp-content/themes/twentyten/style.css @@ -1,12 +1,13 @@ /* Theme Name: Twenty Ten -Theme URI: http://wordpress.org/ +Theme URI: http://wordpress.org/extend/themes/twentyten Description: The 2010 theme for WordPress is stylish, customizable, simple, and readable -- make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the "Asides" and "Gallery" categories, and has an optional one-column page template that removes the sidebar. Author: the WordPress team -Version: 1.4 +Author URI: http://wordpress.org/ +Version: 1.5 License: GNU General Public License v2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html -Tags: black, blue, white, two-columns, fixed-width, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu +Tags: black, blue, white, two-columns, fixed-width, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu, flexible-header Text Domain: twentyten */ @@ -145,7 +146,7 @@ h3#reply-title, .wp-caption-text { font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif; } -input[type=submit] { +input[type="submit"] { font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif; } pre { @@ -307,7 +308,14 @@ sup { sub { top: .5ex; } +small { + font-size: smaller; +} input[type="text"], +input[type="password"], +input[type="email"], +input[type="url"], +input[type="number"], textarea { background: #f9f9f9; border: 1px solid #ccc; @@ -437,12 +445,14 @@ div.menu li { display: block; } #access ul li.current_page_item > a, +#access ul li.current_page_ancestor > a, #access ul li.current-menu-ancestor > a, #access ul li.current-menu-item > a, #access ul li.current-menu-parent > a { color: #fff; } * html #access ul li.current_page_item a, +* html #access ul li.current_page_ancestor a, * html #access ul li.current-menu-ancestor a, * html #access ul li.current-menu-item a, * html #access ul li.current-menu-parent a, @@ -645,7 +655,7 @@ div.menu li { clear: both; color: #000; font-weight: bold; - margin: 0 0 22px 0; + line-height: 48px; word-spacing: 0.5em; } .page-link a:link, @@ -781,7 +791,8 @@ img.size-auto, img.size-full, img.size-large, img.size-medium, -.attachment img { +.attachment img, +.widget-container img { max-width: 100%; /* When images are too wide for containing element, force them to fit. */ height: auto; /* Override height to match resized width for correct aspect ratio. */ } @@ -1041,7 +1052,7 @@ a.comment-edit-link:hover { } /* Comments form */ -input[type=submit] { +input[type="submit"] { color: #333; } #respond { @@ -1129,8 +1140,15 @@ h3#reply-title { display: none; } .widget-container { + word-wrap: break-word; + -webkit-hyphens: auto; + -moz-hyphens: auto; + hyphens: auto; margin: 0 0 18px 0; } +.widget-container .wp-caption img { + margin: auto; +} .widget-title { color: #222; font-weight: bold;