Opened 7 years ago

Closed 3 years ago

#1455626 closed Bugs (fixed)

No horizonal scroll bar

Reported by: jasonbade Owned by: till
Priority: 8 Milestone: 0.5-beta
Component: User Interface Version: 0.4.2
Severity: normal Keywords:
Cc:

Description

I noticed that there are no horizonal scroll bar when
reading an email that the text width is greater than
the screen width.

Change History (7)

comment:1 Changed 6 years ago by r@…

  • Severity set to critical

I'm running roundcubemail-nightly-20070318. I've found that if I display a message that has content wider than the display or preview pane, e.g. a very wide image or quoted text that doesn't wrap to the next line, no horizontal scrollbar displays in Firefox (2.0.0.3) while it does in IE6 & IE7.

I'm wondering whether "overflow: hidden;" is strictly necessary on line 699 in skins/default/mail.css:

695:div.message-part
696:{
697: padding: 8px;
698: padding-top: 10px;
699: overflow: hidden;
700:}

...removing that one line allows the horizontal scrollbar to display (as necessary) in Firefox and I don't see any undesirable side effects in IE.

comment:2 Changed 6 years ago by r@…

Sorry, that snippet of code should look like:

skins/default/mail.css:

695:div.message-part
696:{
697:  padding: 8px;
698:  padding-top: 10px;
699:  overflow: hidden;
700:}

comment:3 Changed 5 years ago by till

  • Component changed from None to Interface improvements
  • Milestone set to 0.1-stable
  • Owner changed from nobody to till
  • Status changed from assigned to new

comment:4 Changed 5 years ago by till

  • Priority changed from 5 to 8
  • Severity changed from critical to normal

Emailed creator of the ticket, because I cannot reproduce this.

Need feedback soon, otherwise I am closing it.

comment:5 Changed 5 years ago by till

  • Resolution changed from None to worksforme
  • Status changed from new to closed

Email feedback from ray leads to closing this. Thanks!

comment:6 Changed 3 years ago by dfissue

  • Milestone changed from 0.1-stable to later
  • Resolution worksforme deleted
  • Status changed from closed to reopened
  • Version changed from None to 0.4.2

Sorry to re-open an old bug, but I can only found this (most relevant) result.

When using roundcube to read an email with a wide image attachment, there is no horizontal scrollbar in the message window, and therefore the right side of the image is always hidden. User must click on the attachment link on the top to view the full image.

In "common.css" line 264:

.boxlistcontent
{
  position: absolute;
  top: 20px;
  bottom: 22px;
  left: 0;
  right: 0;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

Tested with IE8, Chrome 7, Firefox 3.6.12, Safari 5.0.2, all of them are Windows version.

Change the css to "overflow-x: auto" fixed the problem in all of the above browsers.

comment:7 Changed 3 years ago by alec

  • Milestone changed from later to 0.5-beta
  • Resolution set to fixed
  • Status changed from reopened to closed

Fixed in [d4711f98].

Note: See TracTickets for help on using tickets.