diff options
author | Kevin Decherf <kevin@kdecherf.com> | 2020-01-25 15:40:29 +0100 |
---|---|---|
committer | Kevin Decherf <kevin@kdecherf.com> | 2020-01-25 15:40:29 +0100 |
commit | 45582f29927ca3d2271a64f1a8621a2fa1e7001c (patch) | |
tree | 0c342d2d7763265212fcf89850041390f2a3d2f9 /app/Resources | |
parent | 52cd86f1c2031e33ff9680e76575210619744394 (diff) | |
download | wallabag-45582f29927ca3d2271a64f1a8621a2fa1e7001c.tar.gz wallabag-45582f29927ca3d2271a64f1a8621a2fa1e7001c.tar.zst wallabag-45582f29927ca3d2271a64f1a8621a2fa1e7001c.zip |
material: replace display: flex with block in print mode
This change is a workaround for a reported issue with printing flex
items on Firefox
See: https://bugzilla.mozilla.org/show_bug.cgi?id=939897
Fixes #4251
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
Diffstat (limited to 'app/Resources')
-rw-r--r-- | app/Resources/static/themes/material/css/media_queries.scss | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/Resources/static/themes/material/css/media_queries.scss b/app/Resources/static/themes/material/css/media_queries.scss index 6f9d2a95..4242ead2 100644 --- a/app/Resources/static/themes/material/css/media_queries.scss +++ b/app/Resources/static/themes/material/css/media_queries.scss | |||
@@ -187,3 +187,9 @@ | |||
187 | display: none; | 187 | display: none; |
188 | } | 188 | } |
189 | } | 189 | } |
190 | |||
191 | @media only print { | ||
192 | body { | ||
193 | display: block; | ||
194 | } | ||
195 | } | ||