Twenty Twelve: fix for long words getting hidden in widgets. Props DrewAPicture, closes #21503.
git-svn-id: http://core.svn.wordpress.org/trunk@21477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5280582df1
commit
e220162063
|
@ -453,6 +453,12 @@ a:hover {
|
||||||
/* Page structure */
|
/* Page structure */
|
||||||
.wrapper {
|
.wrapper {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
-moz-hyphens: auto;
|
||||||
|
-ms-word-break: break-all;
|
||||||
|
-webkit-hyphens: auto;
|
||||||
|
hyphens: auto;
|
||||||
|
word-break: break-all;
|
||||||
|
word-break: break-word;
|
||||||
}
|
}
|
||||||
.site {
|
.site {
|
||||||
padding: 0 24px;
|
padding: 0 24px;
|
||||||
|
|
Loading…
Reference in New Issue