From ba519334d17b5d39a3ccbc09c41384f2bea70807 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Fri, 31 May 2024 18:01:56 -0500 Subject: [PATCH] Fix overflow when instance header title is too long --- tailbone/templates/themes/butterball/base.mako | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tailbone/templates/themes/butterball/base.mako b/tailbone/templates/themes/butterball/base.mako index 8a951831..ba0f64ba 100644 --- a/tailbone/templates/themes/butterball/base.mako +++ b/tailbone/templates/themes/butterball/base.mako @@ -186,6 +186,13 @@ } % endif + #content-title h1 { + max-width: 50%; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + ## TODO: is this a good idea? h1.title { font-size: 2rem;