Skip to content

Commit

Permalink
Twenty Twelve: better fix for long words getting hidden in widgets, p…
Browse files Browse the repository at this point in the history
…utting the rules in the correct selector, props obenland. Closes #21503.

git-svn-id: http://core.svn.wordpress.org/trunk@21517 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
lancewillett committed Aug 15, 2012
1 parent 6ef6055 commit 632e41f
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions wp-content/themes/twentytwelve/style.css
Expand Up @@ -455,12 +455,6 @@ a:hover {
/* Page structure */
.wrapper {
overflow: hidden;
-moz-hyphens: auto;
-ms-word-break: break-all;
-webkit-hyphens: auto;
hyphens: auto;
word-break: break-all;
word-break: break-word;
}
.site {
padding: 0 24px;
Expand Down Expand Up @@ -628,6 +622,13 @@ section[role="banner"] {

/* Sidebar */
.widget-area .widget {
overflow: hidden;
-moz-hyphens: auto;
-ms-word-break: break-all;
-webkit-hyphens: auto;
hyphens: auto;
word-break: break-all;
word-break: break-word;
margin-bottom: 48px;
margin-bottom: 3.428571429rem;
}
Expand Down

0 comments on commit 632e41f

Please sign in to comment.