Hide wagtail icon from printed page representation.

This commit is contained in:
Eugene Morozov 2017-06-22 07:09:26 +03:00 committed by Janneke Janssen
parent a9b7265784
commit f85f186cea
4 changed files with 11 additions and 0 deletions

View file

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

View file

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

View file

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

View file

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