Advertisement
Guest User

userChrome.css

a guest
Jan 27th, 2022
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.80 KB | None | 0 0
  1. :root {
  2.     --mff-bg: #1F1F1F;
  3.     --mff-urlbar-font-family: "PragmataPro Nerd Font", sans;
  4.     --mff-urlbar-font-size: 12pt;
  5.     --mff-urlbar-font-weight: 600;
  6.  
  7.   --toolbar-bgcolor: var(--mff-bg) !important;
  8. }
  9.  
  10.  
  11. #navigator-toolbox:hover {
  12.     height: 32px;
  13.     transition-property: height;
  14.     transition-duration: 0.5s;
  15.     transition-delay: 0s;
  16. }
  17.  
  18. /*hide tabbar*/
  19. #TabsToolbar { visibility: collapse !important; }
  20.  
  21. /*hide scrollbars*/
  22. #content browser, .browserStack>browser {
  23.     margin-right:-17px!important;
  24.     /*margin-bottom:-17px!important;*/
  25.     overflow-y:hidden;
  26.     overflow-x:hidden;
  27. }
  28.  
  29. /*fix white flash*/
  30. .browserContainer { background-color: #121212 !important; }
  31.  
  32. #back-button, #forward-button { display:none!important; }
  33.  
  34. /*disable reader view*/
  35. #reader-mode-button,
  36. #readinglist-addremove-button {
  37.  display:none !important;
  38. }
  39.  
  40. /*disable zoom button*/
  41. #urlbar-zoom-button {display:none!important}
  42.  
  43.  
  44. #tracking-protection-icon-container, #identity-box {
  45.   display: none;
  46. }
  47.  
  48. #urlbar-background {
  49.   opacity: .9 !important;
  50. }
  51.  
  52.  
  53. /*.urlbarView-favicon, .urlbarView-type-icon {*/
  54.   /*display: none !important;*/
  55. /*}*/
  56.  
  57. box.panel-arrowbox {
  58.   display: none;
  59. }
  60.  
  61. image#star-button {
  62.   display: none;
  63. }
  64.  
  65. #navigator-toolbox, toolbaritem {
  66.   border: none !important;
  67. }
  68.  
  69. #urlbar-background {
  70.   background-color: var(--mff-bg) !important;
  71.   border: none !important;
  72. }
  73.  
  74. #pageActionButton {
  75.     display: none;
  76. }
  77.  
  78. #urlbar-input {
  79.   font-size: var(--mff-urlbar-font-size) !important;
  80.   color: var(--mff-urlbar-color) !important;
  81.   font-family: var(--mff-urlbar-font-family) !important;
  82.   font-weight: var(--mff-urlbar-font-weight)!important;
  83.   text-align: center !important;
  84. }
  85.  
  86. #statuspanel {
  87.      display: none !important;
  88. }
  89.  
  90. /*#PanelUI-button { display:none!important; }*/
  91.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement