Paper wallet css fixed when using encryption.

This commit is contained in:
Lucas Legname 2014-03-19 23:06:46 +01:00
parent 16a3125a8e
commit 86164fcacd
2 changed files with 9 additions and 2 deletions

View file

@ -75,9 +75,15 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); }
} }
#paperarea .artwallet .btcencryptedkey #paperarea .artwallet .btcencryptedkey
{ {
position: absolute; top: 236px; left: 812px; z-index: 100; font-size: 8px; background-color: transparent; position: absolute; top: 16px; right: 357px; z-index: 100; font-size: 12px; background-color: transparent;
font-weight:bold; color: #000000; margin: 0; font-weight:bold; color: #000000; margin: 0; width: 292px; height: 32px; text-align: center;
-ms-transform: rotate(180deg); /* IE 9 */
-webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
transform: rotate(180deg);
} }
.paperWalletText { bottom: 8px; height: 175px; left: 339px; padding: 15px 15px 15px 25px; position: absolute; width: 294px; font-size: 10px; }
.paperWalletText ul { margin: 0px; padding: 0px; }
#bulkarea .body { padding: 5px 0 0 0; } #bulkarea .body { padding: 5px 0 0 0; }
#bulkarea .format { font-style: italic; font-size: 90%; } #bulkarea .format { font-style: italic; font-size: 90%; }
#bulktextarea { font-size: 90%; width: 98%; margin: 4px 0 0 0; } #bulktextarea { font-size: 90%; width: 98%; margin: 4px 0 0 0; }

View file

@ -140,6 +140,7 @@ ninja.wallets.paperwallet = {
"<div id='qrcode_private" + i + "' class='qrcode_private'></div>" + "<div id='qrcode_private" + i + "' class='qrcode_private'></div>" +
"<div class='btcaddress' id='btcaddress" + i + "'></div>" + "<div class='btcaddress' id='btcaddress" + i + "'></div>" +
"<div class='" + keyelement + "' id='" + keyelement + i + "'></div>" + "<div class='" + keyelement + "' id='" + keyelement + i + "'></div>" +
"<div class='paperWalletText'><b>Paper Wallet</b><br /><br /><ul><li>To deposit funds to this paper wallet, send cryptocurrency to its public key, anytime.</li><li>Verify your balance by searching for the public address using a service such as blockchain.info.</li><li>DO NOT REVEAL THE PRIVATE KEY until you are ready to import the balance on this wallet to a cryptocurrency client, exchange or online wallet.</li><li>When withdrawing funds from this wallet you should remove the ENTIRE BALANCE. If you attempt to spend only some of the funds you will likely lose the remaining cryptocurrency forever.</li></ul></div>" +
"</div>"; "</div>";
return walletHtml; return walletHtml;
}, },