therube

userChrome.css

Jun 15th, 2012
410
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.01 KB | None | 0 0
  1. /*
  2.  * Do not remove the @namespace line -- it's required for correct functioning
  3.  */
  4. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
  5.  
  6.  
  7.  
  8. /* Change Tab Colors */
  9.  
  10. /* Change color of active tab */
  11. /* NOTE, THIS LAYOUT CAN CAUSE THE APPEARANCE TO CHANGE! */
  12. /* ie if you join the lines together, the colored tab changes!? */
  13. /* ALSO, this '-moz-appearance: none !important;' line MUST B THERE! */
  14. tab{
  15.    -moz-appearance: none !important;
  16.    }
  17. tab[selected="true"] {
  18.    background-color: rgb(0,255,0) !important;
  19.    color: black !important;
  20.    }
  21.  
  22.  
  23.  
  24.  
  25. // ugh, this is some really ugly wrapping of tabs that xxx from mozillazine posted, ugh!
  26. /*
  27. tabs>tab
  28. {
  29.    margin-left: 2px !important;
  30.    margin-right: 2px !important;
  31.    width: 180px !important;
  32. }
  33.  
  34. tabs>stack>vbox>hbox>hbox
  35. {
  36.   display: block !important;
  37.   overflow: visible !important;
  38. }
  39.  
  40.  
  41. .tabs-newbutton {top: 0px !important}
  42. .tabs-closebutton-box {top: 0px !important}
  43. */
Add Comment
Please, Sign In to add comment