From 2bb14f86265b9e90f66d50e444565c819b759ce8 Mon Sep 17 00:00:00 2001 From: Lance Willett Date: Thu, 11 Apr 2013 15:57:50 +0000 Subject: [PATCH] Twenty Thirteen: minor design tweaks and fixes: * Link color should be the same on all links that are on white or tan backgrounds, see #23784 * Better color value for active menu item (red instead of tan) * Improved styles for quote citations that are wrapped in links * Better layout for single post navigation links when post titles are '''really''' long * Fix navbar border style for viewports at 1600 pixels wide and above Props Joen and obenland. git-svn-id: https://develop.svn.wordpress.org/trunk@23962 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-content/themes/twentythirteen/rtl.css | 1 + wp-content/themes/twentythirteen/style.css | 18 +++++++++++++++--- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/wp-content/themes/twentythirteen/rtl.css b/wp-content/themes/twentythirteen/rtl.css index 6a626418a0..9f64b92094 100644 --- a/wp-content/themes/twentythirteen/rtl.css +++ b/wp-content/themes/twentythirteen/rtl.css @@ -519,6 +519,7 @@ div.nav-menu > ul { .post-navigation a[rel="next"] { float: left; + text-align: left; } diff --git a/wp-content/themes/twentythirteen/style.css b/wp-content/themes/twentythirteen/style.css index efd99de156..18e385a1d4 100644 --- a/wp-content/themes/twentythirteen/style.css +++ b/wp-content/themes/twentythirteen/style.css @@ -766,6 +766,9 @@ img.wp-smiley, background-color: #fff; border-left: 1px solid #f2f2f2; border-right: 1px solid #f2f2f2; + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; margin: 0 auto; max-width: 1600px; width: 100%; @@ -916,7 +919,7 @@ ul.nav-menu li:hover > ul, .nav-menu .current_page_ancestor > a, .nav-menu .current-menu-item > a, .nav-menu .current-menu-ancestor > a { - color: #825920; + color: #bc360a; font-style: italic; } @@ -1730,6 +1733,14 @@ footer.entry-meta { .format-quote .entry-meta a { color: #e63f2a; } +.format-quote .entry-content cite a { + border-bottom: 1px dotted #fff; + color: #fff; +} + +.format-quote .entry-content cite a:hover { + text-decoration: none; +} .format-quote .quote-caption, .format-quote blockquote small, @@ -1997,7 +2008,7 @@ footer.entry-meta { } .navigation a { - color: #e63f2a; + color: #bc360a; } .navigation a:hover { @@ -2077,6 +2088,7 @@ footer.entry-meta { .post-navigation a[rel="next"] { float: right; + text-align: right; } @@ -2316,7 +2328,7 @@ footer.entry-meta { .comment-author .url, .comment-reply-link, .comment-reply-login { - color: #ed331c; + color: #bc360a; font-size: 14px; font-style: normal; }