this repo has no description

feat: rename tweaks + use md table

+21 -18
+16 -13
README.md
··· 74 74 ![Userchrome Toggle Settings](./Media/UCToggleSettings.png) 75 75 76 76 ### about:config tweaks 77 - 78 - * `uc.tweak.borderless` -> removes margins around the webpage 79 - * `uc.tweak.sidebar-header` -> show sidebar header 80 - * `sidebar.position_start` -> whether the sidebar is on the left or right 81 - * `uc.tweak.sidebery-top-navbar` -> move the Sidebery navbar thingy from the bottom to the top 82 - * `uc.tweak.sidebery-big-pinned` -> Pinned tabs look like buttons, like Arc's pinned tabs (make sure to set Sidebery settings > tabs > pinned tabs > Show titles is off) 83 - * `uc.tweak.no-custom-icons` -> removes theming of some extensions icons 84 - * `uc.tweak.no-window-controls` -> hide window controls 85 - * `uc.tweak.regular-search` -> return urlbar to original state 86 - * `uc.tweak.no-panel-hint` -> hide the small bars showing location of hidden panels 87 - * `uc.tweak.no-animations` -> disable animations added by this theme 88 - * `uc.tweak.translucency` -> **EXPERIMENTAL** translucency support 89 - * `browser.tabs.allow_transparent_browser` -> allow tab contents to have transparent bg, know to break websites with a white bg (requires `uc.tweak.translucency`) 77 + | Setting | Description | 78 + |----------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------| 79 + | uc.tweak.borderless | removes margins around the webpage | 80 + | uc.tweak.no-custom-icons | Don't apply custom monochrome icons for some extensions | 81 + | uc.tweak.no-window-controls | Removes window controls | 82 + | uc.tweak.no-panel-hint | hide the small bars showing location of hidden panels | 83 + | uc.tweak.no-animations | disable animations added by this theme | 84 + | uc.tweak.regular-search | return urlbar to original state | 85 + | sidebar.position_start | Controls if the sidebar is on the left or right | 86 + | uc.tweak.sidebar.short | makes sidebar shorter when hovering (140px) | 87 + | uc.tweak.sidebar.wide | makes sidebar wider when hovering (200px) | 88 + | uc.tweak.sidebar.header | show sidebar header | 89 + | uc.tweak.sidebery.big-pinned | Pinned tabs look like buttons, like Arc's pinned tabs (make sure to set Sidebery settings > tabs > pinned tabs > Show titles is off) | 90 + | uc.tweak.sidebery.top-navbar | move Sidebery's navbar to the top of the sidebar | 91 + | uc.tweak.translucency | EXPERIMENTAL translucency support | 92 + | browser.tabs.allow_transparent_browser | allow tab contents to have transparent bg, know to break websites with a white bg (requires uc.tweak.translucency) | 90 93 91 94 ### Advanced Configuration 92 95 The variables used by the theme are in `vars.css` and `userChrome.css` (colors). If you would like to ensure there aren't git conflicts you can add a `overrides.css` file in the `chrome` file and override the variables from `vars.css` in there (using `!important;` is necessary). Keep in mind the theme defaults to using `uidensity="compact"`, so you will want to change the variables inside there.
+3 -3
chrome/browser/sidebar.css
··· 36 36 #sidebar { 37 37 clip-path: circle(100%); 38 38 border-radius: var(--uc-content-radius) !important; 39 - @media (-moz-bool-pref: "uc.tweak.sidebar-header") { 39 + @media (-moz-bool-pref: "uc.tweak.sidebar.header") { 40 40 border-top-left-radius: 0px !important; 41 41 border-top-right-radius: 0px !important; 42 42 } ··· 49 49 } 50 50 51 51 #sidebar-header { 52 - @media not (-moz-bool-pref: "uc.tweak.sidebar-header") { 52 + @media not (-moz-bool-pref: "uc.tweak.sidebar.header") { 53 53 display: none !important; 54 54 } 55 55 border-top-left-radius: var(--uc-radius) !important; ··· 152 152 & #sidebar-header { margin-top: var(--uc-content-margin) !important; } 153 153 & #sidebar { 154 154 margin-block: var(--uc-content-margin) !important; 155 - @media (-moz-bool-pref: "uc.tweak.sidebar-header") { 155 + @media (-moz-bool-pref: "uc.tweak.sidebar.header") { 156 156 margin-top: 0 !important; 157 157 } 158 158 }
+2 -2
chrome/content/sidebery.css
··· 69 69 padding: var(--tabs-margin) !important; 70 70 } 71 71 72 - @media not (-moz-bool-pref: "uc.tweak.sidebery-top-navbar") { 72 + @media not (-moz-bool-pref: "uc.tweak.sidebery.top-navbar") { 73 73 .top-horizontal-box { 74 74 order: 100 !important; 75 75 margin-bottom: 0px !important; ··· 88 88 } 89 89 } 90 90 91 - @media (-moz-bool-pref: "uc.tweak.sidebery-big-pinned") { 91 + @media (-moz-bool-pref: "uc.tweak.sidebery.big-pinned") { 92 92 .PinnedTabsBar { 93 93 display: grid !important; 94 94 grid-template-rows: 3rem;