diff --git a/.gitignore b/.gitignore index 014d69f..d98c261 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,3 @@ mozconfig Makefile librewolf installer_win.nsi -firefox-85.0.find diff --git a/HOW_TO_BUILD.md b/HOW_TO_BUILD.md index 2fd8022..4ba5c07 100644 --- a/HOW_TO_BUILD.md +++ b/HOW_TO_BUILD.md @@ -25,3 +25,4 @@ You can perform all the steps on one go, or perform the build steps individually ``` bash build.sh fetch prepare build package installer_win ``` + diff --git a/missing_branding_files/content/about-background.png b/missing_branding_files/content/about-background.png new file mode 100644 index 0000000..2132677 Binary files /dev/null and b/missing_branding_files/content/about-background.png differ diff --git a/missing_branding_files/content/aboutDialog.css b/missing_branding_files/content/aboutDialog.css new file mode 100644 index 0000000..29c693b --- /dev/null +++ b/missing_branding_files/content/aboutDialog.css @@ -0,0 +1,54 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#aboutDialogContainer { + background-image: url("chrome://branding/content/about-background.png"); + background-repeat: no-repeat; + background-color: #00acff; + color: #090909; +} + +/* +firefox-85.0/browser/base/content/aboutDialog.css +firefox-85.0/browser/base/content/aboutDialog.js +firefox-85.0/browser/base/content/aboutDialog.xhtml +*/ +/* enable this below for ESR version */ +/* #release { display: inline; } */ + + +.text-link { + color: #101010 !important; + text-decoration: underline; +} + +#rightBox { + /* this margin prevents text from overlapping the planet image */ + + background-image: none; /* getting rid of the 'Nightly' text */ + + margin-left: 275px; + margin-top: 50px; + margin-right: 20px; + + min-height: 260px; +} + +#bottomBox { + background-color: rgba(0,0,0,.7); + display: none; +} + +#leftBox { + #display: none; +# background-image: url("chrome://branding/content/about-logo.png"); +# background-repeat: no-repeat; +# background-size: 192px auto; +# background-position: center 20%; +# /* min-width and min-height create room for the logo */ + min-width: 210px; + min-height: 220px; + margin-top: 20px; + margin-inline-start: 30px; +} diff --git a/missing_branding_files/pref/firefox-branding.js b/missing_branding_files/pref/firefox-branding.js new file mode 100644 index 0000000..738f046 --- /dev/null +++ b/missing_branding_files/pref/firefox-branding.js @@ -0,0 +1,7 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +pref("startup.homepage_welcome_url", "https://librewolf-community.gitlab.io/"); + +