aboutsummaryrefslogtreecommitdiffhomepage
path: root/app
diff options
context:
space:
mode:
authorKevin Decherf <kevin@kdecherf.com>2020-01-25 15:40:29 +0100
committerKevin Decherf <kevin@kdecherf.com>2020-01-25 15:40:29 +0100
commit45582f29927ca3d2271a64f1a8621a2fa1e7001c (patch)
tree0c342d2d7763265212fcf89850041390f2a3d2f9 /app
parent52cd86f1c2031e33ff9680e76575210619744394 (diff)
downloadwallabag-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')
-rw-r--r--app/Resources/static/themes/material/css/media_queries.scss6
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}