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

pull/5544/head
kevinhowbrook 2019-07-11 12:40:27 +01:00 zatwierdzone przez Matt Westcott
rodzic 48c82516db
commit 7db44c71b3
3 zmienionych plików z 4 dodań i 0 usunięć
client/scss/components
docs/releases

Wyświetl plik

@ -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)

Wyświetl plik

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

Wyświetl plik

@ -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