Advertisement
therube

userChrome.css

Mar 6th, 2011
579
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.25 KB | None | 0 0
  1. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
  2.  
  3. @-moz-document url(chrome://navigator/content/navigator.xul)
  4.  
  5.  {
  6.   #editBMPanel_locationRow,
  7.   #editBMPanel_descriptionRow,
  8.   #editBMPanel_keywordRow
  9.   {
  10.    visibility: visible !important;
  11.   }
  12.  
  13.   #editBookmarkPanelContent {
  14.     min-width: 64em !important;
  15.   }
  16. }
  17. // most of the above is now default, just expand the width
  18.  
  19.  
  20. /* Change Tab Colors */
  21.  
  22. /* Change color of active tab */
  23. /* NOTE, THIS LAYOUT CAN CAUSE THE APPEARANCE TO CHANGE! */
  24. /* ie if you join the lines together, the colored tab changes!? */
  25. /* ALSO, this '-moz-appearance: none !important;' line MUST B THERE! */
  26. tab{
  27.    -moz-appearance: none !important;
  28.    }
  29. tab[selected="true"] {
  30.    background-color: rgb(0,255,0) !important;
  31.    color: black !important;
  32.    }
  33.  
  34.  
  35.  
  36.  
  37. // ugh, this is some really ugly wrapping of tabs that xxx from mozillazine posted, ugh!
  38. /*
  39. tabs>tab
  40. {
  41.    margin-left: 2px !important;
  42.    margin-right: 2px !important;
  43.    width: 180px !important;
  44. }
  45.  
  46. tabs>stack>vbox>hbox>hbox
  47. {
  48.   display: block !important;
  49.   overflow: visible !important;
  50. }
  51.  
  52.  
  53. .tabs-newbutton {top: 0px !important}
  54. .tabs-closebutton-box {top: 0px !important}
  55. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement