Diokuz / baron

Native scroll with custom scrollbar
MIT License
776 stars 124 forks source link

Horizontal mode, wrong scroller height #123

Closed Diokuz closed 8 years ago

Diokuz commented 8 years ago

Clipper and scroller has non-equal heights, but in webkit they should have equal heights, because of zero-sized native scrollbar.

Diokuz commented 8 years ago

The problem was in css

::-webkit-scrollbar {
    width: 0;
}

As a result, in horizontal mode native scrollbar was invisible (width 0), but still had a height.

Good CSS:

::-webkit-scrollbar {
    width: 0;
    height: 0;
}