Guest User

Untitled

a guest
Mar 15th, 2017
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 7.01 KB | None | 0 0
  1. @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
  2.  
  3.  
  4. /*tab-width*/
  5. /*
  6. .tabbrowser-tabs:not([drag=detach]) > .tabbrowser-tab:not([pinned])[fadein] {
  7. min-width: 10px !important;
  8. max-width: 100% !important;
  9. }
  10. /*comment above to have normal tab width*/
  11.  
  12.  
  13. /*remove shitty fog*/
  14. #TabsToolbar:not(:-moz-lwtheme)::after {display: none;}
  15. /* Remove the following line if you want the text color of unselected tabs to be black (Firefox default) */
  16. #TabsToolbar .tabbrowser-tab:not([selected]) {color: rgba(255,255,255,0.9);}
  17.  
  18. /*remove internal border*/
  19. #main-window:not([chromehidden*="toolbar"])[sizemode="normal"]
  20. {
  21.  margin-top:-1px!important;
  22.  margin-left:-1px!important;
  23.  margin-right:-1px!important;
  24.  margin-bottom:-1px !important;
  25.  }
  26.  
  27.  
  28.  
  29. #TabsToolbar {
  30.     background: #456472 !important;
  31.     margin-bottom: 0 !important;
  32. }
  33.  
  34.  
  35. #TabsToolbar .tabbrowser-tabs {
  36.     min-height: 20px !important;
  37.     margin-top: 0px !important;
  38.     margin-bottom: 0px !important;
  39.     text-align: center !important;
  40.     margin-left: -15px !important;
  41.     margin-right: -15px !important;
  42. }
  43.  
  44. #tabbrowser-tabs tab .tab-close-button {
  45.     display: none !important;
  46. }
  47.  
  48. .tabbrowser-tab:not([pinned]) .tab-icon-image {
  49. display: none !important;
  50. }
  51.  
  52.  
  53. #TabsToolbar .tabbrowser-tab {
  54.     -moz-border-top-colors: none !important;
  55.     -moz-border-left-colors: none !important;
  56.     -moz-border-right-colors: none !important;
  57.     -moz-border-bottom-colors: none !important;
  58.     padding: 0px 0px !important;
  59.     border-radius: 0px !important;
  60.     background: #273941 !important;
  61.     background-clip: padding-box !important;
  62.     transition: all .1s !important;
  63.     margin-left: 0px !important;
  64.     color: #c0c5ce !important;
  65.     font-family: 'Noto Sans' !important;
  66.     font-size: 10px !important;
  67.     min-height: 14px !important;
  68. }
  69.  
  70. #TabsToolbar .tabs-newtab-button {
  71.     -moz-border-top-colors: none !important;
  72.     -moz-border-left-colors: none !important;
  73.     -moz-border-right-colors: none !important;
  74.     -moz-border-bottom-colors: none !important;
  75.     border-style: solid !important;
  76.     border-color: transparent !important;
  77.     border-width: 0px 0px 0 0px !important;
  78.     text-shadow: 0 0 4px rgba(255,255,255,0) !important;
  79.     background: #ffffff !important;
  80.     background-clip: padding-box !important;
  81.     transition: all .1s !important;
  82. }
  83.  
  84.  
  85.  
  86.  
  87. #TabsToolbar .tabbrowser-tab[selected] {
  88.     color: #c0c5ce !important;
  89.     background: #456472 !important;
  90.     background-clip: padding-box !important;
  91. }
  92.  
  93. #TabsToolbar .tabs-newtab-button:hover,
  94. #TabsToolbar .tabbrowser-tab:hover:not([selected]) {
  95.     background-color: rgba(80,101,140,.4) !important;
  96.     color: rgb(251,251,251) !important;
  97. }
  98.  
  99. #TabsToolbar .tab-background {
  100.     margin: 0 !important;
  101.     background: transparent !important;
  102. }
  103.  
  104. #TabsToolbar .tab-background-start,
  105. #TabsToolbar .tab-background-end {
  106.     display: none !important;
  107. }
  108.  
  109. #TabsToolbar .tab-background-middle {
  110.     margin: -4px -2px !important;
  111.     background: transparent !important;
  112. }
  113.  
  114. #TabsToolbar .tabbrowser-tab:after,
  115. #TabsToolbar .tabbrowser-tab:before {
  116.     display: none !important;
  117. }
  118.  
  119. #TabsToolbar .tabs-newtab-button {
  120.     border-width: 1px 1px 0 1px !important;
  121.     margin: 0 !important;
  122.     width: auto !important;
  123.     padding: 0 0px !important;
  124. }
  125.  
  126. #addon-bar,
  127. #PersonalToolbar,
  128. #nav-bar {
  129.     background: #EAF2FA !important;
  130.     box-shadow: none !important;
  131.     background-clip: padding-box !important;
  132.     border-color: rgba(0,0,0,.25) !important;
  133.     border-radius: 0 !important;
  134. }
  135.  
  136. .subviewbutton.panel-subview-footer {
  137.     padding-top: 0px !important;
  138.     padding-bottom: 6px !important;
  139. }
  140.  
  141.  
  142. /* URL BAR */
  143.  
  144. /* remove back/fwd */
  145.  
  146. #nav-bar  #back-button > .toolbarbutton-icon {
  147.  display: none !important;
  148. }
  149.  #forward-button {
  150.  display: none !important;
  151. }
  152.  
  153. /*styling*/
  154. #searchbar > .searchbar-textbox,
  155.  
  156. #urlbar {
  157.  
  158.     border: 0px solid #FBFBFB !important;
  159.     text-align: left;
  160.     background: #273941 !important;
  161.     margin-top: 0px !important;
  162.     margin-left: 5px !important;
  163.     border-radius: 1px;
  164.     margin-bottom: 0px;
  165.     padding: 0px !important;
  166.     color: rgb(130,130,130) !important;
  167.     font-family: Noto Sans !important;
  168.     height: 18px !important;
  169. }
  170.  
  171.  
  172. #nav-bar {
  173.     background-color: #273941 !important;
  174.     border-bottom: none !important;
  175.     border-top: none !important;
  176.     margin-bottom: -2px !important;
  177.     margin-top: 0px !important;
  178.     padding-top: 0px !important;
  179.     height: 20px !important;
  180. }
  181.    
  182.  
  183.  
  184. #PanelUI-button {
  185.  
  186.     background-position: 100% 0, calc(100% - 1px) 0, calc(100% - 2px) 0;
  187.     background: url('http://i.imgur.com/WKFPVRW.png') !important;
  188.     background-repeat: no-repeat !important;
  189.     background-position: center !important;
  190.     box-shadow: none !important;
  191.     margin-top: 1px !important;
  192.     width: 9px !important;
  193.     /*display: none !important; /*COMMENT THIS LINE FOR A MENU BUTTON*/
  194.   }
  195. #PanelUI-button:hover {
  196.  
  197.     background-position: 100% 0, calc(100% - 1px) 0, calc(100% - 2px) 0;
  198.     background: url('http://i.imgur.com/WKFPVRW.png') !important;
  199.     background-repeat: no-repeat !important;
  200.     background-position: center !important;
  201.     box-shadow: none !important;
  202.     width: 10px !important;
  203.   }
  204.  
  205. #PanelUI-button .button-icon,
  206. #PanelUI-button .button-text {
  207.     display: none !important;
  208. }
  209. #PanelUI-menu-button {
  210.     opacity: 0 !important;
  211.     width: 10px !important;
  212.     margin-right: -15px !important;
  213. }
  214.  
  215. #identity-box, #dropmarker-icon, #historydropmarker, #autocomplete-history-dropmarker, #urlbar-history-dropmarker, #dropmarker {
  216.     display: none !important;
  217. }
  218.  
  219. #autocomplete-history-dropmarker, #urlbar-history-dropmarker, #urlbar-reload-button {
  220.     display: none !important;
  221. }
  222.  
  223. .autocomplete-history-dropmarker.urlbar-history-dropmarker {
  224.     display: none !important;
  225. }
  226.  
  227. #plugins-notification-icon, #notification-anchor-icon, #notification-popup-box {
  228.     display: none !important;
  229.    
  230. }
  231.  
  232. /*download button*/
  233. #downloads-button {
  234.     background: url('http://i.imgur.com/QA0QFij.png') !important;
  235.     background-repeat: no-repeat  !important;
  236.     background-position: center !important;
  237.     opacity: 1 !important;
  238.     margin-left: 10px !important;
  239.     margin-right: 0px !important;
  240.     margin-bottom: 0px !important;
  241.     box-shadow: none !important;
  242.     width: 10px !important;
  243. }
  244.  
  245. #toolbarbutton-icon .Downloads,
  246. #downloads-indicator-icon,
  247. #downloads-indicator-progress-area,
  248. #downloads-button .button-text {
  249.     display: none !important;
  250. }
  251.  
  252. #downloads-indicator-anchor {opacity: 0 !important;}
  253.  
  254. #downloads-button:hover {
  255.     opacity: 1 !important;
  256.     box-shadow: none !important;
  257.     background: url('http://i.imgur.com/sTi4rOA.png') !important;
  258.     background-repeat: no-repeat !important;
  259.     background-position: center !important;
  260. }
  261.  
  262. /* remove tab scrolling */
  263.  
  264. .scrollbutton-up, .scrollbutton-down, #alltabs-button {
  265.     display: none !important;
  266. }
  267.  
  268. /*!noha/.gytc*/
  269. /*noha-ra.deviantart.com*/
Advertisement
Add Comment
Please, Sign In to add comment