From 5ad48407451793d22baa954bab63ec7f1722b9b0 Mon Sep 17 00:00:00 2001 From: Kenichi Kamiya Date: Mon, 21 Aug 2023 02:39:57 +0900 Subject: [PATCH] Add CSS and note about to change finder position in Firefox (#275) * Add CSS and note about to change finder position in Firefox * Move Firefox config under program configs as others --- home/.config/Firefox/README.md | 9 +++++++++ home/.config/Firefox/userChrome.css | 7 +++++++ 2 files changed, 16 insertions(+) create mode 100644 home/.config/Firefox/README.md create mode 100644 home/.config/Firefox/userChrome.css diff --git a/home/.config/Firefox/README.md b/home/.config/Firefox/README.md new file mode 100644 index 00000000..a4ceaed0 --- /dev/null +++ b/home/.config/Firefox/README.md @@ -0,0 +1,9 @@ +# Firefox + +## How to change finder in page position from bottom to top? + +1. `about:config` +1. Enable `toolkit.legacyUserProfileCustomizations.stylesheets` +1. Get profile folder path from `about:support` +1. Put [userChrome.css](userChrome.css) in the profile folder +1. Restart Firefox diff --git a/home/.config/Firefox/userChrome.css b/home/.config/Firefox/userChrome.css new file mode 100644 index 00000000..691342f2 --- /dev/null +++ b/home/.config/Firefox/userChrome.css @@ -0,0 +1,7 @@ +/* https://support.mozilla.org/lt/questions/1372399#answer-1492856 */ +.browserContainer > findbar { + -moz-box-ordinal-group: 0 !important; /* for 112 and older */ + order: -1 !important; /* for 113 and newer */ + border-top: none !important; + border-bottom: 1px solid ThreeDShadow !important; +}