Opened 4 years ago

Closed 3 years ago

#1486291 closed Feature Patches (fixed)

Issues when printing messages from Roundcube

Reported by: duelli Owned by:
Priority: 5 Milestone: 0.4-beta
Component: User Interface Version: 0.3.1
Severity: normal Keywords: print
Cc:

Description

We found that there are problems with Roundcube's skin for printing with Firefox 3.5, IE8 and Opera 10.

  • For all of these browsers, it limits the printing area to the first page
  • For Opera, the scroll bar is also printed!!!

You can find this problem described often on the web, e.g. http://www.webdeveloper.com/forum/showthread.php?t=136761

Here is a suitable solution which keeps overflow on screen but deactivates it on print medium: Simply add this to print.css:

@media print {
  #printmessageframe
  {
    overflow: visible;
  }
}

Works with: Firefox, Opera, and IE

Change History (4)

comment:1 Changed 4 years ago by duelli

  • Type changed from Bugs to Patches

comment:2 Changed 3 years ago by alec

I'm unable to reproduce using current svn-trunk.

comment:3 Changed 3 years ago by duelli

Well, that is true, since you removed printmessageframe css definition for bug #1486256.

So just close this bug. I still had this in our own skin.

comment:4 Changed 3 years ago by alec

  • Resolution set to fixed
  • Status changed from new to closed
Note: See TracTickets for help on using tickets.