Fix #664 - Text overflow in media headings

Merge in kesara's changes to fix the media heading overflows on edit
and delete pages for ticket #664.

Signed-off-by: Andrew Browning <ayleph@thisshitistemp.com>
This commit is contained in:
Andrew Browning 2016-10-23 12:32:25 -07:00
parent 4a17f151cc
commit 7ee8e6b9f3

View File

@ -394,6 +394,12 @@ text-align: center;
margin-right: auto;
}
.form_box > h1, .form_box_xl > h1 {
/* Fix header overflowing issue. */
overflow: hidden;
text-overflow: ellipsis
}
.form_box_xl {
max-width: 460px;
}