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, 2:24 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
« donate-body.html ('K') | « 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
Thomas Greiner 2015/01/07 14:35:01 I think this should rather be added under the "Sec
saroyanm 2015/01/07 14:44:49 Good point, done
92 {
93 display: none;
94 }
95
91 /* Paypal */ 96 /* Paypal */
92 97
93 #form.none button.paypal, 98 #form.none button.paypal,
94 #form.paypal button.paypal 99 #form.paypal button.paypal
95 { 100 {
96 color: #fff; 101 color: #fff;
97 background-color: #428bca; 102 background-color: #428bca;
98 border-color: #357ebd; 103 border-color: #357ebd;
99 } 104 }
100 105
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 { 483 {
479 var provider = providers[document.getElementById("form").className]; 484 var provider = providers[document.getElementById("form").className];
480 if (provider) 485 if (provider)
481 provider(); 486 provider();
482 }, false); 487 }, false);
483 }, false); 488 }, false);
484 })(); 489 })();
485 490
486 // --> 491 // -->
487 </script> 492 </script>
OLDNEW
« donate-body.html ('K') | « donate-body.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld