fixed safari iphone issue where Prove Sending fields appear when user is in Decode outputs tab

master
abel30567 4 years ago
parent 489e947372
commit 518786846f

@ -101,6 +101,7 @@ form {
bottom: 0; bottom: 0;
padding: 20px; padding: 20px;
border: 1px solid #ccc; border: 1px solid #ccc;
display: none;
} }
[type=radio]:checked ~ label { [type=radio]:checked ~ label {
@ -113,6 +114,11 @@ form {
z-index: 1; z-index: 1;
} }
#tab-1:checked ~ .content.tab-1,
#tab-2:checked ~ .content.tab-2 {
display: block;
}
input#toggle-1[type=checkbox] { input#toggle-1[type=checkbox] {
position: absolute; position: absolute;
/*top: -9999px;*/ /*top: -9999px;*/

@ -80,7 +80,7 @@
<div class="tab"> <div class="tab">
<input type="radio" id="tab-1" name="tab-group-1" checked> <input type="radio" id="tab-1" name="tab-group-1" checked>
<label for="tab-1">Decode outputs</label> <label for="tab-1">Decode outputs</label>
<div class="content"> <div class="content tab-1">
<h4 style="margin: 0px">Check which outputs belong to given Monero address/subaddress and viewkey</h4> <h4 style="margin: 0px">Check which outputs belong to given Monero address/subaddress and viewkey</h4>
<h5 style="margin: 0px"> <h5 style="margin: 0px">
For RingCT transactions, outputs' amounts are also decoded For RingCT transactions, outputs' amounts are also decoded
@ -102,7 +102,7 @@
<input type="radio" id="tab-2" name="tab-group-1"> <input type="radio" id="tab-2" name="tab-group-1">
<label for="tab-2">Prove sending</label> <label for="tab-2">Prove sending</label>
<div class="content"> <div class="content tab-2">
<h4 style="margin: 0px">Prove to someone that you have sent them Monero in this transaction</h4> <h4 style="margin: 0px">Prove to someone that you have sent them Monero in this transaction</h4>
<h5 style="margin: 0px"> <h5 style="margin: 0px">
Tx private key can be obtained using <i>get_tx_key</i> Tx private key can be obtained using <i>get_tx_key</i>

Loading…
Cancel
Save