mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-26 19:11:07 +00:00
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>
This commit is contained in:
parent
52cd86f1c2
commit
45582f2992
2 changed files with 7 additions and 1 deletions
|
@ -187,3 +187,9 @@
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media only print {
|
||||||
|
body {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue