-
-
Save victorzhuk/a928db89b4466a96129f65ab918c8d48 to your computer and use it in GitHub Desktop.
Revisions
-
gmolveau revised this gist
Apr 10, 2020 . 1 changed file with 10 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -19,8 +19,16 @@ browser { background-color: #131314 !important; } * Then create another file `userContent.css` and paste the followind code in it : ```css @-moz-document url-prefix(about:blank) { html > body:empty { background-color: rgb(19,19,20) !important; } } @-moz-document url(about:blank) { html > body:empty { background-color: rgb(19,19,20) !important; } } ``` * Completely quit and restart firefox -
Grégoire MOLVEAU revised this gist
Aug 8, 2019 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -4,7 +4,9 @@ ### Procedure * Type `about:config` in the URL bar * Search `toolkit.legacyUserProfileCustomizations.stylesheets` and double-click the field to set it to `true` * Type `about:support` in the URL bar * Look for `Profile folder` field and click on the __open__ button next to it. * Create a folder with the name `chrome` * Inside this folder, create a file `userChrome.css` and paste the following code inside it : -
Grégoire MOLVEAU renamed this gist
Feb 13, 2019 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
Grégoire MOLVEAU revised this gist
Feb 12, 2019 . No changes.There are no files selected for viewing
-
Grégoire MOLVEAU revised this gist
Feb 12, 2019 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -10,15 +10,15 @@ * Inside this folder, create a file `userChrome.css` and paste the following code inside it : ```css tabbrowser tabpanels { background-color: rgb(19,19,20) !important; } browser { background-color: #131314 !important; } ``` * Then create another file `userContent.css` and paste the followind code in it : ```css @-moz-document url(about:blank) { html { background-color: rgb(19,19,20) !important; } } @-moz-document url-prefix(about:blank) { * { background-color: rgb(19,19,20); } } ``` * Completely quit and restart firefox -
Grégoire MOLVEAU created this gist
Feb 12, 2019 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,26 @@ # Firefox Dark Background * How to change the background on Firefox to a dark one on new tab / loading screen ? ### Procedure * Type `about:support` in the URL * Look for `Profile folder` field and click on the __open__ button next to it. * Create a folder with the name `chrome` * Inside this folder, create a file `userChrome.css` and paste the following code inside it : ```css tabbrowser tabpanels { background-color: #131314 !important; } browser { background-color: #131314 !important; } ``` * Then create another file `userContent.css` and paste the followind code in it : ```css @-moz-document url(about:blank) { html { background-color: #131314 !important; } } @-moz-document url-prefix(about:blank) { * { background-color: #131314 !important; } } ``` * Completely quit and restart firefox * Enjoy