Skip to content

Commit

Permalink
Add CSS and note about to change finder position in Firefox (#275)
Browse files Browse the repository at this point in the history
* Add CSS and note about to change finder position in Firefox

* Move Firefox config under program configs as others
  • Loading branch information
kachick authored Aug 20, 2023
1 parent d2481ea commit 5ad4840
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
9 changes: 9 additions & 0 deletions home/.config/Firefox/README.md
Original file line number Diff line number Diff line change
@@ -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
7 changes: 7 additions & 0 deletions home/.config/Firefox/userChrome.css
Original file line number Diff line number Diff line change
@@ -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;
}

0 comments on commit 5ad4840

Please sign in to comment.