Allow content to define the tab width on xs screens to stop cutting off text (#5392)

pull/5544/head
kevinhowbrook 2019-06-17 22:41:40 +01:00 zatwierdzone przez Matt Westcott
rodzic a19571db7a
commit 48c82516db
3 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -28,7 +28,7 @@ Changelog
* Fix: Output form media on add/edit image forms with custom models (Matt Westcott)
* 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)
* Update release schedule info and move to wiki, linked from docs and readme (Matt Westcott)
* Fix: Prevent tab labels on page edit view from being cut off on very narrow screens (Kevin Howbrook)
2.6.1 (05.08.2019)

Wyświetl plik

@ -148,6 +148,6 @@
}
.tab-nav li {
width: 25%;
width: auto;
}
}

Wyświetl plik

@ -53,6 +53,7 @@ Bug fixes
* Output form media on add/edit image forms with custom models (Matt Westcott)
* 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)
Upgrade considerations