Twenty Fourteen: fix overlap issue when aligning consecutive images in the same direction. Props koki4a and janhenckens, fixes #26194.
Built from https://develop.svn.wordpress.org/trunk@26363 git-svn-id: http://core.svn.wordpress.org/trunk@26264 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9e8d825b18
commit
69fa4a1365
|
@ -3,7 +3,7 @@ Theme Name: Twenty Fourteen
|
|||
Theme URI: http://wordpress.org/themes/
|
||||
Author: the WordPress team
|
||||
Author URI: http://wordpress.org/
|
||||
Description: In 2014, our default theme lets you create a responsive magazine website with a sleek, modern design. Feature your favorite homepage content in either a grid or a slider. Use the three widget areas to customize your website, and change your content's layout with a full width page template and a contributor page to show of your authors. Creating a magazine website with WordPress has never been easier.
|
||||
Description: In 2014, our default theme lets you create a responsive magazine website with a sleek, modern design. Feature your favorite homepage content in either a grid or a slider. Use the three widget areas to customize your website, and change your content's layout with a full width page template and a contributor page to show of your authors. Creating a magazine website with WordPress has never been easier.
|
||||
Version: 0.1
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
|
@ -3424,6 +3424,10 @@ a.post-thumbnail:hover {
|
|||
margin-left: -168px;
|
||||
}
|
||||
|
||||
.full-width .site-content .alignleft {
|
||||
clear: left;
|
||||
}
|
||||
|
||||
.full-width .site-content blockquote.alignright,
|
||||
.full-width .site-content img.size-full.alignright,
|
||||
.full-width .site-content img.size-large.alignright,
|
||||
|
@ -3431,6 +3435,10 @@ a.post-thumbnail:hover {
|
|||
.full-width .site-content .wp-caption.alignright {
|
||||
margin-right: -168px;
|
||||
}
|
||||
|
||||
.full-width .site-content .alignright {
|
||||
clear: right;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 846px) {
|
||||
|
|
Loading…
Reference in New Issue