Advertisement
yomomma56

Firefox CSS 11-16-16

Nov 16th, 2016
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.72 KB | None | 0 0
  1. /* AGENT_SHEET */
  2. @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
  3.  
  4.     scrollbar {
  5.         visibility:collapse !important;
  6. }
  7.  
  8. @-moz-document url('chrome://browser/content/browser.xul')
  9. {
  10.     #TabsToolbar .arrowscrollbox-scrollbox
  11.     {
  12.         padding: 0 !important;
  13.         background-color: #212121 !important;
  14.     }
  15.  
  16.     #TabsToolbar .tabbrowser-tab
  17.     {
  18.         padding: 4px 0 !important;
  19.         transition: all 0s !important;
  20.         background: #212121 !important;
  21.         color: #a1a1a1 !important;
  22.         background-clip: border-box !important;
  23.         -moz-border-top-colors: none !important;
  24.         -moz-border-left-colors: none !important;
  25.         -moz-border-right-colors: rgba(0, 0, 0, 0) !important;
  26.         -moz-border-bottom-colors: none !important;
  27.     }
  28.  
  29.     #TabsToolbar .tabs-newtab-button
  30.     {
  31.         transition: all 0s !important;
  32.         border-style: solid !important;
  33.         border-color: transparent !important;
  34.         background: #212121 !important;
  35.         background-clip: padding-box !important;
  36.         width: auto !important;
  37.         margin: 0 !important;
  38.         padding: 0 5px !important;
  39.     }
  40.    
  41.     #TabsToolbar .tabbrowser-tab[selected]
  42.     {
  43.         background: #333333 !important;
  44.         background-clip: padding-box !important;
  45.         color: #fff !important;
  46.     }
  47.  
  48.     #TabsToolbar .tabbrowser-tab:hover:not([selected])
  49.     {
  50.         background-color: #2b2b2b !important;
  51.         color: #fff !important;
  52.     }
  53.  
  54.  
  55.  
  56.     #TabsToolbar .tab-background-start, #TabsToolbar .tab-background-end
  57.     {
  58.         display: none !important;
  59.     }
  60.  
  61.  
  62.     #TabsToolbar .tabbrowser-tab:after, #TabsToolbar .tabbrowser-tab:before
  63.     {
  64.         display: none !important;
  65.     }
  66.    
  67.     #nav-bar-customization-target {
  68.         background: #333 !important;
  69.         margin-top: -2px !important;
  70.         margin-bottom: -2px !important;
  71. }
  72.    
  73.     #urlbar {
  74.    
  75.         background: #333 !important;
  76.         color: #fff !important;
  77.         text-align: center !important;
  78.         border: none !important;
  79. }
  80.    
  81. .tab-text {
  82.     text-align: center !important;
  83. }
  84.    
  85. #PanelUI-button {
  86.     background: url('http://puu.sh/oEDUp/b03ca9e50d.png') !important;    
  87.     background-color: #333 !important;
  88.     margin-left: -3px !important;
  89.     margin-top: -2px !important;
  90.     margin-bottom: -2px !important;
  91. }
  92. #PanelUI-button:hover {
  93.     background-color: #333 !important;
  94.     margin-top: -2px !important;
  95.     margin-bottom: -2px !important;
  96. }
  97.  
  98. #PanelUI-menu-button {
  99.     opacity: 0 !important;
  100.     width: 10px !important;
  101.     height: 18px !important;
  102.     margin-right: -5px !important;
  103.     margin-top: -2px !important;
  104. }
  105.    
  106. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement