Skip to content

Commit 987eb12

Browse files
Update wordmarks and logos (#15975)
* Replace Mozilla logo on contribute page * Replace mozm trademark with symbol trademark * Replace mozilla 256 with m24 og * Remove images now hidden by switch logic * Move m24 favicons to root of folder * Update careers images * Remove old m styling in vpn heart image * Replace updated newsletter card image * Update location copy Images could be offices or coworking spaces * Optimize careers footer image * Fix images in updated newsletter cards
1 parent d419b52 commit 987eb12

38 files changed

+33
-49
lines changed

app.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Demo deployments for changes to Mozilla Bedrock.",
44
"website": "https://www.mozilla.org",
55
"repository": "https://github.com/mozilla/bedrock",
6-
"logo": "https://www.mozilla.org/media/img/mozorg/mozilla-256.jpg",
6+
"logo": "https://www.mozilla.org/media/img/m24/og.png",
77
"success_url": "/healthz-cron/",
88
"stack": "container",
99
"env": {

bedrock/base/templates/base-error.html

+1-5
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,7 @@
1616
<div class="mzp-l-content">
1717
<div class="header-image">
1818
<a class="logo-mozilla" href="{{ url('mozorg.home') }}">
19-
{% if switch('m24-website-refresh') %}
20-
<img class="c-navigation-logo-image m24-logo" src="{{ static('img/logos/m24/lockup-black.svg') }}" alt="{{ ftl('error-page-mozilla') }}" width="192" height="46">
21-
{% else %}
22-
<img class="c-navigation-logo-image" src="{{ static('protocol/img/logos/mozilla/logo-word-hor.svg') }}" alt="{{ ftl('error-page-mozilla') }}" width="140">
23-
{% endif %}
19+
<img class="c-navigation-logo-image m24-logo" src="{{ static('img/logos/m24/lockup-black.svg') }}" alt="{{ ftl('error-page-mozilla') }}" width="192" height="46">
2420
</a>
2521
<a class="logo-firefox" href="{{ url('firefox') }}"><img src="{{ static('protocol/img/logos/firefox/logo-word-hor.svg') }}" alt="{{ ftl('error-page-firefox') }}" width="140"></a>
2622
</div>

bedrock/base/templates/base-protocol.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<meta property="og:site_name" content="Mozilla">
3535
<meta property="og:locale" content="{{ LANG|replace("-", "_") }}">
3636
<meta property="og:url" content="{% filter trim|absolute_url %}{% block page_og_url %}{{ settings.CANONICAL_URL + '/' + LANG + canonical_path }}{% endblock %}{% endfilter %}">
37-
<meta property="og:image" content="{% filter trim|absolute_url %}{% block page_image %}{% if switch('m24-website-refresh') %}{{ static('img/m24/og.png') }}{% else %}{{ static('img/mozorg/mozilla-256.jpg') }}{% endif %}{% endblock %}{% endfilter %}">
37+
<meta property="og:image" content="{% filter trim|absolute_url %}{% block page_image %}{{ static('img/m24/og.png') }}{% endblock %}{% endfilter %}">
3838
<meta property="og:title" content="{% filter striptags %}{% block page_og_title %}{{ self.page_title_full() }}{% endblock %}{% endfilter %}">
3939
<meta property="og:description" content="{% filter striptags %}{% block page_og_desc %}{{ self.page_desc() }}{% endblock %}{% endfilter %}">
4040
<meta property="fb:page_id" content="{% block facebook_id %}262134952380{# facebook.com/mozilla #}{% endblock %}">
@@ -47,9 +47,9 @@
4747
<meta name="twitter:app:id:iphone" content="{% block iphone_app_id %}989804926{% endblock %}">
4848
<meta name="twitter:app:name:ipad" content="{% block ipad_app_name %}Firefox{% endblock %}">
4949
<meta name="twitter:app:id:ipad" content="{% block ipad_app_id %}989804926{% endblock %}">
50-
<link rel="apple-touch-icon" type="image/png" sizes="180x180" href="{% block page_ios_icon %}{% if switch('m24-website-refresh') %}{{ static('img/favicons/mozilla/m24/apple-touch-icon.png') }}{% else %}{{ static('img/favicons/mozilla/apple-touch-icon.png') }}{% endif %}{% endblock %}">
51-
<link rel="icon" type="image/png" sizes="196x196" href="{% block page_favicon_large %}{% if switch('m24-website-refresh') %}{{ static('img/favicons/mozilla/m24/favicon-196x196.png') }}{% else %}{{ static('img/favicons/mozilla/favicon-196x196.png') }}{% endif %}{% endblock %}">
52-
<link rel="shortcut icon" href="{% block page_favicon %}{% if switch('m24-website-refresh') %}{{ static('img/favicons/mozilla/m24/favicon.ico') }}{% else %}{{ static('img/favicons/mozilla/favicon.ico') }}{% endif %}{% endblock %}">
50+
<link rel="apple-touch-icon" type="image/png" sizes="180x180" href="{% block page_ios_icon %}{{ static('img/favicons/mozilla/apple-touch-icon.png') }}{% endblock %}">
51+
<link rel="icon" type="image/png" sizes="196x196" href="{% block page_favicon_large %}{{ static('img/favicons/mozilla/favicon-196x196.png') }}{% endblock %}">
52+
<link rel="shortcut icon" href="{% block page_favicon %}{{ static('img/favicons/mozilla/favicon.ico') }}{% endblock %}">
5353
{% block canonical_urls %}{% include 'includes/canonical-url.html' %}{% endblock %}
5454
{% endblock shared_meta %}
5555
{# keep the verification for the previous official mastodon profile #}

bedrock/base/templates/includes/protocol/navigation/navigation.html

-4
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,7 @@
2222
<button class="c-navigation-menu-button" type="button" aria-controls="c-navigation-items" data-testid="navigation-menu-button">{{ ftl('navigation-v2-menu') }}</button>
2323
<div class="c-navigation-logo">
2424
<a href="{{ url('mozorg.home') }}" data-link-text="mozilla home icon" data-link-position="nav">
25-
{% if switch('m24-website-refresh') %}
2625
<img class="c-navigation-logo-image m24-logo" src="{{ static('img/logos/m24/lockup-black.svg') }}" alt="{{ logo_alt }}" width="88" height="21">
27-
{% else %}
28-
<img class="c-navigation-logo-image" src="{{ static('protocol/img/logos/mozilla/logo-word-hor.svg') }}" alt="{{ logo_alt }}" width="112" height="32">
29-
{% endif %}
3026
</a>
3127
</div>
3228

bedrock/careers/templates/careers/includes/footer.html

+4-5
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,11 @@
1010
media_class='mzp-l-split-h-center mzp-l-split-media-overflow',
1111
media_include='careers/includes/big-picture-video.html',
1212
image=resp_img(
13-
url='img/careers/footer-remote.png',
14-
srcset={
15-
'img/careers/footer-remote-high-res.png': '2x'
16-
},
13+
url='img/careers/footer-remote-cropped.svg',
1714
optional_attributes={
18-
'class': 'mzp-c-split-media-asset'
15+
'class': 'mzp-c-split-media-asset',
16+
'width': '540',
17+
'height': '414'
1918
}
2019
),
2120
media_after=True

bedrock/careers/templates/careers/locations.html

+11-11
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ <h2 class="c-careers-section-title">
4444
our offices for collaborative and cultural activities that most benefit
4545
from being face-to-face — for planning, product design sprints,
4646
hackathons and more. </p>
47-
<p>Our coworking spaces span across 9 cities: San Francisco, San Mateo, London, Paris, Portland, Tulsa, Vancouver, Chicago, and Bellevue.</p>
47+
<p>We have offices or coworking spaces in a number of locales, including San Francisco, San Mateo, Berlin, Toronto, New York, Paris, London, Bellevue/Seattle, Austin, Tulsa, Chicago and Vancouver.</p>
4848
</div>
4949

5050
<ul class="c-careers-locations-list">
@@ -58,6 +58,14 @@ <h2 class="c-careers-section-title">
5858
</span>
5959

6060
</li>
61+
<li>
62+
<div class="c-careers-locations-image-wrapper">
63+
<img src="{{ static('img/careers/locations/mozilla-paris.png') }}" alt="" width="200" height="200">
64+
</div>
65+
<span>
66+
Paris
67+
</span>
68+
</li>
6169
<li>
6270
<div class="c-careers-locations-image-wrapper">
6371
<img src="{{ static('img/careers/locations/mozilla-toronto.png') }}" alt="" width="200" height="200">
@@ -68,18 +76,10 @@ <h2 class="c-careers-section-title">
6876
</li>
6977
<li>
7078
<div class="c-careers-locations-image-wrapper">
71-
<img src="{{ static('img/careers/locations/mozilla-remote.png') }}" alt="" width="200" height="200">
72-
</div>
73-
<span>
74-
Remote
75-
</span>
76-
</li>
77-
<li>
78-
<div class="c-careers-locations-image-wrapper">
79-
<img src="{{ static('img/careers/locations/mozilla-coworking-space.png') }}" alt="" width="200" height="200">
79+
<img src="{{ static('img/careers/locations/mozilla-san-francisco.png') }}" alt="" width="200" height="200">
8080
</div>
8181
<span>
82-
Coworking Spaces
82+
San Francisco
8383
</span>
8484
</li>
8585
</ul>

bedrock/mozorg/tests/test_helper_misc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ class TestAbsoluteURLFilter(TestCase):
543543
static_url_dev = "/static/"
544544
static_url_prod = "//mozorg.cdn.mozilla.net/static/"
545545
static_url_full = "https://mozorg.cdn.mozilla.net/static/"
546-
image_path = "img/mozorg/mozilla-256.jpg"
546+
image_path = "img/m24/og.png"
547547
inline_template = "{{ static('%s')|absolute_url }}" % image_path
548548
block_template = "{% filter absolute_url %}{% block page_image %}" + "{{ static('%s') }}" % image_path + "{% endblock %}{% endfilter %}"
549549

bedrock/newsletter/templates/newsletter/updated.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ <h2 class="c-updated-block-header">
141141
ga_title='Meet our parent brand',
142142
desc=ftl('newsletters-mozilla-the-non-for-profit'),
143143
cta=ftl('ui-learn-more'),
144-
image=resp_img('img/newsletter/confirm/mozilla.png', optional_attributes={"loading": "lazy", "class": "mzp-c-card-image"}),
144+
image=resp_img('img/m24/og-16-9.png', optional_attributes={"loading": "lazy", "class": "mzp-c-card-image"}),
145145
aspect_ratio='mzp-has-aspect-16-9',
146146
link_url=url('mozorg.about.index'),
147147
)}}
@@ -177,7 +177,7 @@ <h2 class="c-updated-block-header">{{ ftl('newsletters-while-here-why-not-check'
177177
ga_title='About us',
178178
desc=ftl('newsletters-whats-mozilla-all-about'),
179179
cta=ftl('newsletters-were-glad-you-asked'),
180-
image=resp_img('img/newsletter/confirm/mozilla.png', optional_attributes={"loading": "lazy", "class": "mzp-c-card-image"}),
180+
image=resp_img('img/m24/og-16-9.png', optional_attributes={"loading": "lazy", "class": "mzp-c-card-image"}),
181181
aspect_ratio='mzp-has-aspect-16-9',
182182
link_url=url('mozorg.about.index'),
183183
)}}

