Break listing titles by word so action buttons are visible on smaller screens (#5429)

This commit is contained in:
kevinhowbrook 2019-07-11 12:40:27 +01:00 committed by Matt Westcott
parent 48c82516db
commit 7db44c71b3
3 changed files with 4 additions and 0 deletions

View file

@ -29,6 +29,7 @@ Changelog
* Fix: Layout for the clear checkbox in default FileField widget (Mikalai Radchuk)
* Fix: Remove ASCII conversion from Postgres search backend, to support stemming in non-Latin alphabets (Pavel Denisov)
* Fix: Prevent tab labels on page edit view from being cut off on very narrow screens (Kevin Howbrook)
* Fix: Very long words in page listings are now broken where necessary (Kevin Howbrook)
2.6.1 (05.08.2019)

View file

@ -188,6 +188,8 @@ ul.listing {
}
.title {
word-break: break-word;
.title-wrapper,
h2 {
text-transform: none;

View file

@ -54,6 +54,7 @@ Bug fixes
* Fixes layout for the clear checkbox in default FileField widget (Mikalai Radchuk)
* Remove ASCII conversion from Postgres search backend, to support stemming in non-Latin alphabets (Pavel Denisov)
* Prevent tab labels on page edit view from being cut off on very narrow screens (Kevin Howbrook)
* Very long words in page listings are now broken where necessary (Kevin Howbrook)
Upgrade considerations