From 2042bfccb716125e980fd837cf3c3d9eb4e2e0e7 Mon Sep 17 00:00:00 2001 From: Zlatin Balevsky Date: Sun, 22 Mar 2020 23:03:29 +0000 Subject: [PATCH] get rid of effect where ellipsis overflow doesn't work --- webui/src/main/css/i2pbote.css | 2 +- webui/src/main/css/muwire.css | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/webui/src/main/css/i2pbote.css b/webui/src/main/css/i2pbote.css index 5f4e8ae1..4ec45951 100644 --- a/webui/src/main/css/i2pbote.css +++ b/webui/src/main/css/i2pbote.css @@ -475,7 +475,7 @@ table td, th { padding-top: 3px; background: white; white-space: nowrap; - overflow-x: hidden; + overflow: hidden; font-size: 1em; font-weight: normal; } diff --git a/webui/src/main/css/muwire.css b/webui/src/main/css/muwire.css index c87f60d3..9f1088d9 100644 --- a/webui/src/main/css/muwire.css +++ b/webui/src/main/css/muwire.css @@ -32,6 +32,9 @@ div#activeSearches table td:nth-child(2) { text-align: right; } +div#topTableSender table thead th:nth-child(1) { + width: 35%; +} div#topTableSender table thead th:nth-child(2) { width: 100px; } @@ -42,7 +45,7 @@ div#topTableSender table thead th:nth-child(4) { width: 100px; } div#topTableSender table thead th:nth-child(5) { - width: 340px; + width: 35%; } div#topTableSender table tbody td:nth-child(1) { text-overflow: ellipsis; @@ -551,4 +554,4 @@ textarea.copypaste { position: absolute; z-index: -9999; pointer-events: none; -} \ No newline at end of file +}