Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2012
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.69 KB | None | 0 0
  1. #defaultFontSize
  2. {
  3.     width:45px !important;
  4. }
  5.  
  6. scrollbar
  7. {
  8.     -moz-appearance: none !important;
  9.     -moz-transition: opacity .2s !important;
  10.     background: none !important;
  11.     opacity: 1 !important;
  12. }
  13.     scrollbar[orient="vertical"]
  14.     {
  15.         border-radius: 4px;
  16.         width: 8px !important;
  17.         border-width: 0 0 4px 0 !important;
  18.     }
  19.    
  20.     scrollbar[orient="horizontal"]
  21.     {
  22.         border-radius: 4px;
  23.         height: 8px !important;
  24.         border-width: 0 0 0 4px !important;
  25.     }
  26.  
  27. scrollbarbutton[sbattr="scrollbar-up-top"],
  28. scrollbarbutton[sbattr="scrollbar-down-top"],
  29. scrollbarbutton[sbattr="scrollbar-up-bottom"],
  30. scrollbarbutton[sbattr="scrollbar-down-bottom"]
  31. {
  32.     -moz-appearance: none !important;
  33.     display: none !important;
  34. }
  35.  
  36. scrollbar thumb
  37. {
  38.     border-radius:4px;
  39.     -moz-appearance: none !important;
  40.     -moz-transition: background-color .2s !important;
  41.     background-color: rgba(0,0,0,.2) !important;
  42.     border: none !important;
  43. }
  44.     scrollbar thumb[orient="horizontal"]
  45.     {
  46.         min-width: 28px !important;
  47.         box-shadow: inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07) !important;
  48.     }
  49.  
  50.     scrollbar thumb[orient="vertical"]
  51.     {
  52.         min-height: 28px !important;
  53.         box-shadow: inset 1px 1px 0 rgba(0,0,0,.1),inset -1px 0 0 rgba(0,0,0,.07) !important;
  54.     }
  55.    
  56.     scrollbar thumb:hover
  57.     {
  58.         background-color: rgba(0,0,0,.4) !important;
  59.         box-shadow: inset 1px 1px 1px rgba(0,0,0,.25) !important;
  60.     }
  61.  
  62.     scrollbar thumb:active
  63.     {
  64.         background-color: rgba(0,0,0,0.5) !important;
  65.         box-shadow: inset 1px 1px 3px rgba(0,0,0,0.35) !important;
  66.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement