From 128c61411ab84166fc6ab684251642957e83e538 Mon Sep 17 00:00:00 2001 From: iandstewart Date: Wed, 25 May 2011 21:19:52 +0000 Subject: [PATCH] Twenty Eleven: Style fixes and showcase improvements; Props matveb * Remove bottom border from last post * Improve featured posts on the showcase: move slider navigation to the top right; make sure the bottom border shows; make the reading more link thicker * Positioning fix for image post format meta * Dark stylesheet improvements * Ensure search input text is centred vertically git-svn-id: http://svn.automattic.com/wordpress/trunk@18050 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- .../themes/twentyeleven/colors/dark.css | 6 ++- .../themes/twentyeleven/inc/theme-options.php | 5 ++- wp-content/themes/twentyeleven/style.css | 42 +++++++++++++------ 3 files changed, 39 insertions(+), 14 deletions(-) diff --git a/wp-content/themes/twentyeleven/colors/dark.css b/wp-content/themes/twentyeleven/colors/dark.css index 8146ffda4..5ebdb256d 100644 --- a/wp-content/themes/twentyeleven/colors/dark.css +++ b/wp-content/themes/twentyeleven/colors/dark.css @@ -61,7 +61,7 @@ a { color: #858585; } #branding #s { - background-color: #fff; + background-color: #ddd; } @@ -69,6 +69,10 @@ a { ----------------------------------------------- */ #access { + background: #333; /* Show a solid color for older browsers */ + background: -moz-linear-gradient(#383838, #272727); + background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#383838), to(#272727)); /* older webkit syntax */ + background: -webkit-linear-gradient(#383838, #272727); border-bottom: 1px solid #222; } diff --git a/wp-content/themes/twentyeleven/inc/theme-options.php b/wp-content/themes/twentyeleven/inc/theme-options.php index fb67c76e0..6da9ac6be 100644 --- a/wp-content/themes/twentyeleven/inc/theme-options.php +++ b/wp-content/themes/twentyeleven/inc/theme-options.php @@ -321,7 +321,10 @@ function twentyeleven_print_link_color_style() { } section.recent-posts .other-recent-posts .comments-link a:hover { border-color: ; - } + } + article.feature-image.small .entry-summary p a:hover { + background: ; + }