Advertisement
therube

userChrome3.css

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