Guest User

Untitled

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