From 2271d4f0e32090a6cbf3552596a7ef167a60ff21 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Thu, 7 Nov 2024 09:23:29 +0100 Subject: Don't break-all for summaries MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Instead of break-all, it should be break-word for the kind of summary that it's being displayed on the saved searches. Signed-off-by: Miquel Sabaté Solà --- app/assets/stylesheets/search.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/assets/stylesheets/search.css b/app/assets/stylesheets/search.css index eb72638..636b6eb 100644 --- a/app/assets/stylesheets/search.css +++ b/app/assets/stylesheets/search.css @@ -73,3 +73,8 @@ gap: 20px; flex-wrap: wrap; } + +#public-search-table summary { + /* Override the default break-all value */ + word-break: break-word; +} -- cgit v1.2.3