From ff3aef48abb42a0fa47fb320af9c2feba89e6e9b Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Mon, 3 Jan 2022 20:01:21 +0100 Subject: Clip prompt text rather than wrap. --- public/common/grid.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/public/common/grid.css b/public/common/grid.css index 66537f4..0532648 100644 --- a/public/common/grid.css +++ b/public/common/grid.css @@ -178,9 +178,13 @@ header button { } #prompt { - margin: 0 50px; + margin: 0 20px; font-size: 18px; - flex-grow: 1; + flex: 1 1 0; + width: 0; + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; } /* ROLES */ -- cgit v1.2.3