Advertisement
saadmannn

firefox css tweaks

Dec 14th, 2024
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.95 KB | Software | 0 0
  1. /* Edge-Frfox main files */
  2. @import url("icons/icons.css");
  3. @import url("toolbar/tabbar.css");
  4. @import url("toolbar/navbar.css");
  5. @import url("toolbar/personalbar.css");
  6. @import url("toolbar/findbar.css");
  7. @import url("toolbar/urlbar.css");
  8. @import url("global/colors.css");
  9. @import url("global/popup.css");
  10. @import url("global/browser.css");
  11. @import url("global/tree.css");
  12.  
  13. /* Edge-Frfox tweaks */
  14. @import url("global/tweaks.css");
  15. @import url("tweaks/hide-tabs-bar.css") (-moz-bool-pref: "uc.tweak.hide-tabs-bar");
  16.  
  17. /* Import custom stylesheet instead of modifying Edge-Frfox theme files. */
  18. @import url("custom.css");
  19.  
  20. #unified-extensions-panel #unified-extensions-view {
  21. width: 100% !important; /* For firefox v115.x */
  22. }
  23.  
  24. #unified-extensions-view{
  25. --uei-icon-size: 20px; /* Change icon size */
  26. --firefoxcss-number-of-extensions-in-a-row: 4; /* Increase to the number of icons you want in one row */
  27. }
  28.  
  29. #unified-extensions-view .panel-header,
  30. #unified-extensions-view .panel-header + toolbarseparator,
  31. #unified-extensions-view .panel-subview-body + toolbarseparator,
  32. #unified-extensions-view #unified-extensions-manage-extensions,
  33. #unified-extensions-view .unified-extensions-item-menu-button.subviewbutton,
  34. #unified-extensions-view .unified-extensions-item-action-button .unified-extensions-item-contents{
  35. display:none !important;
  36. }
  37.  
  38. #unified-extensions-view .panel-subview-body {
  39. padding:4px !important;
  40. }
  41.  
  42. #unified-extensions-view .unified-extensions-item .unified-extensions-item-icon,
  43. #unified-extensions-view .unified-extensions-item .toolbarbutton-badge-stack {
  44. margin-inline-end: 0px !important;
  45. }
  46.  
  47. #unified-extensions-view #overflowed-extensions-list,
  48. #unified-extensions-view #unified-extensions-area,
  49. #unified-extensions-view .unified-extensions-list {
  50. display: grid !important;
  51. grid-template-columns: repeat(var(--firefoxcss-number-of-extensions-in-a-row),auto);
  52. justify-items:left !important;
  53. align-items:left !important;
  54. }
  55.  
  56. #unified-extensions-view .unified-extensions-list .unified-extensions-item,
  57. #unified-extensions-view .unified-extensions-list{
  58. max-width: max-content;
  59. }
  60.  
  61. #unified-extensions-view #unified-extensions-area {
  62. padding-bottom: 3px !important;
  63. border-bottom: 1px solid #aeaeae33 !important;
  64. }
  65.  
  66. #unified-extensions-view .unified-extensions-list {
  67. /* border-top: 1px solid #aeaeae33 !important; */
  68. }
  69.  
  70. #wrapper-edit-controls:is([place="palette"],
  71. [place="panel"]) > #edit-controls, #wrapper-zoom-controls:is([place="palette"],
  72. [place="panel"]) > #zoom-controls, :is(panelview, #widget-overflow-fixed-list) .toolbaritem-combined-buttons {
  73. margin: 0px !important;
  74. }
  75.  
  76. #sidebar-box {
  77. max-width: none !important;
  78. }
  79. :root{ --toolbar-field-focus-border-color: transparent !important; }
  80. #urlbar-background{ background-color: #1d1d1f !important; }
  81. #navigator-toolbox::after {display: none !important;}
  82.  
  83. :root {
  84. --tabs-navbar-separator-style: none !important;
  85. }
  86. #tabbrowser-tabs {margin-top: 4px !important}
  87.  
  88. :root{ --urlbarView-highlight-background: transparent !important; }
  89.  
  90. #urlbar[open] > #urlbar-background {
  91. outline: none !important;
  92. }
  93. toolbarbutton.bookmark-item[container] menupopup {
  94. --uc-outline-color: transparent;
  95. --arrowpanel-border-color: transparent;
  96. }
  97. /*Audio Tab Icon */
  98. .tab-icon-overlay[soundplaying] {
  99. fill: #FFFFFF !important;/* default: #058B00 / var(--green-70) */
  100. border: none !important;
  101. background-color: transparent !important;
  102. background-size: 18px !important;
  103. }
  104. .tab-icon-overlay[muted] {
  105. fill: #D70022 !important;/* default: #D70022 / var(--red-60) */
  106. border: none !important;
  107. background-color: transparent !important;
  108. background-size: 18px !important;
  109. }
  110. .tab-icon-overlay[activemedia-blocked] {
  111. fill: #FFE900 !important;/* default: #FFE900 / var(--yellow-50) */
  112. border: none !important;
  113. background-color: transparent !important;
  114. background-size: 18px !important;
  115. }
  116.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement