Twenty Fourteen: remove singular body class when a page is set to be the front page, and minor style tweaks. Props iamtakashi, see #25946.

Built from https://develop.svn.wordpress.org/trunk@26249


git-svn-id: http://core.svn.wordpress.org/trunk@26155 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Lance Willett 2013-11-18 19:21:09 +00:00
parent 116d02da86
commit 881c608592
3 changed files with 30 additions and 64 deletions

View File

@ -399,7 +399,7 @@ function twentyfourteen_body_classes( $classes ) {
if ( is_active_sidebar( 'sidebar-3' ) ) if ( is_active_sidebar( 'sidebar-3' ) )
$classes[] = 'footer-widgets'; $classes[] = 'footer-widgets';
if ( is_singular() ) if ( is_singular() && ! is_front_page() )
$classes[] = 'singular'; $classes[] = 'singular';
if ( is_front_page() && 'slider' == get_theme_mod( 'featured_content_layout' ) ) if ( is_front_page() && 'slider' == get_theme_mod( 'featured_content_layout' ) )

View File

@ -13,7 +13,7 @@ See http://codex.wordpress.org/Right_to_Left_Language_Support
* 1.0 - Reset * 1.0 - Reset
* 2.0 - Repeatable Patterns * 2.0 - Repeatable Patterns
* 4.0 - Header * 4.0 - Header
* 5.0 - Navigations * 5.0 - Navigation
* 6.0 - Content * 6.0 - Content
* 6.4 - Entry Content * 6.4 - Entry Content
* 6.5 - Galleries * 6.5 - Galleries
@ -103,7 +103,7 @@ td {
/** /**
* 5.0 Navigations * 5.0 Navigation
* ----------------------------------------------------------------------------- * -----------------------------------------------------------------------------
*/ */
@ -162,19 +162,7 @@ td {
.page-links > .page-links-title { .page-links > .page-links-title {
padding-right: 0; padding-right: 0;
padding-left: 9px; padding-left: 7px;
}
.more-link .meta-nav,
.post-format-archive-link .meta-nav {
right: 0;
left: auto;
}
.more-link:hover .meta-nav,
.post-format-archive-link:hover .meta-nav {
right: 5px;
left: auto;
} }

View File

@ -20,7 +20,7 @@ Use it to make something cool, have fun, and share what you've learned with othe
* 2.0 - Repeatable Patterns * 2.0 - Repeatable Patterns
* 3.0 - Basic Structure * 3.0 - Basic Structure
* 4.0 - Header * 4.0 - Header
* 5.0 - Navigations * 5.0 - Navigation
* 6.0 - Content * 6.0 - Content
* 6.1 - Post Thumbnail * 6.1 - Post Thumbnail
* 6.2 - Entry Header * 6.2 - Entry Header
@ -901,7 +901,7 @@ span + .edit-link:before,
/** /**
* 5.0 Navigations * 5.0 Navigation
* ----------------------------------------------------------------------------- * -----------------------------------------------------------------------------
*/ */
@ -1000,7 +1000,7 @@ span + .edit-link:before,
*/ */
.content-area { .content-area {
padding-top: 24px; padding-top: 48px;
} }
.hentry { .hentry {
@ -1363,29 +1363,10 @@ a.post-thumbnail:hover {
.page-links > .page-links-title { .page-links > .page-links-title {
height: auto; height: auto;
margin: 0; margin: 0;
padding-right: 9px; padding-right: 7px;
width: auto; width: auto;
} }
/* More link */
.post-format-archive-link {
font-size: 14px;
text-transform: uppercase;
white-space: pre;
}
.more-link .meta-nav,
.post-format-archive-link .meta-nav {
position: relative;
left: 0;
}
.more-link:hover .meta-nav,
.post-format-archive-link:hover .meta-nav {
left: 5px;
}
/** /**
* 6.5 Gallery * 6.5 Gallery
@ -1753,8 +1734,8 @@ a.post-thumbnail:hover {
* ----------------------------------------------------------------------------- * -----------------------------------------------------------------------------
*/ */
.singular .hentry.has-post-thumbnail { .singular .site-content .hentry.has-post-thumbnail {
margin-top: -24px; margin-top: -48px;
} }
@ -1771,9 +1752,7 @@ a.post-thumbnail:hover {
.comment-reply-title, .comment-reply-title,
.comments-title { .comments-title {
font-size: 16px; font: 900 16px/1.5 Lato, sans-serif;
font-weight: 900;
line-height: 1.5;
margin: 0; margin: 0;
text-transform: uppercase; text-transform: uppercase;
} }
@ -1829,8 +1808,8 @@ a.post-thumbnail:hover {
} }
.comment-list > li:first-child > article, .comment-list > li:first-child > article,
.comment-list > li:first-child > .pingback, .comment-list > .pingback:first-child,
.comment-list > li:first-child > .trackback { .comment-list > .trackback:first-child {
border-top: 0 border-top: 0
} }
@ -1961,6 +1940,7 @@ a.post-thumbnail:hover {
.comment-reply-title small a { .comment-reply-title small a {
color: #2b2b2b; color: #2b2b2b;
display: inline-block;
float: right; float: right;
height: 24px; height: 24px;
overflow: hidden; overflow: hidden;
@ -2365,6 +2345,7 @@ a.post-thumbnail:hover {
.widget_twentyfourteen_ephemera .post-format-archive-link { .widget_twentyfourteen_ephemera .post-format-archive-link {
font-weight: 700; font-weight: 700;
text-transform: uppercase;
} }
/* List Style Widgets*/ /* List Style Widgets*/
@ -2412,11 +2393,15 @@ a.post-thumbnail:hover {
/* RSS Widget */ /* RSS Widget */
.widget_rss .rsswidget img { .rsswidget img {
margin-top: -4px; margin-top: -4px;
} }
.widget_rss .rss-date { .rssSummary {
margin: 9px 0;
}
.rss-date {
display: block; display: block;
} }
@ -3131,10 +3116,6 @@ a.post-thumbnail:hover {
.error404 .page-header { .error404 .page-header {
margin-bottom: 24px; margin-bottom: 24px;
} }
.featured-content {
margin-bottom: 48px;
}
} }
@media screen and (min-width: 594px) { @media screen and (min-width: 594px) {
@ -3163,7 +3144,6 @@ a.post-thumbnail:hover {
.content-area { .content-area {
float: left; float: left;
padding-top: 48px;
width: 100%; width: 100%;
} }
@ -3188,7 +3168,7 @@ a.post-thumbnail:hover {
padding-left: 30px; padding-left: 30px;
} }
.singular .hentry.has-post-thumbnail { .singular .site-content .hentry.has-post-thumbnail {
margin-top: 0 margin-top: 0
} }
@ -3196,10 +3176,7 @@ a.post-thumbnail:hover {
margin-right: 0; margin-right: 0;
} }
.full-width .site-content .has-post-thumbnail .entry-header { .full-width .site-content .has-post-thumbnail .entry-header,
margin-top: -48px;
}
.full-width.singular .site-content .hentry.has-post-thumbnail { .full-width.singular .site-content .hentry.has-post-thumbnail {
margin-top: -48px; margin-top: -48px;
} }
@ -3217,10 +3194,6 @@ a.post-thumbnail:hover {
width: 33.33333333%; width: 33.33333333%;
} }
.featured-content {
margin-bottom: 24px;
}
.grid .featured-content .hentry { .grid .featured-content .hentry {
float: left; float: left;
width: 50%; width: 50%;
@ -3701,7 +3674,7 @@ a.post-thumbnail:hover {
.footer-sidebar .widget .widget-title, .footer-sidebar .widget .widget-title,
.primary-sidebar .widget .widget-title { .primary-sidebar .widget .widget-title {
font-size: 11px; font-size: 11px;
font-weight: 700; font-weight: 900;
line-height: 1.6363636363; line-height: 1.6363636363;
margin-bottom: 18px; margin-bottom: 18px;
} }
@ -3740,6 +3713,11 @@ a.post-thumbnail:hover {
padding: 0; padding: 0;
} }
.footer-sidebar .widget_recent_entries li,
.primary-sidebar .widget_recent_entries li {
margin-bottom: 18px;
}
#supplementary { #supplementary {
padding: 0; padding: 0;
} }
@ -4033,7 +4011,7 @@ a.post-thumbnail:hover {
color: #fff; color: #fff;
} }
.singular .hentry.has-post-thumbnail { .singular .site-content .hentry.has-post-thumbnail {
margin-top: 0; margin-top: 0;
} }