Advertisement
firoze

scroll bar controlling color changing for IE & chrome

Feb 17th, 2015
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. // scroll bar controlling color changing for IE & chrome
  2.  
  3.  
  4. /*this is for chrom*/
  5. ::-webkit-scrollbar{width:9px;height:9px;}
  6. ::-webkit-scrollbar-button:start:decrement,
  7. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  8. ::-webkit-scrollbar-track-piece{background-color:blue;-webkit-border-radius:0;-webkit-border-bottom-right-radius:8px;-webkit-border-bottom-left-radius:8px;}
  9. ::-webkit-scrollbar-thumb:vertical{height:50px;background-color:red;-webkit-border-radius:8px;}
  10. ::-webkit-scrollbar-thumb:horizontal{width:50px;background-color:green;-webkit-border-radius:8px;}
  11.  
  12. /*this is for IE*/
  13. html {
  14. scrollbar-face-color:red;
  15. scrollbar-shadow-color: #2D2C4D;
  16. scrollbar-highlight-color:#7D7E94;
  17. scrollbar-3dlight-color: #7D7E94;
  18. scrollbar-darkshadow-color: #2D2C4D;
  19. scrollbar-track-color: #7D7E94;
  20. scrollbar-arrow-color: #C1C1D1;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement