From d5df8be6e2c15bc5460ebacef23be7496d2ab408 Mon Sep 17 00:00:00 2001 From: 0penrc <80153347+0penrc@users.noreply.github.com> Date: Sat, 9 Mar 2024 22:34:36 +0100 Subject: [PATCH 1/2] Create about.css --- .../chrome/pages/about/about.css | 73 +++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 Echelon/Profile Folder/chrome/pages/about/about.css diff --git a/Echelon/Profile Folder/chrome/pages/about/about.css b/Echelon/Profile Folder/chrome/pages/about/about.css new file mode 100644 index 00000000..b9f4b5cc --- /dev/null +++ b/Echelon/Profile Folder/chrome/pages/about/about.css @@ -0,0 +1,73 @@ +/* Taken from Firefox 4.0.1, slightly modified */ +@-moz-document url-prefix("about:about") { + +html { + background: -moz-Dialog !important; + padding: 0 1em; + font: message-box !important; +} + +body { + color: -moz-FieldText; + position: relative; + min-width: 330px !important; + max-width: 50em !important; + margin: 4em auto; + border: 1px solid ThreeDShadow; + border-radius: 10px; + padding: 3em; + -moz-padding-start: 30px; + background: -moz-Field; +} + +.aboutPageWideContainer { + max-width: 80%; +} + +#aboutLogoContainer { + border: 1px solid ThreeDLightShadow; + width: 300px; + margin-bottom: 2em; +} + +img { + border: 0; +} + +#version { + font-weight: bold; + color: #909090; + margin: -24px 0 9px 17px; +} + +ul { + margin: 0; + -moz-margin-start: 1.5em; + padding: 0; + list-style: square; +} + +ul > li { + margin-top: .5em; +} + +th, td { + padding: 0 5px; +} + +.columns { + -moz-column-width: 20em; + -moz-column-gap: 3em; +} + +.container { + width: 100% !important; + max-width: 100% !important; + padding: 0 !important; +} + +a { + color: revert !important; +} + +} From 20dc5031ef5fa681bf72d62d36f010a0c59c78d9 Mon Sep 17 00:00:00 2001 From: 0penrc <80153347+0penrc@users.noreply.github.com> Date: Sat, 9 Mar 2024 22:34:59 +0100 Subject: [PATCH 2/2] Update userContent.css --- Echelon/Profile Folder/chrome/userContent.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Echelon/Profile Folder/chrome/userContent.css b/Echelon/Profile Folder/chrome/userContent.css index 0678808c..1e2fd435 100644 --- a/Echelon/Profile Folder/chrome/userContent.css +++ b/Echelon/Profile Folder/chrome/userContent.css @@ -3,10 +3,11 @@ @import url("pages/preferences/preferences.css"); @import url("pages/addons/addons.css"); @import url("pages/support/support.css"); +@import url("pages/about/about.css"); @import url("Echelon.devTools.css"); @import url("Echelon.netError.css"); @import url("Echelon.commonDialog.css"); /* Additional styles from the user ignored by Git. */ -@import url("_content_user.css"); \ No newline at end of file +@import url("_content_user.css");