userChrome.js 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. // ==UserScript==
  2. // @name FloatingScrollbar.uc.js
  3. // @namespace nightson1988@gmail.com
  4. // @include main
  5. // @version 0.0.3
  6. // @note Thanks to Griever(https://github.com/Griever/userChromeJS/blob/master/SmartScrollbar.uc.js) and Paul Rouget(https://gist.github.com/4003205)
  7. // @note...........0.0.3 Fixed a problem of breaking hbox layout
  8. // @note 0.0.2 Remove usage of E4X (https://bugzilla.mozilla.org/show_bug.cgi?id=788293)
  9. // ==/UserScript==
  10. (function () {
  11. var prefs = Services.prefs,
  12. enabled;
  13. if (prefs.prefHasUserValue('userChromeJS.floating_scrollbar.enabled')) {
  14. enabled = prefs.getBoolPref('userChromeJS.floating_scrollbar.enabled')
  15. } else {
  16. prefs.setBoolPref('userChromeJS.floating_scrollbar.enabled', true);
  17. enabled = true;
  18. }
  19. var css = '\
  20. @namespace url(http: //www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);\
  21. :not(select):not(hbox) > scrollbar {\
  22. -moz-appearance: none!important;\
  23. position: relative;\
  24. background-color: transparent;\
  25. background-image: none;\
  26. z-index: 2147483647;\
  27. padding: 2px;\
  28. }\
  29. :not(select):not(hbox) > scrollbar[orient = "vertical"] {\
  30. -moz-margin-start: -10px;\
  31. min-width: 10px;\
  32. }\
  33. :not(select):not(hbox) > scrollbar[orient = "vertical"] thumb {\
  34. min-height: 20px;\
  35. }\
  36. :not(select):not(hbox) > scrollbar[orient = "horizontal"] {\
  37. margin-top: -10px;\
  38. min-height: 10px;\
  39. }\
  40. :not(select):not(hbox) > scrollbar[orient = "horizontal"] thumb {\
  41. min-width: 20px;\
  42. }\
  43. :not(select):not(hbox) > scrollbar thumb {\
  44. -moz-appearance: none!important;\
  45. border-width: 0px!important;\
  46. border-radius: 3px!important;\
  47. background-color: rgba(0, 0, 0, 0.0) !important;\
  48. transition: background-color 300ms !important;\
  49. }\
  50. :not(select):not(hbox) > scrollbar thumb:active,\
  51. :not(select):not(hbox) > scrollbar:hover thumb {\
  52. background-color: #9B9B9B!important;\
  53. }\
  54. :not(select):not(hbox) > scrollbar scrollbarbutton, :not(select):not(hbox) > scrollbar gripper {\
  55. display: none;\
  56. }';
  57. var sss = Cc['@mozilla.org/content/style-sheet-service;1'].getService(Ci.nsIStyleSheetService);
  58. var uri = makeURI('data:text/css;charset=UTF=8,' + encodeURIComponent(css));
  59. var p = document.getElementById('devToolsSeparator');
  60. var m = document.createElement('menuitem');
  61. m.setAttribute('label', "Schwebende Scrollbar");
  62. m.setAttribute('type', 'checkbox');
  63. m.setAttribute('autocheck', 'false');
  64. m.setAttribute('checked', enabled);
  65. p.parentNode.insertBefore(m, p);
  66. m.addEventListener('command', command, false);
  67. if (enabled) {
  68. sss.loadAndRegisterSheet(uri, sss.AGENT_SHEET);
  69. }
  70. function command() {
  71. if (sss.sheetRegistered(uri, sss.AGENT_SHEET)) {
  72. prefs.setBoolPref('userChromeJS.floating_scrollbar.enabled', false);
  73. sss.unregisterSheet(uri, sss.AGENT_SHEET);
  74. m.setAttribute('checked', false);
  75. } else {
  76. prefs.setBoolPref('userChromeJS.floating_scrollbar.enabled', true);
  77. sss.loadAndRegisterSheet(uri, sss.AGENT_SHEET);
  78. m.setAttribute('checked', true);
  79. }
  80. let root = document.documentElement;
  81. let display = root.style.display;
  82. root.style.display = 'none';
  83. window.getComputedStyle(root).display; // Flush
  84. root.style.display = display;
  85. }
  86. })();