Merge "Break more rules in break-word so long words can wrap in notifications"

This commit is contained in:
jenkins-bot 2016-09-08 00:06:47 +00:00 committed by Gerrit Code Review
commit 39720f926b

View file

@ -55,7 +55,12 @@
// The 'mark as read' circle is placed with a right
// margin of -1em
padding-right: 1em;
// break-word rules are inconsistent accross browsers
// these three rules should cover the main use cases
// with major browser support
word-break: break-word;
word-wrap: break-word;
overflow-wrap: break-word;
&-header {
color: @notification-text-color;