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: ; + }