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

Delta Between Two Patch Sets: donate-head.html

Issue 6623837907058688: issue 1758 - Remove Bitcoin donation option from donation page (Closed)
Left Patch Set: Created Jan. 7, 2015, 2:34 p.m.
Right Patch Set: Created Feb. 5, 2015, 1:47 p.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 | « donate-body.html ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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 10 matching lines...) Expand all
116 { 111 {
117 display: none; 112 display: none;
118 } 113 }
119 114
120 #form.credit-card #form-fields, 115 #form.credit-card #form-fields,
121 #form.paypal #form-fields 116 #form.paypal #form-fields
122 { 117 {
123 display: block; 118 display: block;
124 } 119 }
125 120
121 #form.credit-card #recurrent-cancellation,
126 #form.credit-card #form-recurrence 122 #form.credit-card #form-recurrence
127 { 123 {
128 display: none; 124 display: none;
129 } 125 }
130 126
131 /* This cannot be #donate because specificity is too low */ 127 /* This cannot be #donate because specificity is too low */
132 #form #donate 128 #form #donate
133 { 129 {
134 color: #fff; 130 color: #fff;
135 background-color: #5cb85c; 131 background-color: #5cb85c;
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 { 450 {
455 var provider = providers[document.getElementById("form").className]; 451 var provider = providers[document.getElementById("form").className];
456 if (provider) 452 if (provider)
457 provider(); 453 provider();
458 }, false); 454 }, false);
459 }, false); 455 }, false);
460 })(); 456 })();
461 457
462 // --> 458 // -->
463 </script> 459 </script>
LEFTRIGHT

Powered by Google App Engine
This is Rietveld