Advertisement
Guest User

vim-like zebnburn firefox tab bar

a guest
Apr 22nd, 2012
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.38 KB | None | 0 0
  1. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
  2.  
  3. #main-window:not([disablechrome]) #navigator-toolbox[tabsontop="true"] {
  4.                  border: 0px !important;
  5. }
  6.  
  7.     .tabbrowser-arrowscrollbox > .scrollbutton-up,
  8.     .tabbrowser-arrowscrollbox > .scrollbutton-down,
  9.     toolbarbutton#appmenu-toolbar-button,
  10.     toolbarbutton#alltabs-button,
  11.     toolbarbutton#new-tab-button,
  12.     .tabs-closebutton-box,
  13.     .tab-close-button {
  14.         display: none !important;
  15.     }
  16.  
  17.     tabs#tabbrowser-tabs, tabs#tabbrowser-tabs * {
  18.         -moz-appearance: none !important;
  19.         -moz-border-radius: 0px !important;
  20.         border: 0px !important;
  21.         margin: 0 !important;
  22.         padding: 0 !important;
  23.         background-image: none !important;
  24.         font-family: monospace !important;
  25.     }
  26.  
  27.     tabs#tabbrowser-tabs {
  28.         background: #3f3f3f !important;
  29.     }
  30.  
  31.         .tabs-newtab-button {
  32.             display: none;
  33.         }
  34.  
  35. #main-window #content .tabbrowser-tabs {
  36.   -moz-appearance: none !important;
  37.   margin-top: -3px!important;
  38.   margin-bottom: -3px!important;
  39.   border-top: 0px solid !important;
  40.   padding:0 !important;
  41. }
  42.  
  43. .tabs-bottom {
  44.   border-top: 0px solid !important;
  45.   border-bottom: 0px solid !important;
  46.   margin-bottom: 3px!important;
  47.   min-height: 21px !important;
  48.   background: #3f3f3f !important;
  49. }
  50.  
  51. .tabbrowser-tab {
  52.   -moz-appearance: none !important;
  53.   -moz-border-radius: 0px !important;
  54.   min-height: 18px !important;
  55.   margin:0 -1px !important;
  56.   padding:0 !important;
  57.   padding-top:3px !important;
  58.   border-right: 0 !important;
  59.   color: #dcdccc !important;
  60.   background: #3f3f3f !important;
  61. }
  62.  
  63. .tabbrowser-tab[selected="true"] {
  64.   background: #242421 !important;
  65.   color: #d7d7af !important;
  66. }
  67.  
  68. .tabbrowser-tab .tab-text {
  69.   border:0px !important;
  70. }
  71.  
  72. .tabbrowser-arrowscrollbox {
  73.   max-height: 21px !important;
  74.   background: #4e4e4e !important;
  75. }
  76.  
  77. .tabs-closebutton-box, .tab-close-button, .tabs-newtab-button, .tabs-alltabs-button, .tabbrowser-arrowscrollbox > .scrollbutton-up, .tabbrowser-arrowscrollbox > .scrollbutton-down {
  78.   display: none !important;
  79. }
  80.  
  81. /* Tabs: no icons */
  82. .tabbrowser-tabs .tab-icon-image { display: none !important; }
  83.  
  84. /* Bookmarks Toolbar: no icons */
  85. #personal-bookmarks .toolbarbutton-icon { display: none !important; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement