From 7d7b433f0bb807be04dee8789ff28cd90ac2aac5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1t=C3=A9=20Farkas?= Date: Thu, 31 Oct 2019 12:49:49 +0100 Subject: [PATCH] hide save password notification bar when printing the page (#1048) --- src/notification/bar.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/notification/bar.scss b/src/notification/bar.scss index fc649476ac..6b5088ded3 100644 --- a/src/notification/bar.scss +++ b/src/notification/bar.scss @@ -90,3 +90,9 @@ body[class*='lang-en'] .add-buttons { width: 320px; } } + +@media (print) { + body { + display: none; + } +}