mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
div of decoded inputs is hidden now
This commit is contained in:
parent
d8c719dc07
commit
1bbc608080
2 changed files with 34 additions and 0 deletions
|
@ -111,4 +111,31 @@ form {
|
||||||
|
|
||||||
[type=radio]:checked ~ label ~ .content {
|
[type=radio]:checked ~ label ~ .content {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
input#toggle-1[type=checkbox] {
|
||||||
|
position: absolute;
|
||||||
|
top: -9999px;
|
||||||
|
left: -9999px;
|
||||||
|
|
||||||
|
}
|
||||||
|
label#show-decoded-inputs {
|
||||||
|
/*-webkit-appearance: push-button;*/
|
||||||
|
/*-moz-appearance: button;*/
|
||||||
|
display: inline-block;
|
||||||
|
/*margin: 60px 0 10px 0;*/
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: black;;
|
||||||
|
color: white;
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#decoded-inputs{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Toggled State */
|
||||||
|
input#toggle-1[type=checkbox]:checked ~ div#decoded-inputs {
|
||||||
|
display: block;
|
||||||
}
|
}
|
|
@ -76,6 +76,10 @@
|
||||||
|
|
||||||
{{#show_inputs}}
|
{{#show_inputs}}
|
||||||
<br/>
|
<br/>
|
||||||
|
<label id="show-decoded-inputs" for="toggle-1">Show decoded inputs</label>
|
||||||
|
<input type="checkbox" id="toggle-1">
|
||||||
|
|
||||||
|
<div id="decoded-inputs">
|
||||||
<h3>Inputs ({{inputs_no}})</h3>
|
<h3>Inputs ({{inputs_no}})</h3>
|
||||||
<div class="center">
|
<div class="center">
|
||||||
{{#inputs}}
|
{{#inputs}}
|
||||||
|
@ -139,7 +143,10 @@
|
||||||
So do not take this number seriously.
|
So do not take this number seriously.
|
||||||
It is probably totally wrong anyway.</span>
|
It is probably totally wrong anyway.</span>
|
||||||
</h3>
|
</h3>
|
||||||
|
</div>
|
||||||
|
|
||||||
{{/show_inputs}}
|
{{/show_inputs}}
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
<br/>
|
Loading…
Reference in a new issue