Advertisement
Guest User

Untitled

a guest
Apr 9th, 2021
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name     Unnamed Script 465501
  3. // @include  https://www.rouming.cz/*
  4. // @version  1
  5. // @grant    GM_addStyle
  6. // ==/UserScript==
  7.  
  8. function addGlobalStyle(css) {
  9.     var head, style;
  10.     head = document.getElementsByTagName('head')[0];
  11.     if (!head) { return; }
  12.     style = document.createElement('style');
  13.     style.type = 'text/css';
  14.     style.innerHTML = css;
  15.     head.appendChild(style);
  16. }
  17.  
  18. addGlobalStyle('.roumingForumMessage a { color: red !important }');
  19. addGlobalStyle('.roumingForumMessage a img { border: 10px solid !important; border-color:white;}');
  20. addGlobalStyle('.roumingForumMessage a:visited img { border: 10px solid black !important; background: black  !important; }');
  21.  
  22. addGlobalStyle('.lazyloaded { transition: none !important; }');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement