Advertisement
Guest User

Melbourne Edited

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