Advertisement
Guest User

Untitled

a guest
May 27th, 2015
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. @mixin scrollbar($width, $color) {
  2. ::-webkit-scrollbar { width: $width; }
  3.  
  4. ::-webkit-scrollbar-track {
  5. background: $color;
  6. -webkit-border-radius: 0;
  7. border-radius: 0;
  8. }
  9.  
  10. ::-webkit-scrollbar-thumb {
  11. background: darken($color, 30%);
  12. -webkit-border-radius: 0;
  13. border-radius: 0;
  14. }
  15.  
  16. ::-webkit-scrollbar-thumb:window-inactive { background: darken($color, 30%); }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement