Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: pages/subscriptions.tmpl

Issue 29337807: Issue 3097 - Refactored subscriptions list table on adblockplus.org/en/subscriptions (Closed)
Left Patch Set: Refactored markup & styles, added rtl styles, and fixed typo. Created July 19, 2016, 10:26 p.m.
Right Patch Set: Removed extra whitespace Created July 29, 2016, 10:52 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « includes/subscriptionList.tmpl ('k') | static/css/main.css » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 title=Known Adblock Plus subscriptions 1 title=Known Adblock Plus subscriptions
2 {# 2 {#
3 # This file is part of the Adblock Plus website, 3 # This file is part of the Adblock Plus website,
4 # Copyright (C) 2006-2016 Eyeo GmbH 4 # Copyright (C) 2006-2016 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 19
20 <style type="text/css"> 20 <style type="text/css">
21 .screen-reader-text
22 {
23 clip: rect(1px, 1px, 1px, 1px);
Thomas Greiner 2016/07/27 09:42:10 According to https://developer.mozilla.org/en-US/d
juliandoucette 2016/07/27 12:11:01 I agree. I vote: Leave the text and remove the c
Thomas Greiner 2016/07/27 13:25:48 Yep, sounds good. :)
juliandoucette 2016/07/28 21:34:01 Done.
24 position: absolute;
25 }
26
27 .subscriptions-list, 21 .subscriptions-list,
28 .supplemented-subscriptions-list 22 .supplemented-subscriptions-list
29 { 23 {
30 margin: 0px; 24 margin: 0px;
31 list-style: none; 25 list-style: none;
32 } 26 }
33 27
34 .subscriptions-list 28 .subscriptions-list
35 { 29 {
36 padding: 0px; 30 padding: 0px;
37 } 31 }
38 32
39 .supplemented-subscriptions-list 33 .supplemented-subscriptions-list
40 { 34 {
41 padding: 0px 0px 0px 30px; 35 padding: 0px 0px 0px 30px;
Thomas Greiner 2016/07/27 09:42:10 Note that since you're using `[dir="rtl"]` below f
juliandoucette 2016/07/27 12:11:01 I switched it to short hand to avoid defining a pa
42 } 36 }
43 37
44 [dir="rtl"] .supplemented-subscriptions-list 38 [dir="rtl"] .supplemented-subscriptions-list
45 { 39 {
46 padding: 0px 30px 0px 0px; 40 padding: 0px 30px 0px 0px;
47 } 41 }
48 42
49 .subscription 43 .subscription
50 { 44 {
51 position: relative; 45 position: relative;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 {% from "includes/subscriptionList" import display_subscriptions %} 112 {% from "includes/subscriptionList" import display_subscriptions %}
119 113
120 {{ display_subscriptions(get_subscriptions()) }} 114 {{ display_subscriptions(get_subscriptions()) }}
121 115
122 116
123 <p>{{"Can't see your filter list here? <a href=\"mailto:subscriptionlist@adblock plus.org\">Send</a> the information you would like to be displayed here. Please note that in order to be included in this list your subscription must contain a comment at the beginning describing the origin of the filter list and the prefer red way of contacting you if problems with your list occur. You should also be c ertain that when these issues arise you will be able to fix them in a reasonable amount of time."|translate("s2")}}</p> 117 <p>{{"Can't see your filter list here? <a href=\"mailto:subscriptionlist@adblock plus.org\">Send</a> the information you would like to be displayed here. Please note that in order to be included in this list your subscription must contain a comment at the beginning describing the origin of the filter list and the prefer red way of contacting you if problems with your list occur. You should also be c ertain that when these issues arise you will be able to fix them in a reasonable amount of time."|translate("s2")}}</p>
124 118
125 <p> 119 <p>
126 {{"Please note that all of these filter lists are being maintained by third part ies. Eyeo, the company behind Adblock Plus, has no control over them.\nWe are on ly listing them to help you find lists that could be useful to you.\nIn no case shall Eyeo be held liable towards you or any other third party for any loss or d amage (including but not limited to loss of chances and of business) deriving di rectly or indirectly from your use of these lists."|translate("s3")}} 120 {{"Please note that all of these filter lists are being maintained by third part ies. Eyeo, the company behind Adblock Plus, has no control over them.\nWe are on ly listing them to help you find lists that could be useful to you.\nIn no case shall Eyeo be held liable towards you or any other third party for any loss or d amage (including but not limited to loss of chances and of business) deriving di rectly or indirectly from your use of these lists."|translate("s3")}}
127 </p> 121 </p>
LEFTRIGHT

Powered by Google App Engine
This is Rietveld