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
Main problem so far has been the chunky scrollbars on windows that are always visible.
Edge actually has -ms-overflow-style: -ms-autohiding-scrollbar; to make them only visible on hover, for Chrome and FF we should be able to make it work with something like:
We should also detect whether this hack is needed so we don't do it on OSX for example.
Reasons for doing this:
with gemini scrollbars we can't size scrollable areas relative to their content (like we want to do for room lists) and need to hack our way around this situation. Would be nicer to let css do the right thing.
Lag because of how gemini scrollbars work
Less complexity/code/smaller DOM \o/
The text was updated successfully, but these errors were encountered:
bwindels
changed the title
Redesign: research hiding native scrollbars
Redesign: research only showing native scrollbars on hover
Oct 25, 2018
Main problem so far has been the chunky scrollbars on windows that are always visible.
Edge actually has
-ms-overflow-style: -ms-autohiding-scrollbar;
to make them only visible on hover, for Chrome and FF we should be able to make it work with something like:We should also detect whether this hack is needed so we don't do it on OSX for example.
Reasons for doing this:
The text was updated successfully, but these errors were encountered: