Hide wagtail icon from printed page representation.

pull/3673/merge
Eugene Morozov 2017-06-22 07:09:26 +03:00 zatwierdzone przez Janneke Janssen
rodzic a9b7265784
commit f85f186cea
4 zmienionych plików z 11 dodań i 0 usunięć

Wyświetl plik

@ -11,6 +11,7 @@ Changelog
* Fix: Initial disabled state of InlinePanel add button is now set correctly on non-default tabs (Matthew Downey)
* Fix: Redirects with unicode characters now work (Rich Brennan)
* Fix: Prevent explorer view from crashing when page model definitions are missing, allowing the offending pages to be deleted (Matt Westcott)
* Fix: Hide the userbar from printed page representation (Eugene Morozov)
1.11.1 (07.07.2017)

Wyświetl plik

@ -245,6 +245,7 @@ Contributors
* Rob van der Linde
* Paul Kamp
* dwasyl
* Eugene Morozov
Translators
===========

Wyświetl plik

@ -31,6 +31,7 @@ Bug fixes
* Initial disabled state of InlinePanel add button is now set correctly on non-default tabs (Matthew Downey)
* Redirects with unicode characters now work (Rich Brennan)
* Prevent explorer view from crashing when page model definitions are missing, allowing the offending pages to be deleted (Matt Westcott)
* Hide the userbar from printed page representation (Eugene Morozov)
Upgrade considerations

Wyświetl plik

@ -99,6 +99,14 @@ $positions: (
height: auto;
}
@media print {
.#{$namespace}-userbar {
display: none;
}
}
.#{$namespace}-userbar-trigger {
display: flex;
align-items: center;