Advertisement
Ears1223

Fix for scrollbar

Jul 16th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Scroll bar issue
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @include http://chat.rphaven.com/
  8. // @match http://chat.rphaven.com/
  9. // @grant GM_addStyle
  10. // ==/UserScript==
  11.  
  12. function addGlobalStyle(css){
  13. var head, style;
  14. head = document.getElementsByTagName ('head')[0]
  15. if (!head) {return; }
  16. style = document.createElement('style');
  17. style.type = 'text/css';
  18. style.innerHTML = css;
  19. head.appendChild(style);
  20. }
  21. addGlobalStyle (`#chat-top .msgs{ padding-right:50px !important;}`)
  22.  
  23.  
  24. ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement