-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
- Loading branch information
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |