summaryrefslogtreecommitdiffstats
path: root/browser/branding/official/stubinstaller
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /browser/branding/official/stubinstaller
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'browser/branding/official/stubinstaller')
-rw-r--r--browser/branding/official/stubinstaller/bgstub.jpgbin0 -> 68315 bytes
-rw-r--r--browser/branding/official/stubinstaller/installing_page.css87
-rw-r--r--browser/branding/official/stubinstaller/profile_cleanup_page.css75
3 files changed, 162 insertions, 0 deletions
diff --git a/browser/branding/official/stubinstaller/bgstub.jpg b/browser/branding/official/stubinstaller/bgstub.jpg
new file mode 100644
index 0000000000..4d6240399c
--- /dev/null
+++ b/browser/branding/official/stubinstaller/bgstub.jpg
Binary files differ
diff --git a/browser/branding/official/stubinstaller/installing_page.css b/browser/branding/official/stubinstaller/installing_page.css
new file mode 100644
index 0000000000..5704eb3b3e
--- /dev/null
+++ b/browser/branding/official/stubinstaller/installing_page.css
@@ -0,0 +1,87 @@
+/* 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/. */
+
+body {
+ color: black;
+}
+
+/*
+ * We want to treat the two pieces of text in the left column as one unit and
+ center that unit vertically in the window. In order to make IE8 do that,
+ we have to wrap the two bits of text in a container and make that a
+ table-cell (which means we need an outer container that's display: table).
+ So that's what this mess is doing.
+ */
+#text_column {
+ position: fixed;
+ height: 100%;
+ margin-left: 30px;
+ width: 40%;
+ display: table;
+}
+
+#text_column_container {
+ display: table-cell;
+ vertical-align: middle;
+ padding-top: 60px;
+}
+
+#header {
+ font-size: 24px;
+ font-weight: 800;
+ margin-top: 0;
+}
+
+#content {
+ font-size: 22px;
+}
+
+#installing {
+ position: fixed;
+ right: 30px;
+ bottom: 55%;
+ margin-top: auto;
+ margin-bottom: auto;
+ width: 35%;
+}
+
+#label {
+ color: white;
+
+ position: relative;
+ top: 50px;
+
+ text-align: center;
+ font-size: 20px;
+}
+
+#progress_background {
+ width: 100%;
+ height: 20px;
+ background-color: white;
+}
+
+body.high-contrast #progress_background {
+ outline: solid;
+}
+
+#progress_bar {
+ margin: 0;
+ width: 0%;
+ height: 100%;
+ background-color: #00AAFF;
+}
+
+/* In high contrast mode, fill the entire progress bar with its border. */
+body.high-contrast #progress_bar {
+ /* This border should be the height of progress_background. */
+ border-top: 20px solid;
+ box-sizing: border-box;
+}
+
+/* No blurb or footer for this layout. */
+#blurb,
+#footer {
+ visibility: hidden;
+}
diff --git a/browser/branding/official/stubinstaller/profile_cleanup_page.css b/browser/branding/official/stubinstaller/profile_cleanup_page.css
new file mode 100644
index 0000000000..a8dbad0e11
--- /dev/null
+++ b/browser/branding/official/stubinstaller/profile_cleanup_page.css
@@ -0,0 +1,75 @@
+/* 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/. */
+
+body {
+ color: black;
+}
+
+/*
+ * We want to treat the two pieces of text in the left column as one unit and
+ center that unit vertically in the window. In order to make IE8 do that,
+ we have to wrap the two bits of text in a container and make that a
+ table-cell (which means we need an outer container that's display: table).
+ So that's what this mess is doing.
+ */
+#profileRefreshForm {
+ position: fixed;
+ height: 100%;
+ margin-left: 30px;
+ width: 40%;
+ display: table;
+}
+
+#profileRefreshContainer {
+ display: table-cell;
+ vertical-align: middle;
+}
+
+#refreshCheckboxContainer,
+#refreshButtonContainer {
+ margin-top: 20px;
+}
+
+#header {
+ font-size: 25px;
+ font-weight: 600;
+}
+
+#refreshCheckboxContainer {
+ position: relative;
+}
+
+#refreshCheckbox {
+ position: absolute;
+ top: 1px;
+}
+
+#checkboxLabel {
+ font-size: 14px;
+ display: block;
+}
+
+.checkboxLabel-ltr {
+ margin-left: 25px;
+}
+
+.checkboxLabel-rtl {
+ margin-right: 25px;
+}
+
+#refreshButton {
+ padding: 8px 70px;
+ font-size: 16px;
+ background: #005ccc;
+ color: white;
+}
+
+body.normal-contrast #refreshButton {
+ border: none;
+}
+
+/* No footer for this layout. */
+#footer {
+ visibility: hidden;
+}