Created
October 30, 2013 21:33
-
-
Save Dayjo/7240690 to your computer and use it in GitHub Desktop.
Make Netflix have proper horizontal scrolling for touch mice (no slow marquee or arrows). Infinite scrolling not yet implemented, maybe with a Tampermonkey script.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Netflix proper horizontal scrolling. | |
* Add this to your css browser extension like Stylish (for Chrome) | |
*/ | |
.slider { | |
overflow-x: auto; | |
} | |
.slider .previous, .slider .next { | |
display: none !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment