Created
April 21, 2012 02:25
-
-
Save rtfeldman/2433334 to your computer and use it in GitHub Desktop.
Replaces netflix.com's painful scrolling behavior with normal scroll bars using the Stylebot Chrome extension: http://bit.ly/fNacLp
This file contains 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
/* | |
* Paste this CSS into the Stylebot Chrome Extension ( http://bit.ly/fNacLp ) | |
* to get normal horizontal scroll bars on netflix.com instead of its current | |
* eye-searing nausea-inducing hover-to-scroll monstrosity. | |
* | |
* Sweet relief! | |
* | |
* Released to the public domain by Richard Feldman - @rtfeldman on Twitter | |
*/ | |
.agMovieSet.agMovieSetSlider { | |
white-space: nowrap; | |
overflow-x: auto; | |
height: 300px; | |
width: 100%; | |
} | |
.agMovie.agMovie-lulg { | |
float: none; | |
} | |
.sliderButton { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment