Twenty Fifteen: Remove a gap between content and footer when the sidebar is longer than the content.
Props iamtakashi, fixes #30228. Built from https://develop.svn.wordpress.org/trunk@30220 git-svn-id: http://core.svn.wordpress.org/trunk@30220 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a17fd23e41
commit
8a930c93a8
|
@ -645,8 +645,8 @@ img.alignleft {
|
||||||
}
|
}
|
||||||
|
|
||||||
.site-footer {
|
.site-footer {
|
||||||
margin-right: 35.2941%;
|
float: right;
|
||||||
margin-left: auto;
|
margin: 0 35.2941% 0 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1272,8 +1272,6 @@ img.aligncenter {
|
||||||
.comment-content:after,
|
.comment-content:after,
|
||||||
.site-content:before,
|
.site-content:before,
|
||||||
.site-content:after,
|
.site-content:after,
|
||||||
.site-footer:before,
|
|
||||||
.site-footer:after,
|
|
||||||
.nav-links:before,
|
.nav-links:before,
|
||||||
.nav-links:after,
|
.nav-links:after,
|
||||||
.comment-navigation:before,
|
.comment-navigation:before,
|
||||||
|
@ -1291,7 +1289,6 @@ img.aligncenter {
|
||||||
.entry-content:after,
|
.entry-content:after,
|
||||||
.comment-content:after,
|
.comment-content:after,
|
||||||
.site-content:after,
|
.site-content:after,
|
||||||
.site-footer:after,
|
|
||||||
.nav-links:after,
|
.nav-links:after,
|
||||||
.comment-navigation:after,
|
.comment-navigation:after,
|
||||||
.social-navigation ul:after,
|
.social-navigation ul:after,
|
||||||
|
@ -4535,8 +4532,8 @@ span > video {
|
||||||
}
|
}
|
||||||
|
|
||||||
.site-footer {
|
.site-footer {
|
||||||
clear: both;
|
float: left;
|
||||||
margin-left: 35.2941%;
|
margin: 0 0 0 35.2941%;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
width: 58.8235%;
|
width: 58.8235%;
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.1-alpha-30219';
|
$wp_version = '4.1-alpha-30220';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue