diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-11-07 09:23:29 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-11-07 09:23:29 +0100 |
| commit | 2271d4f0e32090a6cbf3552596a7ef167a60ff21 (patch) | |
| tree | 292b223d01defdc54f3367d92e8a773c40f5a8ee /app | |
| parent | 92716febd87c105fc74bb26f8d45383b8b81d609 (diff) | |
| download | operum-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')
| -rw-r--r-- | app/assets/stylesheets/search.css | 5 |
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; +} |
