Advertisement
rosecross

Tiny White

May 24th, 2015
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.13 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: rgb(255,255,255) !important;
  31. margin-bottom: 0 !important;
  32. }
  33.  
  34.  
  35. #TabsToolbar .tabbrowser-tabs {
  36. min-height: 18px !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. text-shadow: 0 0 4px rgba(80,80,80,0) !important;
  59. padding: 0px 0px !important;
  60. border-radius: 0px !important;
  61. background: rgb(255,255,255) !important;
  62. background-clip: padding-box !important;
  63. transition: all .1s !important;
  64. margin-left: 0px !important;
  65. color: rgb(100,100,100) !important;
  66. font-family: 'Ubuntu' !important;
  67. font-size: 12px !important;
  68. min-height: 14px !important;
  69. }
  70.  
  71. #TabsToolbar .tabs-newtab-button {
  72. -moz-border-top-colors: none !important;
  73. -moz-border-left-colors: none !important;
  74. -moz-border-right-colors: none !important;
  75. -moz-border-bottom-colors: none !important;
  76. border-style: solid !important;
  77. border-color: transparent !important;
  78. border-width: 1px 1px 0 1px !important;
  79. text-shadow: 0 0 4px rgba(255,255,255,0) !important;
  80. background: transparent !important;
  81. background-clip: padding-box !important;
  82. transition: all .1s !important;
  83. }
  84.  
  85.  
  86.  
  87.  
  88. #TabsToolbar .tabbrowser-tab[selected] {
  89. color: rgb(100,100,100) !important;
  90. background: rgb(250,178,207) !important;
  91. background-clip: padding-box !important;
  92. }
  93.  
  94. #TabsToolbar .tabs-newtab-button:hover,
  95. #TabsToolbar .tabbrowser-tab:hover:not([selected]) {
  96. background-color: rgba(80,101,140,.4) !important;
  97. color: rgb(251,251,251) !important;
  98. }
  99.  
  100. #TabsToolbar .tab-background {
  101. margin: 0 !important;
  102. background: transparent !important;
  103. }
  104.  
  105. #TabsToolbar .tab-background-start,
  106. #TabsToolbar .tab-background-end {
  107. display: none !important;
  108. }
  109.  
  110. #TabsToolbar .tab-background-middle {
  111. margin: -4px -2px !important;
  112. background: transparent !important;
  113. }
  114.  
  115. #TabsToolbar .tabbrowser-tab:after,
  116. #TabsToolbar .tabbrowser-tab:before {
  117. display: none !important;
  118. }
  119.  
  120. #TabsToolbar .tabs-newtab-button {
  121. border-width: 1px 1px 0 1px !important;
  122. margin: 0 !important;
  123. width: auto !important;
  124. padding: 0 5px !important;
  125. }
  126.  
  127.  
  128.  
  129. #addon-bar,
  130. #PersonalToolbar,
  131. #nav-bar {
  132. background: #EAF2FA !important;
  133. box-shadow: none !important;
  134. background-clip: padding-box !important;
  135. border-color: rgba(0,0,0,.25) !important;
  136. border-radius: 0 !important;
  137. }
  138.  
  139. .subviewbutton.panel-subview-footer {
  140. padding-top: 6px !important;
  141. padding-bottom: 6px !important;
  142. }
  143.  
  144.  
  145. /* URL BAR */
  146.  
  147. /* remove back/fwd */
  148.  
  149. #nav-bar #back-button > .toolbarbutton-icon {
  150. display: none !important;
  151. }
  152. #forward-button {
  153. display: none !important;
  154. }
  155.  
  156. /*styling*/
  157. #searchbar > .searchbar-textbox,
  158.  
  159. #urlbar {
  160.  
  161. border: 0px solid #FBFBFB !important;
  162. text-align: center;
  163. background: rgb(255,255,255) !important;
  164. margin-top: 0px !important;
  165. margin-left: 5px !important;
  166. border-radius: 0px;
  167. margin-bottom: 6px;
  168. padding: 0px !important;
  169. color: rgb(130,130,130) !important;
  170. font-family: montecarlo !important;
  171. height: 18px !important;
  172. }
  173.  
  174.  
  175. #nav-bar {
  176. background-color: rgb(251,251,251) !important;
  177. border-bottom: none !important;
  178. border-top: none !important;
  179. margin-bottom: -4px !important;
  180. margin-top: 0px !important;
  181. padding-top: 0px !important;
  182. height: 20px !important;
  183. }
  184.  
  185.  
  186.  
  187. #PanelUI-button {
  188.  
  189. background-position: 100% 0, calc(100% - 1px) 0, calc(100% - 2px) 0;
  190. background: url('http://i.imgur.com/TkuW5hs.png') !important;
  191. background-repeat: no-repeat !important;
  192. background-position: center !important;
  193. box-shadow: none !important;
  194. margin-top: 1px !important;
  195. width: 10px !important;
  196. /*display: none !important; /*COMMENT THIS LINE FOR A MENU BUTTON*/
  197. }
  198. #PanelUI-button:hover {
  199.  
  200. background-position: 100% 0, calc(100% - 1px) 0, calc(100% - 2px) 0;
  201. background: url('http://i.imgur.com/h8J7fda.png') !important;
  202. background-repeat: no-repeat !important;
  203. background-position: center !important;
  204. box-shadow: none !important;
  205. width: 10px !important;
  206. }
  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: 10px !important;
  215. margin-right: -15px !important;
  216. }
  217.  
  218. #identity-box, #dropmarker-icon, #historydropmarker, #autocomplete-history-dropmarker, #urlbar-history-dropmarker, #dropmarker {
  219. display: none !important;
  220. }
  221.  
  222. #autocomplete-history-dropmarker, #urlbar-history-dropmarker, #urlbar-reload-button {
  223. display: none !important;
  224. }
  225.  
  226. .autocomplete-history-dropmarker.urlbar-history-dropmarker {
  227. display: none !important;
  228. }
  229.  
  230. #plugins-notification-icon, #notification-anchor-icon, #notification-popup-box {
  231. display: none !important;
  232.  
  233. }
  234.  
  235. /*download button*/
  236. #downloads-button {
  237. background: url('http://i.imgur.com/QA0QFij.png') !important;
  238. background-repeat: no-repeat !important;
  239. background-position: center !important;
  240. opacity: 1 !important;
  241. margin-left: 10px !important;
  242. margin-right: 0px !important;
  243. margin-bottom: 0px !important;
  244. box-shadow: none !important;
  245. width: 10px !important;
  246. }
  247.  
  248. #toolbarbutton-icon .Downloads,
  249. #downloads-indicator-icon,
  250. #downloads-indicator-progress-area,
  251. #downloads-button .button-text {
  252. display: none !important;
  253. }
  254.  
  255. #downloads-indicator-anchor {opacity: 0 !important;}
  256.  
  257. #downloads-button:hover {
  258. opacity: 1 !important;
  259. box-shadow: none !important;
  260. background: url('http://i.imgur.com/sTi4rOA.png') !important;
  261. background-repeat: no-repeat !important;
  262. background-position: center !important;
  263. }
  264.  
  265. /* remove tab scrolling */
  266.  
  267. .scrollbutton-up, .scrollbutton-down, #alltabs-button {
  268. display: none !important;
  269. }
  270.  
  271. /*!noha/.gytc*/
  272. /*noha-ra.deviantart.com*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement