TF2R Chat Width

I was bored. Changes the chat width to a value set by you.

  1. // ==UserScript==
  2. // @name TF2R Chat Width
  3. // @namespace no
  4. // @description I was bored. Changes the chat width to a value set by you.
  5. // @include http://tf2r.com/chat.html
  6. // @version 1
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. $(document).ready(function(){
  11. resChat = 1150;
  12. $("#wrapper").css('width', resChat);
  13. $("#nav_holder").css('width', resChat);
  14. $("#content").css('width', resChat - 10);
  15. $("#feedtext").css('width', resChat - 130);
  16. // This one is not really necessary, but the chatbox cuts a bit of my text
  17. $("#feedtext").css('height', 16);
  18. $(".indent table").css('width', resChat - 35);
  19. })
  20.  
  21.