We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I click on "print a message", the CSS print view truncates lines in particular when I select zoom 200% in print settings.
I have a dirty hotfix with editing /usr/share/roundcube/skins/elastic/deps/bootstrap.min.css in section @media print{and replace:
/usr/share/roundcube/skins/elastic/deps/bootstrap.min.css
@media print{
@page{size:a3}body{min-width:992px !important}.container{min-width:992px !important}
with:
@page{size:a3}body{}.container{min-width:992px !important}
Note : my hotfix is inspired by issue #7732
Firefox
8.2
1.6.5
No response
The text was updated successfully, but these errors were encountered:
Thank you for the bug report!
I can acknowledge the problem, but I wouldn't like to patch a third-party library.
Do you maybe can think of another way to fix this?
Sorry, something went wrong.
I find a proper way to fix without patching bootstrap.css.
Just add to print.less :
@media print { body{ min-width: auto !important; } }
If you want see directly the result without rebuilding CSS, you can simply add to print.min.css :
@media print{body{min-width: auto !important}}
Ohh, great, thank you!
Would you create a pull request to propose this change?
(I can do that as well, but I don't want to take away your chance to contribute to Roundcubemail.)
Fix truncates lines in print view roundcube#9677
e919452
Successfully merging a pull request may close this issue.
Prerequisites
Describe the issue
When I click on "print a message", the CSS print view truncates lines in particular when I select zoom 200% in print settings.
I have a dirty hotfix with editing
/usr/share/roundcube/skins/elastic/deps/bootstrap.min.css
in section@media print{
and replace:with:
Note : my hotfix is inspired by issue #7732
What browser(s) are you seeing the problem on?
Firefox
What version of PHP are you using?
8.2
What version of Roundcube are you using?
1.6.5
JavaScript errors
No response
PHP errors
No response
The text was updated successfully, but these errors were encountered: