mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-24 07:54:13 +00:00
Break more rules in break-word so long words can wrap in notifications
Change-Id: Ib0cde96438175f2bc136bd89d4a2717785cecba0
This commit is contained in:
parent
3a4a2d3ff2
commit
22d83568f7
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue