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

This commit is contained in:
kevinhowbrook 2019-06-17 22:41:40 +01:00 committed by Matt Westcott
parent a19571db7a
commit 48c82516db
3 changed files with 3 additions and 2 deletions

View file

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

View file

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

View file

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