kopia lustrzana https://github.com/wagtail/wagtail
Break listing titles by word so action buttons are visible on smaller screens (#5429)
rodzic
48c82516db
commit
7db44c71b3
|
@ -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)
|
||||
|
|
|
@ -188,6 +188,8 @@ ul.listing {
|
|||
}
|
||||
|
||||
.title {
|
||||
word-break: break-word;
|
||||
|
||||
.title-wrapper,
|
||||
h2 {
|
||||
text-transform: none;
|
||||
|
|
|
@ -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
|
||||
|
|
Ładowanie…
Reference in New Issue