Advertisement
Christopher_01

userChromeStyleFF

Nov 18th, 2024
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. #urlbar:is([breakout][breakout-extend], [breakout][usertyping][focused]) {
  2. #urlbar-input {
  3. font-size: 21px !important;
  4. }
  5. scrollbox:nth-child(5) {
  6. scrollbar-width: none !important;
  7. }
  8. @-moz-document url(chrome://browser/content/browser.xhtml){
  9.  
  10. :root:not([inFullscreen]){
  11. --uc-bottom-toolbar-height: calc(39px + var(--toolbarbutton-outer-padding) )
  12. }
  13.  
  14. :root[uidensity="compact"]:not([inFullscreen]){
  15. --uc-bottom-toolbar-height: calc(32px + var(--toolbarbutton-outer-padding) )
  16. }
  17.  
  18. #browser,
  19. #customization-container{ margin-bottom: var(--uc-bottom-toolbar-height,0px) }
  20.  
  21. #nav-bar{
  22. position: fixed !important;
  23. bottom: 0px;
  24. /* For some reason -webkit-box behaves internally like -moz-box, but can be used with fixed position. display: flex would work too but it breaks extension menus. */
  25. display: -webkit-box;
  26. width: 100%;
  27. z-index: 1;
  28. }
  29. #nav-bar-customization-target{ -webkit-box-flex: 1; }
  30.  
  31. /* Fix panels sizing */
  32. .panel-viewstack{ max-height: unset !important; }
  33.  
  34. #urlbar[breakout][breakout-extend]{
  35. display: flex !important;
  36. flex-direction: column-reverse;
  37. bottom: 0px !important; /* Change to 3-5 px if using compact_urlbar_megabar.css depending on toolbar density */
  38. top: auto !important;
  39. }
  40.  
  41. .urlbarView-body-inner{ border-top-style: none !important; }
  42.  
  43. }
  44. z-index: 2;
  45. position: fixed !important;
  46. bottom: auto !important;
  47. top: 20vh !important;
  48. padding-left: 6px !important;
  49. padding-right: 8px !important;
  50.  
  51. left: 18vw !important;
  52. right: 18vw !important;
  53. width: 64vw !important;
  54.  
  55. &:after {
  56. content: "";
  57. position: fixed;
  58. pointer-events: none;
  59.  
  60. width: 100vw;
  61. height: 100vh;
  62.  
  63. top: 0px;
  64. left: 0px;
  65.  
  66. background-color: rgba(0, 0, 0, 0.3);
  67. backdrop-filter: blur(12px);
  68.  
  69. z-index: -1;
  70. }
  71.  
  72. #identity-box {
  73. margin: auto 0;
  74. height: 30px;
  75. margin-right: 10px;
  76. }
  77.  
  78. .urlbar-go-button {
  79. margin: auto 0;
  80. }
  81.  
  82. }
  83.  
  84. #zen-essentials-container .tab-icon-image {
  85. transform: scale(2.0);
  86. &:not([selected]) .tab-background{
  87. background: red !important;
  88.  
  89. }
  90. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement