Defect #5861
Vertical scrollbar always visible in Wiki "code" blocks in Chrome.
| Status: | Closed | Start date: | 2010-07-09 | |
|---|---|---|---|---|
| Priority: | Low | Due date: | ||
| Assignee: | - | % Done: | 0% |
|
| Category: | UI | |||
| Target version: | 1.0.1 | |||
| Affected version: | 0.9.4 | Resolution: | Fixed |
Description
In Google Chrome (works fine in IE), there are always vertical scrollbars visible on each pre/code box. They should not be visible.
View this bug in Chrome to see the problem:
1void Foo( int i )
2{
3 // ....
4 // ....
5 // ....
6}
Associated revisions
Fixed: Vertical scrollbar always visible in Wiki "code" blocks in Chrome (#5861).
History
Updated by Felix Schäfer over 1 year ago
- Category changed from Wiki to UI
What versions of chrome and redmine, which theme?
Updated by Douglas Cox over 1 year ago
Felix Schäfer wrote:
What versions of chrome and redmine, which theme?
Sorry, I am using Chrome 5.0.375.70 (the latest build I believe). And it was doing this from the Trunk build and the build on this website.
Updated by Felix Schäfer over 1 year ago
Well, on Safari Mac it does it too, and the culprit is the overflow-x: auto in the div.wiki pre definition, but I'm no css expert by any stretch, and simply removing makes the text overflow out of the box.
Updated by Douglas Cox over 1 year ago
Ok, thanks for looking at it. I'll play around with it some this weekend, and see if I can come up with anything that can get rid of it correctly.
What's odd is that the more lines of text inside the block, the more scroll you have available. It's almost like the scroll size calculation isn't taking into account the spacing between lines or something. But since it's happening on two browsers I would think there is a way to make it work with the right css.
Updated by Felix Schäfer over 1 year ago
Douglas Cox wrote:
But since it's happening on two browsers I would think there is a way to make it work with the right css.
Well, it's 2 webkit based browsers, so not too different from a rendering engine point of view.
Updated by Douglas Cox over 1 year ago
I was able to get it to display properly in Firefox, IE8, and Chrome by adding:
overflow-y: hidden;
to the div.wiki.pre stylesheet entry.
Updated by Jean-Philippe Lang over 1 year ago
- Status changed from New to Closed
- Target version set to 1.0.1
- Resolution set to Fixed
Fix applied in r3891. Thanks.