From 21d80172cafaf9dd9af0f3ac889c2cc3810e8676 Mon Sep 17 00:00:00 2001 From: Evert Prants Date: Sat, 19 Jan 2019 18:59:41 +0200 Subject: [PATCH] ellipsise long fields --- public/index.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/index.css b/public/index.css index a442129..18b4bde 100644 --- a/public/index.css +++ b/public/index.css @@ -69,6 +69,12 @@ th.small { } td { cursor: pointer; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} +td:hover { + white-space: initial; } td,th { padding: 5px;