Add wrapping for image titles in listing. Fix #4233 (#4243)

pull/4270/head
LB (Ben Johnston) 2018-02-10 09:56:30 +10:00 zatwierdzone przez Thibaud Colas
rodzic 29254270a6
commit 6825aab5f7
3 zmienionych plików z 8 dodań i 5 usunięć

Wyświetl plik

@ -5,6 +5,7 @@ Changelog
~~~~~~~~~~~~~~~~
* Fix: Status button on 'edit page' now links to the correct URL when live and draft slug differ (LB (Ben Johnston))
* Fix: Image title text in the gallery and in the chooser now wraps for long filenames (LB (Ben Johnston), Luiz Boaretto)
2.0 (xx.xx.xxxx) - IN DEVELOPMENT

Wyświetl plik

@ -19,7 +19,7 @@ Bug fixes
~~~~~~~~~
* Status button on 'edit page' now links to the correct URL when live and draft slug differ (LB (Ben Johnston))
* Image title text in the gallery and in the chooser now wraps for long filenames (LB (Ben Johnston), Luiz Boaretto)
Upgrade considerations
======================

Wyświetl plik

@ -408,6 +408,12 @@ ul.listing {
}
}
.image-choice {
color: inherit;
overflow-wrap: break-word;
word-wrap: break-word;
}
ul.listing {
border-top: 1px dashed $color-input-border;
margin-bottom: 2em;
@ -598,10 +604,6 @@ table.listing {
}
}
}
a {
color: inherit;
}
}
.actions {