Advertisement
shygirl1999

Eve Forums Color Edit

Jul 10th, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Eve Forums Color Edit
  3. // @namespace    erika-mizune-eve-forum-color-edit
  4. // @version      1.0
  5. // @description  Color edit for the Eve Online forums for better readability.
  6. // @author       Erika Mizune
  7. // @match        https://forums.eveonline.com/*
  8. // @grant        none
  9. // ==/UserScript==
  10.  
  11. /*jshint multistr: true */
  12.  
  13. $('head').append(
  14.     '\
  15. <style>\
  16. .topic-list>tbody>tr:nth-child(odd) {background-color:#191818 !important;}\
  17. tr.has-description:nth-child(odd), tr.no-description:nth-child(odd){ background-color: #191818 !important; }\
  18. .paginated-topics-list .topic-list>tbody>tr:nth-child(odd) { background-color:#191818 !important; }\
  19. .topic-list>tbody>tr:nth-child(even) {background-color:#0c0c0c !important;}\
  20. tr.has-description:nth-child(even) tr.no-description:nth-child(even) { background-color: #0c0c0c !important; }\
  21. .paginated-topics-list .topic-list>tbody>tr:nth-child(even) { background-color:#0c0c0c !important; }\
  22. .user-main .user-stream .item:nth-child(even) {background-color:#0c0c0c !important;}\
  23. .extra-info-wrapper .discourse-tag.box:hover, .discourse-tag.box:hover {background-color: #f8f8ff !important;color: #14aeea !important;}\
  24. #main-outlet {background: #0c0c0c !important;}\
  25. </style>\
  26. '
  27. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement