Firefox userContent.css for drupal.org issue queue

After seeing a reference to http://userstyles.org/styles/11133 by tha_sun in IRC I went ahead and played with it a bit. I ended up with a very simple version that that just removes the blocks and makes the issue table full width. While I was at it I customized Google.

If you do not know where to put this checkout, per-site custom CSS in Firefox.

  1. @namespace url('http://www.w3.org/1999/xhtml');
  2.  
  3. @-moz-document url-prefix('http://drupal.org/project/issues/') {
  4. #spacer {}
  5.  
  6. #contentwrapper {
  7. background: none !important;
  8. }
  9.  
  10. #main {
  11. margin-left: 5px;
  12. margin-right: 5px;
  13. }
  14.  
  15. #threecol, #content, #squeeze {
  16. width: 100% !important;
  17. margin: 0 !important;
  18. padding: 0 !important;
  19. }
  20.  
  21. .sidebar .block {
  22. display: none !important;
  23. }
  24. }
  25.  
  26. @-moz-document url('http://www.google.com/') {
  27. #spacer {}
  28.  
  29. #ghead, td[align='left'], td[width='25%'], #body > center > font, input[name='btnG'], input[name='btnI'], #footer {
  30. display: none;
  31. }
  32.  
  33. #main > center {
  34. margin-top: 250px;
  35. }
  36. }