bedrock/privacy/templates/privacy/archive/base-resp.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
data-details-close-text="{{ ftl('ui-show-less') }}"
1414
{% endblock %}
1515

16-
{% block article_header_logo %}{{ static('img/trademarks/logo-mozm.png') }}{% endblock %}
16+
{% block article_header_logo %}{{ static('img/trademarks/symbol.svg') }}{% endblock %}
1717

1818
{% block side_extra %}
1919
<section id="side-archives" class="side-reference">

bedrock/privacy/templates/privacy/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
{% block body_class %}mzp-t-mozilla format-none{% endblock%}
1313
{% block body_id %}privacy-landing{% endblock %}
1414

15-
{% block article_header_logo %}{{ static('img/trademarks/logo-mozm.png') }}{% endblock %}
15+
{% block article_header_logo %}{{ static('img/trademarks/symbol.svg') }}{% endblock %}
1616

1717
{% do doc.select('body > section > section ul')|htmlattr(class="mzp-u-list-styled") %}
1818
{% do doc.select('body > section > section ol')|htmlattr(class="mzp-u-list-styled") %}

bedrock/privacy/templates/privacy/notices/ad-targeting-guidelines.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88

99
{% block body_class %}mzp-t-mozilla format-paragraphs{% endblock%}
1010

11-
{% block article_header_logo %}{{ static('img/trademarks/logo-mozm.png') }}{% endblock %}
11+
{% block article_header_logo %}{{ static('img/trademarks/symbol.svg') }}{% endblock %}

bedrock/privacy/templates/privacy/notices/mozilla-accounts.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88

99
{% set body_id = "mozilla-accounts" %}
1010

11-
{% block article_header_logo %}{{ static('img/trademarks/logo-mozm.png') }}{% endblock %}
11+
{% block article_header_logo %}{{ static('img/trademarks/symbol.svg') }}{% endblock %}

bedrock/privacy/templates/privacy/notices/subscription-services.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88

99
{% set body_id = "subscription-services" %}
1010

11-
{% block article_header_logo %}{{ static('img/trademarks/logo-mozm.png') }}{% endblock %}
11+
{% block article_header_logo %}{{ static('img/trademarks/symbol.svg') }}{% endblock %}

bedrock/privacy/templates/privacy/notices/websites.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
{% set body_id = "privacy-websites" %}
1010
{% block body_class %}mzp-t-mozilla format-paragraphs{% endblock%}
1111

12-
{% block article_header_logo %}{{ static('img/trademarks/logo-mozm.png') }}{% endblock %}
12+
{% block article_header_logo %}{{ static('img/trademarks/symbol.svg') }}{% endblock %}
1313

1414
{# disable GA on the websites privacy policy. Bug 1576673 #}
1515
{% block google_analytics %}{% endblock %}

media/css/mozorg/contribute.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ $image-path: '/media/protocol/img';
390390
}
391391

392392
&.contribute-mission-learn-icon::before {
393-
background-image: url('/media/img/contribute/icon/M.svg');
393+
background-image: url('/media/img/logos/m24/symbol-black.svg');
394394
}
395395

396396
&.contribute-mission-event-icon::before {

media/img/careers/footer-remote-cropped.svg

+1
Loading
-45.8 KB
Binary file not shown.

media/img/careers/footer-remote.png

-40.1 KB
Binary file not shown.
809 Bytes
Loading
Binary file not shown.
22.3 KB
Loading
-25.6 KB
Binary file not shown.
Loading
1.35 KB
Loading

media/img/contribute/icon/M.svg

-4
This file was deleted.
-642 Bytes
Loading
-312 Bytes
Binary file not shown.
-659 Bytes
Loading
-453 Bytes
Binary file not shown.
-5.86 KB
Binary file not shown.
-939 Bytes
Binary file not shown.
-467 Bytes
Binary file not shown.
-591 Bytes
Binary file not shown.
-1.38 KB
Binary file not shown.

media/img/m24/og-16-9.png

8.44 KB
Loading

media/img/mozorg/mozilla-256.jpg

-4.62 KB
Binary file not shown.
-90.9 KB
Binary file not shown.
Loading

0 commit comments

Comments
 (0)