Advertisement
Guest User

Untitled

a guest
Jan 7th, 2019
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.43 KB | None | 0 0
  1. :root {
  2.     --color0: #ffffff;
  3.     --color1: #202020;
  4.     --color2: #576362;
  5.  
  6.     --tabs-border-color: transparent !important;
  7. }
  8.  
  9. /* FOMTS */
  10.  
  11. #urlbar, .tab-label {
  12.     font-family: "Noto Sans" !important;
  13.     font-size: 12 !important;
  14. }
  15.  
  16. /* TABS */
  17.  
  18. .tabbrowser-tab[fadein]:not([pinned]) {
  19.     max-width: 100% !important;
  20. }
  21.  
  22. #tabbrowser-tabs {
  23.     background-color: var(--color0) !important;
  24. }
  25.  
  26. .tab-background {
  27.     background-color: var(--color0) !important;
  28.     background-attachment: none !important;
  29.     background-image: none !important;
  30.     background-position: none !important;
  31.     background-repeat: none !important;
  32. }
  33.  
  34. .tab-label {
  35.     -moz-box-flex: 1 !important;
  36.     text-align: center !important;
  37.     color: var(--color2) !important;
  38. }
  39.  
  40. .tab-label[selected="true"] {
  41.     color: var(--color1) !important;
  42. }
  43.  
  44. .tabbrowser-tab::after, .tabbrowser-tab::before {
  45.     border-left: none !important;
  46. }
  47.  
  48. .tab-line, .tab-icon-image {
  49.     display: none !important;
  50. }
  51.  
  52. .tab-close-button, .tabs-newtab-button {
  53.     display: none !important;
  54. }
  55.  
  56. .titlebar-placeholder[type="pre-tabs"], .titlebar-placeholder[type="post-tabs"] {
  57.     display: none !important;
  58. }
  59.  
  60. .tabbrowser-arrowscrollbox > .scrollbutton-up[disabled="true"] {
  61.     display: none !important;
  62. }
  63.  
  64. #navigator-toolbox:not(:hover) > #TabsToolbar > #tabbrowser-tabs > .tabbrowser-arrowscrollbox > .scrollbutton-down:not([highlight]) {
  65.     display: none !important;
  66. }
  67.  
  68. .tabbrowser-arrowscrollbox > .scrollbutton-up:-moz-locale-dir(rtl), .tabbrowser-arrowscrollbox > .scrollbutton-down:-moz-locale-dir(ltr) {
  69.     display: none !important;
  70. }
  71.  
  72. #alltabs-button, #new-tab-button {
  73.     display: none !important;
  74. }
  75.  
  76. .tabbrowser-arrowscrollbox > .arrowscrollbox-overflow-start-indicator, .tabbrowser-arrowscrollbox > .arrowscrollbox-overflow-end-indicator {
  77.     display: none !important;
  78. }
  79.  
  80. /* URLBAR */
  81.  
  82. #urlbar {
  83.     background-color: transparent !important;
  84.     border-color: transparent !important;
  85.     border-radius: 0em !important;
  86.     box-shadow: none !important;
  87.     text-align: center !important;
  88.     color: var(--color1) !important;
  89.     padding-bottom: 5px !important;
  90. }
  91.  
  92. .urlbar-history-dropmarker {
  93.     display: none !important;
  94. }
  95.  
  96. #identity-box {
  97.     display: none !important;
  98. }
  99.  
  100. #pageActionButton, #pocket-button, #star-button, .urlbar-go-button {
  101.     display: none !important;
  102. }
  103.  
  104. #PopupAutoCompleteRichResult {
  105.     display: none !important;
  106. }
  107.  
  108. /* TOOLBAR */
  109.  
  110. #nav-bar {
  111.     background-color: var(--color0) !important;
  112.     background-attachment: none !important;
  113.     background-image: none !important;
  114.     background-position: none !important;
  115.     background-repeat: none !important;
  116.         max-height: 35px !important;
  117.         width: 100% !important;
  118.         position: fixed !important;
  119.         bottom: 0 !important;
  120.     display: block !important;
  121. }
  122.  
  123. #urlbar, .searchbar-textbox {
  124.         border: none !important;
  125.         box-shadow: none !important;
  126.     height: 30px !important;
  127. }
  128.  
  129. #nav-bar {
  130.         margin-top: 0px !important;
  131.         border-top: 0px !important;
  132.     box-shadow: none !important;
  133.         height: 30px !important;
  134. }
  135.  
  136. #nav-bar toolbarpaletteitem[id^="wrapper-customizableui-special-spring"], #nav-bar toolbarspring {
  137.         display: none !important;
  138. }
  139.  
  140. #nav-bar-customization-target {
  141.         width: 100%;
  142. }
  143.  
  144. #PanelUI-button {
  145.         position: relative !important;
  146.         top: -15px !important;
  147. }
  148.  
  149. toolbarbutton {
  150.     display: none !important;
  151. }
  152.  
  153. #navigator-toolbox::after {
  154.     border-bottom: 0px !important;
  155. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement