Guest User

Untitled

a guest
Dec 23rd, 2015
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 KB | None | 0 0
  1. @namespace html url(http://www.w3.org/1999/xhtml);
  2. @namespace xul url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
  3.  
  4. /* Variables */
  5.  
  6. :root {
  7.  
  8. --font: Open Sans;
  9. --font-size: 11px;
  10.  
  11. --bg: #121212;
  12. }
  13.  
  14. /* Browser */
  15. @-moz-document url(chrome://browser/content/browser.xul) {
  16.  
  17. /* Hide stuff */
  18.  
  19. .tab-background-start, .tab-background-end, #PanelUI-button,/* #back-button, #forward-button, #urlbar-reload-button, */ .tab-close-button.close-icon, .tab-icon-image, .autocomplete-history-dropmarker.urlbar-history-dropmarker,.tabs-newtab-button, .tab-icon-overlay{
  20. display: none !important;
  21. }
  22.  
  23. /* Tabs */
  24.  
  25. #TabsToolbar {
  26. -moz-box-ordinal-group:10000!important
  27. }
  28.  
  29. .arrowscrollbox-scrollbox {
  30. background: var(--bg) !important;
  31. }
  32.  
  33. tab {
  34. font-family: var(--font) !important;
  35. font-size: var(--font-size) !important;
  36. height: 22px !important;
  37. font-weight: 600 !important;
  38. border: none !important;
  39. }
  40.  
  41. .tabbrowser-tab *, .tabs-newtab-button * {
  42. background: none !important; list-style-image: none !important;
  43. margin: 0 0 0 0 !important;
  44. padding-left: 1px !important;
  45. -moz-appearance: none !important;
  46. border: none !important;
  47. }
  48.  
  49. .tabbrowser-tab[selected] {
  50. background: var(--bg) !important;
  51. color: #fff !important;
  52. text-align: center !important;
  53.  
  54. border-bottom: solid 3px #d81860 !important;
  55. }
  56.  
  57. .tabbrowser-tab:not([selected]) {
  58. background: var(--bg) !important;
  59. text-align: center !important;
  60. color: #fff !important;
  61.  
  62. }
  63.  
  64. #TabsToolbar, #tabbrowser-tabs {
  65. margin-left: -8px !important;
  66. margin-top: -1px !important;
  67. }
  68.  
  69. .tabbrowser-tab::before, .tabbrowser-tab::after {
  70.  
  71. background: none !important;
  72. opacity: 1 !important;
  73. visibility: visible !important;
  74. }
  75.  
  76.  
  77.  
  78. /* Navbar stuff */
  79.  
  80. .scrollbox-innerbox {
  81. background: var(--bg) !important;;
  82. }
  83.  
  84. #back-button > .toolbarbutton-icon {
  85. background: #1c1c1c !important;
  86. border-radius: 0 !important;
  87. max-height: 24px !important;
  88. margin-left: 0px !important;
  89. transition: margin-left 0.2s !important;
  90. }
  91.  
  92. #forward-button > .toolbarbutton-icon {
  93. background-color: #1c1c1c !important;
  94.  
  95. }
  96.  
  97. #nav-bar-customization-target{
  98. height: 50px !important;
  99. background: var(--bg) !important;
  100. border: none none #fff !important;
  101. margin-top: -2px !important;
  102. margin-bottom: 0px !important;
  103. padding-top: 7px !important;
  104. }
  105.  
  106. /*#nav-bar {
  107. box-shadow: 0px 3px 10px #212121 !important;
  108. }*/
  109.  
  110. #urlbar {
  111. margin-left: 11px !important;
  112. margin-right: 6px !important;
  113. background: #fff !important;
  114. transition: background 0.2s;
  115. color: #000 !important;
  116. }
  117.  
  118. .searchbar-textbox{
  119. background: #fff !important;
  120. color: #000 !important;
  121. margin-right: 7px !important;
  122. transition: background 0.2s;
  123.  
  124. }
  125.  
  126. .searchbar-textbox:hover, #urlbar:hover{
  127. background: #fff !important;
  128. }
  129.  
  130.  
  131. ::-moz-placeholder {
  132. opacity: 0 !important;
  133.  
  134. }
  135.  
  136.  
  137.  
  138. }
Advertisement
Add Comment
Please, Sign In to add comment