From a5be4df3b98073b25f8525c54fc2901d87fbf8b7 Mon Sep 17 00:00:00 2001 From: Jason Hilder Date: Fri, 13 Feb 2026 07:48:33 +0200 Subject: [PATCH] Added random configs, manually mv these. --- config/random/userChrome.css | 53 ++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 config/random/userChrome.css diff --git a/config/random/userChrome.css b/config/random/userChrome.css new file mode 100644 index 0000000..43fc4f1 --- /dev/null +++ b/config/random/userChrome.css @@ -0,0 +1,53 @@ +/* Save to config/mozilla/firefox/xxxx.default-release/chrome/userChrome.css */ + +/* Make tabs square */ +.tab-background { + border-radius: 0 !important; +} +#tabbrowser-tabs { + --tab-border-radius: 0 !important; +} + +/* Remove spacing below tabs */ +#TabsToolbar { + padding: 0 !important; + margin: 0 !important; +} +#tabbrowser-tabs { + padding: 0 !important; + margin: 0 !important; +} +#navigator-toolbox { + padding-bottom: 0 !important; +} + +/* Remove spacing between tabs and address bar */ +#nav-bar { + margin: 0 !important; + padding: 0 !important; +} +#titlebar { + margin: 0 !important; + padding: 0 !important; +} + +:root { + --tab-block-margin: 0 !important; +} + +/* Remove gaps between tabs - ADD THESE */ +.tabbrowser-tab { + padding-inline: 0 !important; + margin-inline: 0 !important; +} + +/* Remove separator lines between tabs */ +.tabbrowser-tab::after, +.tabbrowser-tab::before { + display: none !important; +} + +/* Ensure tab content fills the space */ +.tab-content { + padding-inline: 8px !important; /* Adjust inner padding as needed */ +}