From c84157eaf187e19f44aec92da80a2ea87c2429e4 Mon Sep 17 00:00:00 2001 From: RD WebDesign Date: Wed, 15 Nov 2023 15:11:17 -0300 Subject: [PATCH] Add word break for clients column to avoid horizontal 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 295ed48b..197da27f 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(5) { + word-break: break-all; +} + /* Allow Info String to wrap (useful while filtering entries on small screen) */ #all-queries_info { white-space: unset;