Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <!-- | 2 <!-- |
3 - This file is part of Adblock Plus <https://adblockplus.org/>, | 3 - This file is part of Adblock Plus <https://adblockplus.org/>, |
juliandoucette
2017/10/30 15:30:11
This file isn't part of adblockplus.org
martin
2017/11/03 10:02:15
Hmm it looks like this comment block is in every .
juliandoucette
2017/11/03 11:06:05
I was mistaken.
| |
4 - Copyright (C) 2006-present eyeo GmbH | 4 - Copyright (C) 2006-present eyeo GmbH |
5 - | 5 - |
6 - Adblock Plus is free software: you can redistribute it and/or modify | 6 - Adblock Plus is free software: you can redistribute it and/or modify |
7 - it under the terms of the GNU General Public License version 3 as | 7 - it under the terms of the GNU General Public License version 3 as |
8 - published by the Free Software Foundation. | 8 - published by the Free Software Foundation. |
9 - | 9 - |
10 - Adblock Plus is distributed in the hope that it will be useful, | 10 - Adblock Plus is distributed in the hope that it will be useful, |
11 - but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 - but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 - GNU General Public License for more details. | 13 - GNU General Public License for more details. |
14 - | 14 - |
15 - You should have received a copy of the GNU General Public License | 15 - You should have received a copy of the GNU General Public License |
16 - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 16 - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
17 --> | 17 --> |
18 | 18 |
19 <html> | 19 <html> |
20 <head> | 20 <head> |
21 <title class="i18n_firstRun_title"></title> | 21 <title class="i18n_updates_status"></title> |
22 <meta charset="utf-8" /> | 22 <meta charset="utf-8" /> |
23 <meta name="viewport" content="width=device-width, initial-scale=1" /> | 23 <meta name="viewport" content="width=device-width, initial-scale=1" /> |
24 <link type="text/css" href="skin/common.css" rel="stylesheet" /> | 24 <link href="skin/updates.css" rel="stylesheet"/> |
25 <link type="text/css" href="skin/defaults.css" rel="stylesheet" /> | 25 <script src="polyfill.js"></script> |
juliandoucette
2017/10/30 15:30:11
You didn't upload default.css with this review or
martin
2017/11/03 10:02:14
I actually removed the default.css dependency as I
| |
26 <link type="text/css" href="skin/updates.css" rel="stylesheet"/> | 26 <script src="ext/common.js"></script> |
27 <script type="text/javascript" src="polyfill.js"></script> | 27 <script src="ext/content.js"></script> |
28 <script type="text/javascript" src="ext/common.js"></script> | 28 <script src="common.js"></script> |
29 <script type="text/javascript" src="ext/content.js"></script> | 29 <script src="i18n.js"></script> |
30 <script type="text/javascript" src="common.js"></script> | 30 <script src="updates.js"></script> |
31 <script type="text/javascript" src="i18n.js"></script> | 31 </head> |
32 </head> | |
33 | 32 |
34 <body> | 33 <body> |
35 | 34 |
36 <main> | 35 <main> |
juliandoucette
2017/10/30 15:30:11
<main> has no heading. I suggest that you use the
martin
2017/11/03 10:02:14
First <section> is now a <header> element.
| |
37 | 36 <div id="container"> |
38 <div class="container content full-width-container"> | 37 |
juliandoucette
2017/10/30 15:30:11
.container and .full-width-container are contradic
martin
2017/11/03 10:02:14
Ended up simply creating an id called "container".
| |
39 | 38 <header class="column graphic-column"> |
40 <div class="row"> | 39 <div class="update-graphic-container"> |
40 <div class="update-graphic-content"> | |
41 <img src="/skin/abp-logo.svg"/> | |
42 <div class="version-details"> | |
43 <h2 class="i18n_updates_status"></h2> | |
44 </div> | |
45 | |
46 </div> | |
47 </header> | |
48 | |
49 <section class="column content-column"> | |
50 | |
51 <div id="content"> | |
52 | |
53 <header> | |
54 <h1 class="i18n_updates_heading"></h1> | |
55 <p class="i18n_updates_subheading"></p> | |
56 </header> | |
57 | |
58 <article class="feature-entry"> | |
59 <img class="feature-icon" src="/skin/updates/icon-rocket.svg"/> | |
60 <p id="options-page-news" class="i18n_updates_optionsPageNews">< /p> | |
61 </article> | |
62 | |
63 <article class="feature-entry"> | |
64 <img class="feature-icon" src="/skin/updates/icon-thumbs-up.svg" /> | |
65 <p id="block-ads-text" class="i18n_updates_blockAds"></p> | |
66 </article> | |
67 | |
68 <article class="custom-feature-entry"> | |
69 <h2 class="i18n_updates_phone"></h2> | |
70 | |
71 <div class="feature-entry"> | |
72 <img class="feature-icon" src="/skin/updates/icon-mobile.svg"/ > | |
73 <p id="adblock-browser-text" class="i18n_updates_adblockBrowse r"></p> | |
74 </div> | |
75 | |
76 <div class="store-buttons"> | |
77 <a id="adblock-browser-ios-store" class="store-button applesto re-button" target="_blank"> | |
78 <img src="skin/updates/appstore-bg.svg" alt="apple store but ton"> | |
79 </a> | |
80 <a id="adblock-browser-android-store" class="store-button goog leplay-button" target="_blank"> | |
81 <img src="skin/updates/googleplay-bg.svg" alt="google play s tore button"> | |
82 </a> | |
83 </div> | |
41 | 84 |
42 <section class="column graphic-column"> | 85 </article> |
43 <div class="update-graphic-container"> | |
44 <div class="update-graphic-content"> | |
45 <img src="/skin/updates-page/abp-logo.svg" alt="adbl ock-plus-logo"/> | |
46 <div class="version-details"> | |
47 <h2>Update Complete</h2> | |
48 <span>v1.13.4</span> | |
49 </div> | |
50 | 86 |
51 </div> | |
52 </section> | |
53 | |
54 <section class="column content-column"> | |
55 | |
56 <div class="content-column-entries"> | |
57 | |
58 <hgroup> | |
59 <h1>Adblock Plus has been updated!</h1> | |
60 <h2>What's new?</h2> | |
juliandoucette
2017/10/30 15:30:11
NIT: It's recommended to use header instead of hgr
martin
2017/11/03 10:02:13
Oh I've done this so many times, didn't realise it
| |
61 </hgroup> | |
62 | |
63 <div class="feature-entry"> | |
juliandoucette
2017/10/30 15:30:10
Suggest: I think these could be <article>s
martin
2017/11/03 10:02:13
feature-entries are now <article>s
| |
64 <img class="feature-icon" src="/skin/updates-page/ic on-rocket.svg" alt="rocket-icon"/> | |
65 <p>All new Options page - revamped and restyled - so it’s easier to customize Adblock Plus just like you want it. <a href="#">Check it out for yourself</a>.</p> | |
juliandoucette
2017/10/30 15:30:10
NIT: I think the first text could be an inline hea
martin
2017/11/03 10:02:14
I totally get what you mean, however I don't want
juliandoucette
2017/11/03 11:06:05
Ack. I think that these should only be <article>s
| |
66 </div> | |
67 | |
68 <div class="feature-entry"> | |
69 <img class="feature-icon" src="/skin/updates-page/ic on-thumbs-up.svg" alt="thumbs-up-icon"/> | |
70 <p>Block ads on Facebook again! New blocking tech al lows for fast fixes in case <strike>the Empire</strike> Facebook strikes back.</ p> | |
71 </div> | |
72 | |
73 <div class="custom-feature-entry"> | |
74 <h2>But what about your phone?</h2> | |
75 <div class="feature-entry"> | |
76 <img class="feature-icon" src="/skin/updates-pag e/icon-mobile.svg" alt="thumbs-up-icon"/> | |
juliandoucette
2017/10/30 15:30:10
NIT: The phone alignment looks weird. Maybe align
martin
2017/11/03 10:02:13
It doesn't look that bad to me TBH. Every other ic
juliandoucette
2017/11/03 11:06:06
Acknowledged.
Looks fine to me on second glance :
| |
77 <p>If you like taking control on desktop, you ca n block ads and improve your privacy and security on mobile, too. Get the Adbloc k Browser App below.</p> | |
78 </div> | |
79 <div class="store-buttons"> | |
80 <a href="" class="store-button applestore-button "> | |
81 <img src="skin/updates-page/appstore-bg.svg" alt="apple store button"> | |
82 </a> | |
83 <a href="" class="store-button googleplay-button "> | |
84 <img src="skin/updates-page/googleplay-bg.sv g" alt="google play store button"> | |
85 </a> | |
86 </div> | |
87 </div> | |
88 | |
89 </div> | |
90 | |
91 </section> | |
92 | |
93 </div> | 87 </div> |
94 | 88 |
89 </section> | |
90 | |
95 </div> | 91 </div> |
96 | |
97 </main> | |
98 | |
99 </body> | |
100 | 92 |
101 </html> | 93 </main> |
94 | |
95 </body> | |
96 | |
97 </html> | |
LEFT | RIGHT |