From ae158fd920e3626e174f215e102fb160530a0070 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Phillip=20K=C3=BChne?= Date: Thu, 22 Aug 2019 16:19:40 +0200 Subject: [PATCH] Limit width of name cell in table to prevent abuse --- app/static/css/style.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/app/static/css/style.css b/app/static/css/style.css index ae2ad70..8953106 100644 --- a/app/static/css/style.css +++ b/app/static/css/style.css @@ -28,6 +28,15 @@ main { width: 100%; } +table td { + overflow: hidden; + text-overflow: ellipsis; +} + +table td:first-child { + max-width: 200px !important; +} + @media (min-width: 768px) { .topbutton { width: auto;