Advertisement
Guest User

Untitled

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