remove old copy icon. fix textarea on safari

This commit is contained in:
Gustavo Maximiliano Cortez 2014-11-28 00:52:15 -03:00
commit 4b6d448fb5
2 changed files with 8 additions and 15 deletions

View file

@ -1,14 +1,10 @@
<div class="text-center"> <div class="text-center">
<h1>Copy backup in a safe place</h1> <h1>Copy backup in a safe place</h1>
<div class="show-for-large-up"> <textarea class="show-for-large-up" readonly rows="7">{{backupWalletPlainText}}</textarea>
<textarea readonly rows="7">{{backupWalletPlainText}}</textarea> <textarea class="hide-for-large-up" rows="12">{{backupWalletPlainText}}</textarea>
<span translate class="size-12">Copy to clipboard</span> <div translate class="m10t size-12 text-gray text-right">
<span class="btn-copy" clip-copy="backupWalletPlainText"> </span> Copy this text as it is in a safe place (notepad or email)
</div> </div>
<div class="hide-for-large-up">
<textarea rows="12">{{backupWalletPlainText}}</textarea>
</div>
<div translate class="m10t size-12 text-gray text-right">Copy this text as it is in a safe place (notepad or email)</div>
</div> </div>
<a class="close-reveal-modal" ng-click="cancel()">&#215;</a> <a class="close-reveal-modal" ng-click="cancel()">&#215;</a>

View file

@ -27,13 +27,10 @@
</div> </div>
<div class="row" ng-show="backupProfilePlainText"> <div class="row" ng-show="backupProfilePlainText">
<div class="large-12 columns"> <div class="large-12 columns">
<textarea rows="5">{{backupProfilePlainText}}</textarea> <textarea class="show-for-large-up" readonly rows="5">{{backupProfilePlainText}}</textarea>
<div class="show-for-large-up"> <textarea class="hide-for-large-up" rows="5">{{backupProfilePlainText}}</textarea>
<span translate class="size-12">Copy to clipboard</span> <span <div translate class="size-12 m10t text-gray text-right">
class="btn-copy" clip-copy="backupProfilePlainText"> </span> Copy this text as it is in a safe place (notepad or email)
</div>
<div class="hide-for-large-up">
<span translate class="size-12">Copy this text as it is in a safe place (notepad or email)</span>
</div> </div>
</div> </div>
</div> </div>