Merge branch 'word-break' into 'master'

Prevent words from breaking mid-word in Notifications

By current behaviour, Notifications will break a word and wrap onto a new line even if it has to cut off the word in half. This is sometimes a good approach for link-intensive posts, but not as much on text-intensive ones.

![chrome_2016-02-14_02-17-16](/uploads/fe76a46fdaa8bb3509fd5ac0db9016f1/chrome_2016-02-14_02-17-16.png)


See merge request !19
This commit is contained in:
hannes 2016-02-16 10:49:10 +00:00
commit a5d114cd0c

View File

@ -1836,7 +1836,7 @@ background-repeat: no-repeat;
.stream-item.notification .small-grey-notice,
.stream-item.notification .small-grey-notice a {
color:#999;
word-break: break-all;
word-wrap: break-word;
}
.stream-item.notification .small-grey-notice a:hover {
color:#333;