aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/static
diff options
context:
space:
mode:
authorAndrew Browning <ayleph@thisshitistemp.com>2016-10-23 12:32:25 -0700
committerAndrew Browning <ayleph@thisshitistemp.com>2016-10-23 15:39:24 -0400
commit7ee8e6b9f3817fa67e10472f0b753460ee39f866 (patch)
tree13edb8c259d61195fb02df18d94e403f2957e255 /mediagoblin/static
parent4a17f151ccd812b71dd91c5f0cff12fec61e8060 (diff)
downloadmediagoblin-7ee8e6b9f3817fa67e10472f0b753460ee39f866.tar.lz
mediagoblin-7ee8e6b9f3817fa67e10472f0b753460ee39f866.tar.xz
mediagoblin-7ee8e6b9f3817fa67e10472f0b753460ee39f866.zip
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>
Diffstat (limited to 'mediagoblin/static')
-rw-r--r--mediagoblin/static/css/base.css6
1 files changed, 6 insertions, 0 deletions
diff --git a/mediagoblin/static/css/base.css b/mediagoblin/static/css/base.css
index 1628232b..961852e9 100644
--- a/mediagoblin/static/css/base.css
+++ b/mediagoblin/static/css/base.css
@@ -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;
}