Twenty Twelve: remove overflow rule from wrapper element to allow image styles to spill out into margins. Fixes #21926. See also #21381.
git-svn-id: https://develop.svn.wordpress.org/trunk@21918 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
8aee69730b
commit
c2a1b19736
|
@ -157,11 +157,14 @@ img {
|
|||
}
|
||||
|
||||
/* Clearing floats */
|
||||
.clear:after {
|
||||
.clear:after,
|
||||
.wrapper:after {
|
||||
clear: both;
|
||||
}
|
||||
.clear:before,
|
||||
.clear:after {
|
||||
.clear:after,
|
||||
.wrapper:before,
|
||||
.wrapper:after {
|
||||
display: table;
|
||||
content: "";
|
||||
}
|
||||
|
@ -462,9 +465,6 @@ a:hover {
|
|||
}
|
||||
|
||||
/* Page structure */
|
||||
.wrapper {
|
||||
overflow: hidden;
|
||||
}
|
||||
.site {
|
||||
padding: 0 24px;
|
||||
padding: 0 1.714285714rem;
|
||||
|
|
Loading…
Reference in New Issue