Advertisement
Guest User

firefox - userChrome.css

a guest
Jul 11th, 2011
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.39 KB | None | 0 0
  1.  /* set default namespace to XUL */
  2. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  3.  
  4. #appmenu-toolbar-button {
  5.   list-style-image: url("chrome://branding/content/icon16.png");
  6. }
  7.  
  8. #appmenu-toolbar-button > .toolbarbutton-text,
  9. #appmenu-toolbar-button > .toolbarbutton-menu-dropmarker {
  10.   display: none !important;
  11. }
  12.  
  13. .tabbrowser-tab
  14. {
  15.    height:             24px !important;
  16.    min-height:         24px !important;
  17.    max-height:         24px !important;
  18.    font-size:          12px !important;
  19.    -moz-border-radius:  0px !important;
  20.    border:             none !important;
  21.    text-shadow:        none !important;
  22.    padding:             3px !important;
  23.    margin-right:        3px !important;
  24. }
  25.  
  26. .tabbrowser-tab[selected="true"]:not([pinned="true"]) {
  27.    min-width:         36px !important;
  28.    max-width:         36px !important;
  29. }
  30.  
  31. .tabbrowser-tab[selected="true"] {
  32.    font-weight:                 bold;
  33.    background-color:  #fff !important;
  34.    color:             #000 !important;
  35. }
  36.  
  37. .tabbrowser-tab:not([selected="true"]) {
  38.    color:            #C8C8C8 !important;
  39.    background-color: #202020 !important;
  40.    font-weight:                 lighter;
  41.    min-width:            0px !important;
  42.    max-width:          140px !important;
  43. }
  44.  
  45. .tabbrowser-tab[pinned] {
  46.    background-color: #000 !important;
  47.    color:                       #fff;
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement