kopia lustrzana https://github.com/wagtail/wagtail
Hide wagtail icon from printed page representation.
rodzic
a9b7265784
commit
f85f186cea
|
@ -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)
|
||||
|
|
|
@ -245,6 +245,7 @@ Contributors
|
|||
* Rob van der Linde
|
||||
* Paul Kamp
|
||||
* dwasyl
|
||||
* Eugene Morozov
|
||||
|
||||
Translators
|
||||
===========
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -99,6 +99,14 @@ $positions: (
|
|||
height: auto;
|
||||
}
|
||||
|
||||
|
||||
@media print {
|
||||
.#{$namespace}-userbar {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.#{$namespace}-userbar-trigger {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
|
Ładowanie…
Reference in New Issue