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

Side by Side Diff: donate-head.html

Issue 6691530349740032: issue 1689 - Don't show subscription cancellation text at donation page if credit card donation is … (Closed)
Patch Set: Created Jan. 7, 2015, 5:04 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « donate-body.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <style type="text/css"> 1 <style type="text/css">
2 h2 2 h2
3 { 3 {
4 padding-top: 20px; 4 padding-top: 20px;
5 border-top: 1px solid #ccc; 5 border-top: 1px solid #ccc;
6 } 6 }
7 7
8 label 8 label
9 { 9 {
10 display: block; 10 display: block;
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 border-color: #d43f3a; 81 border-color: #d43f3a;
82 } 82 }
83 83
84 #form.none button.credit-card:hover, 84 #form.none button.credit-card:hover,
85 #form.credit-card button.credit-card:hover 85 #form.credit-card button.credit-card:hover
86 { 86 {
87 background-color: #d2322d; 87 background-color: #d2322d;
88 border-color: #ac2925; 88 border-color: #ac2925;
89 } 89 }
90 90
91 #form.credit-card #recurrent-cancellation
92 {
93 display: none;
94 }
95
96 /* Paypal */ 91 /* Paypal */
97 92
98 #form.none button.paypal, 93 #form.none button.paypal,
99 #form.paypal button.paypal 94 #form.paypal button.paypal
100 { 95 {
101 color: #fff; 96 color: #fff;
102 background-color: #428bca; 97 background-color: #428bca;
103 border-color: #357ebd; 98 border-color: #357ebd;
104 } 99 }
105 100
(...skipping 29 matching lines...) Expand all
135 } 130 }
136 131
137 #form.credit-card #form-fields, 132 #form.credit-card #form-fields,
138 #form.paypal #form-fields, 133 #form.paypal #form-fields,
139 #form.bitcoin #form-fields 134 #form.bitcoin #form-fields
140 { 135 {
141 display: block; 136 display: block;
142 } 137 }
143 138
144 #form.credit-card #form-recurrence, 139 #form.credit-card #form-recurrence,
140 #form.credit-card #recurrent-cancellation,
145 #form.bitcoin #form-currency, 141 #form.bitcoin #form-currency,
146 #form.bitcoin #form-price 142 #form.bitcoin #form-price
147 { 143 {
148 display: none; 144 display: none;
149 } 145 }
150 146
151 /* This cannot be #donate because specificity is too low */ 147 /* This cannot be #donate because specificity is too low */
152 #form #donate 148 #form #donate
153 { 149 {
154 color: #fff; 150 color: #fff;
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
483 { 479 {
484 var provider = providers[document.getElementById("form").className]; 480 var provider = providers[document.getElementById("form").className];
485 if (provider) 481 if (provider)
486 provider(); 482 provider();
487 }, false); 483 }, false);
488 }, false); 484 }, false);
489 })(); 485 })();
490 486
491 // --> 487 // -->
492 </script> 488 </script>
OLDNEW
« no previous file with comments | « donate-body.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld