From bfdb5f5cd4b82820371e4cff470502f908d115e4 Mon Sep 17 00:00:00 2001 From: "David A. Kennedy" Date: Thu, 1 Dec 2016 02:48:48 +0000 Subject: [PATCH] Twenty Seventeen: Make spacing on pages without comments consistent Previously, the top of the page had more space than the bottom, not matching the original design. Props laurelfulford, melchoyce. Fixes #38972. Built from https://develop.svn.wordpress.org/trunk@39404 git-svn-id: http://core.svn.wordpress.org/trunk@39344 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyseventeen/style.css | 10 +++++++++- wp-includes/version.php | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/wp-content/themes/twentyseventeen/style.css b/wp-content/themes/twentyseventeen/style.css index cc93251d53..8b0e4faa30 100644 --- a/wp-content/themes/twentyseventeen/style.css +++ b/wp-content/themes/twentyseventeen/style.css @@ -2239,6 +2239,10 @@ body:not(.twentyseventeen-front-page) .entry-header { margin: 0 0 1.5em; } +.page:not(.home) #content { + padding-bottom: 1.5em; +} + /* 404 page */ .error404 .page-content { @@ -3657,7 +3661,7 @@ object { /* Posts */ .site-content { - padding: 6.5em 0 0; + padding: 5.5em 0 0; } .single-post .entry-title, @@ -3818,6 +3822,10 @@ object { margin-bottom: 4em; } + .page:not(.home) #content { + padding-bottom: 3.25em; + } + /* 404 page */ .error404 .page-content { diff --git a/wp-includes/version.php b/wp-includes/version.php index 21b425fd79..ef0dd5b483 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8-alpha-39402'; +$wp_version = '4.8-alpha-39404'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.