Fixed word breaking bug

See TryGhost/Ghost@044cf21887
This commit is contained in:
John O'Nolan 2013-08-21 08:42:36 +02:00 committed by Hannah Wolfe
parent d6fec8d50f
commit 43d1e2723f
1 changed files with 6 additions and 10 deletions

View File

@ -108,14 +108,14 @@ a:hover {
.post {
max-width: 700px;
margin: 0 auto;
/* Break long words to new line */
word-break: break-word;
hyphens: auto;
}
.post-title {
/* Breaking for long words in preview region */
word-break: break-word;
word-break: break-all;
-webkit-hyphens: auto;
hyphens: auto;
}
.post-title a {
@ -123,11 +123,7 @@ a:hover {
}
.post-content {
/* Breaking for long words in preview region */
word-break: break-word;
word-break: break-all;
-webkit-hyphens: auto;
hyphens: auto;
}
.post-meta {