From 886effa3b68a5a917c356351a048207900916100 Mon Sep 17 00:00:00 2001 From: Zlatin Balevsky Date: Sun, 22 Mar 2020 04:01:17 +0000 Subject: [PATCH] size columns --- webui/src/main/css/muwire.css | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/webui/src/main/css/muwire.css b/webui/src/main/css/muwire.css index 6531c9e8..c87f60d3 100644 --- a/webui/src/main/css/muwire.css +++ b/webui/src/main/css/muwire.css @@ -248,6 +248,34 @@ div#itemsTable table tbody td:nth-child(1) { text-overflow: ellipsis; } +div#hitsTable table thead th:nth-child(1) { + width: 270px; +} + +div#hitsTable table thead th:nth-child(2) { + width: 170px; +} + +div#hitsTable table tbody td:nth-child(1) { + text-overflow: ellipsis; +} + +div#hitsTable table tbody td:nth-child(3) { + text-overflow: ellipsis; +} + +div#certificatesTable table thead th:nth-child(2) { + width: 170px; +} + +div#certificatesTable table tbody td:nth-child(1) { + text-overflow: ellipsis; +} + +div#certificatesTable table tbody td:nth-child(3) { + text-overflow: ellipsis; +} + div#uploads table thead th:nth-child(2) { width: 120px; }