Advertisement
Guest User

EVE Online forums fullscreen mode script

a guest
Jun 20th, 2017
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name        EVE Online fullscreen forum view mode
  3. // @namespace   tom-forager-script-fullscreen-eve-forums
  4. // @description Change the EVE Online forums to a fullscreen view mode.
  5. // @include     https://meta.eveonline.com/*
  6. // @version     1
  7. // @grant       none
  8. // ==/UserScript==
  9.  
  10. $('head').append(
  11. '\
  12. <style>\
  13. .wrap { max-width: 100% !important}\
  14. .timeline-docked { right: 10px !important; }\
  15. .timeline-container { right: 10px !important; }\
  16. .topic-body { width: 85% !important }\
  17. #reply-control .wmd-controls { width: 85% !important; }\
  18. #reply-control .reply-area { max-width: unset !important; }\
  19. .user-right { width: 90% !important }\
  20. .user-content { max-width: unset !important; }\
  21. .save-button { margin-top: 40px !important; width: 93% !important; }\
  22. .save-button.controls { width: 100% !important; }\
  23. .save-button * { font-size: 17px !important; height: 40px !important; width: 100% !important; }\
  24. .save-user { width: 30% !important; }\
  25. .menu-panel { margin-right: 30px !important; }\
  26. </style>\
  27. '
  28. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement