From 21804cb1654d40dec307ee6dd6e052c22edc9fa4 Mon Sep 17 00:00:00 2001 From: eneller Date: Mon, 20 Jun 2022 18:59:02 +0200 Subject: [PATCH] move firefox --- .../chrome/userChrome.css | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .mozilla/firefox/oxewlilo.default-release/chrome/userChrome.css diff --git a/.mozilla/firefox/oxewlilo.default-release/chrome/userChrome.css b/.mozilla/firefox/oxewlilo.default-release/chrome/userChrome.css new file mode 100644 index 0000000..517fbf6 --- /dev/null +++ b/.mozilla/firefox/oxewlilo.default-release/chrome/userChrome.css @@ -0,0 +1,29 @@ +/*The following block hides the horizontal tabs for tree style tabs https://github.com/piroor/treestyletab/wiki/Code-snippets-for-custom-style-rules#for-userchromecss */ +#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar > .toolbar-items { + opacity: 0; + pointer-events: none; +} +#main-window:not([tabsintitlebar="true"]) #TabsToolbar { + visibility: collapse !important; +} + +/*remove top white line*/ +#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar .titlebar-spacer { + border-inline-end: none; +} +/*Hide the Tree style Tab header*/ +#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] #sidebar-header { + display: none; +} + +/* The following moves the window buttons to the lower bar after removeing horizontal tabs*/ +/* Adding empty space for buttons */ +#nav-bar { + margin-right:140px; +} + +/* Fix for main menu calling by Alt button */ +#titlebar > #toolbar-menubar { + margin-top: 10px; +} +