aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-12-01 14:42:55 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-12-01 14:42:55 +0100
commit191fc3e3f3823ae6046c1c439e800565d7da4f16 (patch)
treec7f2752b4a5ca890bca3df4b9ff4ec368cca9832
parentMade mail header set configurable. (diff)
downloadmu4web-191fc3e3f3823ae6046c1c439e800565d7da4f16.tar.gz
mu4web-191fc3e3f3823ae6046c1c439e800565d7da4f16.tar.xz
Force search results to fit inside one line.
-rw-r--r--mu4web/static/style.css9
1 files changed, 9 insertions, 0 deletions
diff --git a/mu4web/static/style.css b/mu4web/static/style.css
index 2164fbd..75d4a28 100644
--- a/mu4web/static/style.css
+++ b/mu4web/static/style.css
@@ -126,3 +126,12 @@ main pre {
white-space: pre-wrap;
border: 2px solid black;
}
+
+table a {
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ /* Ugly hack to force table to be reasonable width */
+ display: inline-block;
+ max-width: calc(100vw/4);
+}