aboutsummaryrefslogtreecommitdiff
path: root/app/assets/stylesheets
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mikisabate@gmail.com>2024-11-07 09:23:29 +0100
committerMiquel Sabaté Solà <mikisabate@gmail.com>2024-11-07 09:23:29 +0100
commit2271d4f0e32090a6cbf3552596a7ef167a60ff21 (patch)
tree292b223d01defdc54f3367d92e8a773c40f5a8ee /app/assets/stylesheets
parent92716febd87c105fc74bb26f8d45383b8b81d609 (diff)
downloadoperum-2271d4f0e32090a6cbf3552596a7ef167a60ff21.tar.gz
operum-2271d4f0e32090a6cbf3552596a7ef167a60ff21.zip
Don't break-all for summaries
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à <mikisabate@gmail.com>
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r--app/assets/stylesheets/search.css5
1 files changed, 5 insertions, 0 deletions
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;
+}