From d64d2bafd5c8baba22c38a3bbf136e39e727cbf8 Mon Sep 17 00:00:00 2001 From: RD WebDesign Date: Wed, 15 Nov 2023 15:05:46 -0300 Subject: [PATCH] Add word break for clients column, to avoid horizintal scrollbar Signed-off-by: RD WebDesign --- style/pi-hole.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/style/pi-hole.css b/style/pi-hole.css index 6cbcca6d..3a63dacc 100644 --- a/style/pi-hole.css +++ b/style/pi-hole.css @@ -92,6 +92,11 @@ td.lookatme { white-space: pre-wrap; } +/* Client column */ +#all-queries td:nth-of-type(4) { + word-break: break-all; +} + /* Allow Info String to wrap (useful while filtering entries on small screen) */ #all-queries_info { white-space: unset;