You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.slimScrollBar is on top of the content which can interfere with the user's ability to read and digest the content. The scrollbar should at least have an option to appear outside (right next to) the scrollable content, preferably configurable to the pixel similar to the height option that slimScroll() accepts.
Overwriting the right css property of .slimScrollBar with for example -10px !important does in fact move the scrollbar to the right of the content, but because .slimScrollBar is position: absolute; and its parent div is overflow: hidden, the scrollbar will simply not be visible, thus defeating the purpose of beautiful scrollbars. The only (hacky) "fix" I've found is to apply margin-right to the div element, but this disrupts the layout's width (hence: hacky).
Thanks for your time!
The text was updated successfully, but these errors were encountered:
.slimScrollBar
is on top of the content which can interfere with the user's ability to read and digest the content. The scrollbar should at least have an option to appear outside (right next to) the scrollable content, preferably configurable to the pixel similar to theheight
option thatslimScroll()
accepts.Overwriting the
right
css property of.slimScrollBar
with for example-10px !important
does in fact move the scrollbar to the right of the content, but because.slimScrollBar
isposition: absolute;
and its parentdiv
isoverflow: hidden
, the scrollbar will simply not be visible, thus defeating the purpose of beautiful scrollbars. The only (hacky) "fix" I've found is to applymargin-right
to thediv
element, but this disrupts the layout's width (hence: hacky).Thanks for your time!
The text was updated successfully, but these errors were encountered: