Skip to content

Commit 4b075c0

Browse files
committed
Fix up styling on outdated page
1 parent f147107 commit 4b075c0

2 files changed

Lines changed: 16 additions & 5 deletions

File tree

start-page/_base-resp.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<title>{% filter striptags|e %}{% block title %}{% endblock %}{% endfilter %}</title>
1111
{{ l10n_css() }}
1212
<link href="/media/css/start-style.css" rel="stylesheet" type="text/css" />
13+
{% block additional_head %}{% endblock %}
1314
</head>
1415
<body class="start-bg">
1516
<main>

start-page/outdated/index.html

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# License, v. 2.0. If a copy of the MPL was not distributed with this
33
# file, You can obtain one at http://mozilla.org/MPL/2.0/. -#}
44

5-
{% extends "_new-base-resp.html" %}
5+
{% extends "_base-resp.html" %}
66

77
{% block channel %}release{% endblock %}
88
{% block title %}{{ _('Your Thunderbird is Not Up-to-Date!') }}{% endblock %}
@@ -11,8 +11,9 @@
1111
<style>
1212
body {
1313
background-image: none;
14-
background-color: #D46A6A;
15-
color: #000;
14+
background-color: #991b1b;
15+
color: #f1f3fa;
16+
text-shadow: 1px 1px 0 black;;
1617
text-align: center;
1718
}
1819

@@ -26,7 +27,16 @@
2627
top: 8px;
2728
width: 32px;
2829
height: 32px;
29-
color: #0060df;
30+
color: #88ccfc;
31+
}
32+
a {
33+
text-decoration: underline !important;
34+
color: #88ccfc;
35+
}
36+
a:visited {
37+
color: #88ccfc;
38+
text-decoration: underline !important;
39+
3040
}
3141
</style>
3242
{% endblock %}
@@ -40,7 +50,7 @@ <h2 id="duration">{{ _('Your version, $vers, is no longer a supported Thunderbir
4050
<a href="%(download_url)s">latest stable version of Thunderbird</a>.')|format(download_url='https://thunderbird.net') }}
4151
</p>
4252
<p>{{ _('For more information, please check this
43-
<a href="%(support_url)s">support article</a> on upgrading old versions.')|format(support_url='https://support.mozilla.org/en-US/products/thunderbird') }}
53+
<a href="%(support_url)s">support article</a> on upgrading old versions.')|format(support_url=url('support.old-version-upgrade')) }}
4454
</p>
4555
</section>
4656
</div>

0 commit comments

Comments
 (0)