summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2022-01-03 20:01:21 +0100
committerTor Andersson <tor@ccxvii.net>2022-01-06 12:10:23 +0100
commitff3aef48abb42a0fa47fb320af9c2feba89e6e9b (patch)
tree98b55c640b32eabd794c638b2df7aa4fd874587f
parent9cfc8c6b1d51385d3c6c98832bf78dc67d7e3db9 (diff)
downloadserver-ff3aef48abb42a0fa47fb320af9c2feba89e6e9b.tar.gz
Clip prompt text rather than wrap.
-rw-r--r--public/common/grid.css8
1 files 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 */