Advertisement
Guest User

Melbourne Dark

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