diff options
Diffstat (limited to 'branding/unstable/content')
-rw-r--r-- | branding/unstable/content/about-background.jpg | bin | 0 -> 115006 bytes | |||
-rw-r--r-- | branding/unstable/content/about-logo.png | bin | 0 -> 42470 bytes | |||
-rw-r--r-- | branding/unstable/content/about-logo@2x.png | bin | 0 -> 120348 bytes | |||
-rw-r--r-- | branding/unstable/content/about-wordmark.png | bin | 0 -> 11708 bytes | |||
-rw-r--r-- | branding/unstable/content/about.png | bin | 0 -> 55384 bytes | |||
-rw-r--r-- | branding/unstable/content/aboutDialog.css | 53 | ||||
-rw-r--r-- | branding/unstable/content/icon48.png | bin | 0 -> 4855 bytes | |||
-rw-r--r-- | branding/unstable/content/icon64.png | bin | 0 -> 6531 bytes | |||
-rw-r--r-- | branding/unstable/content/jar.mn | 16 | ||||
-rw-r--r-- | branding/unstable/content/moz.build | 7 |
10 files changed, 76 insertions, 0 deletions
diff --git a/branding/unstable/content/about-background.jpg b/branding/unstable/content/about-background.jpg Binary files differnew file mode 100644 index 0000000..a33b331 --- /dev/null +++ b/branding/unstable/content/about-background.jpg diff --git a/branding/unstable/content/about-logo.png b/branding/unstable/content/about-logo.png Binary files differnew file mode 100644 index 0000000..aa79de6 --- /dev/null +++ b/branding/unstable/content/about-logo.png diff --git a/branding/unstable/content/about-logo@2x.png b/branding/unstable/content/about-logo@2x.png Binary files differnew file mode 100644 index 0000000..5d507a6 --- /dev/null +++ b/branding/unstable/content/about-logo@2x.png diff --git a/branding/unstable/content/about-wordmark.png b/branding/unstable/content/about-wordmark.png Binary files differnew file mode 100644 index 0000000..bf09f15 --- /dev/null +++ b/branding/unstable/content/about-wordmark.png diff --git a/branding/unstable/content/about.png b/branding/unstable/content/about.png Binary files differnew file mode 100644 index 0000000..d158863 --- /dev/null +++ b/branding/unstable/content/about.png diff --git a/branding/unstable/content/aboutDialog.css b/branding/unstable/content/aboutDialog.css new file mode 100644 index 0000000..de71f25 --- /dev/null +++ b/branding/unstable/content/aboutDialog.css @@ -0,0 +1,53 @@ +/* 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/. */ + +#aboutPMDialogContainer { + background-image: url("chrome://branding/content/about-background.jpg"); + background-repeat: no-repeat; + background-color: #D5BC9A; + color: #202010; +} + +#aboutHeaderBox { + background-image: url("chrome://branding/content/about-wordmark.png"); + background-repeat: no-repeat; + background-position: center center; + height: 44px; +} + +#aboutVersionBox { + text-shadow: 1px 1px 0px #D5BC9A; +} + +#aboutTextBox { + animation: 3s fadeIn; + animation-fill-mode: forwards; + text-shadow: 1px 1px 0px #D5BC9A; + color: #202010; +} + +@keyframes fadeIn { + 0% { + opacity: 0; + } + 50% { + opacity: 0; + } + 100% { + opacity: 1; + } +} + +#aboutLinkBox { + padding: 15px 10px 0; +} + +#aboutPMtrademark { + font-size: 10px; + text-align: center; + color: #C0C0C0; + text-shadow: 1px 1px 0px #000000; + margin-top: 10px; + margin-bottom: 10px; +} diff --git a/branding/unstable/content/icon48.png b/branding/unstable/content/icon48.png Binary files differnew file mode 100644 index 0000000..9572134 --- /dev/null +++ b/branding/unstable/content/icon48.png diff --git a/branding/unstable/content/icon64.png b/branding/unstable/content/icon64.png Binary files differnew file mode 100644 index 0000000..c370f33 --- /dev/null +++ b/branding/unstable/content/icon64.png diff --git a/branding/unstable/content/jar.mn b/branding/unstable/content/jar.mn new file mode 100644 index 0000000..fcb7890 --- /dev/null +++ b/branding/unstable/content/jar.mn @@ -0,0 +1,16 @@ +# 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/. + +browser.jar: +% content branding %content/branding/ contentaccessible=yes + content/branding/about.png (about.png) + content/branding/about-background.jpg (about-background.jpg) + content/branding/about-logo.png (about-logo.png) + content/branding/about-logo@2x.png (about-logo@2x.png) + content/branding/about-wordmark.png (about-wordmark.png) + content/branding/icon48.png (icon48.png) + content/branding/icon64.png (icon64.png) + content/branding/icon16.png (../default16.png) + content/branding/icon32.png (../default32.png) + content/branding/aboutDialog.css (aboutDialog.css) diff --git a/branding/unstable/content/moz.build b/branding/unstable/content/moz.build new file mode 100644 index 0000000..c97072b --- /dev/null +++ b/branding/unstable/content/moz.build @@ -0,0 +1,7 @@ +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- +# vim: set filetype=python: +# 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/. + +JAR_MANIFESTS += ['jar.mn']
\ No newline at end of file |