Advertisement
Galinoa

Browser - Minimal floating scrollbars for firefox windows

Apr 28th, 2017
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.43 KB | None | 0 0
  1. /* AGENT_SHEET */
  2. scrollbarbutton[sbattr="scrollbar-up-top"],
  3. scrollbarbutton[sbattr="scrollbar-down-top"],
  4. scrollbarbutton[sbattr="scrollbar-up-bottom"],
  5. scrollbarbutton[sbattr="scrollbar-down-bottom"] {
  6. -moz-appearance: none !important;
  7. display: none !important;
  8. }
  9.  
  10. scrollbar[orient="vertical"] {
  11. -moz-margin-start: -15px;
  12. min-width: 15px!important;
  13. max-width: 15px!important;
  14. -moz-appearance: none!important;
  15. position: relative;
  16. background-color: transparent!important;
  17. background-image: none!important;
  18. border: 0;
  19. z-index: 2147483647;
  20. -moz-box-align: start;
  21. padding:1px 1px 1px 6px!important;
  22. }
  23.  
  24. scrollbar[orient="horizontal"] {
  25. margin-top: -15px;
  26. min-height: 15px;
  27. max-height: 15px;
  28. -moz-appearance: none!important;
  29. position: relative;
  30. background-color: transparent;
  31. background-image: none;
  32. border: 0;
  33. z-index: 2147483647;
  34. -moz-box-align: start;
  35. padding:6px 11px 1px 1px!important;
  36. }
  37.  
  38. scrollbar thumb {
  39. -moz-appearance: none !important;
  40. background-color: rgba(80,80,80,0.4);
  41. border-radius: 8px;
  42. border: 0;
  43. }
  44.  
  45. scrollbar[orient="vertical"] thumb {
  46. min-height: 20px!important;
  47. min-width: 15px!important;
  48. max-width: 15px!important;
  49. }
  50.  
  51. scrollbar[orient="horizontal"] thumb {
  52. min-width: 20px!important;
  53. min-height: 15px!important;
  54. max-height: 15px!important;
  55.  
  56. }
  57.  
  58. scrollbar thumb:hover, scrollbar thumb:active {
  59. background-color: rgba(12,153,213,1);
  60. }
  61.  
  62. html div scrollbar {
  63. -moz-margin-start: 0!important;
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement