Fix layout after open the wallet. fix send button
This commit is contained in:
parent
d3107f2460
commit
959cd57fe1
5 changed files with 12 additions and 9 deletions
|
|
@ -37,8 +37,7 @@
|
|||
|
||||
|
||||
<section
|
||||
class="main-dark"
|
||||
ng-class="{'main': index.hasProfile, 'animation-left': index.swipeLeft,
|
||||
ng-class="{'main': index.hasProfile, 'main-dark': !index.hasProfile, 'animation-left': index.swipeLeft,
|
||||
'animation-right': index.swipeRight}"
|
||||
ui-view="main"></section>
|
||||
<div ui-view="menu"></div>
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
</div>
|
||||
|
||||
<div ng-show="!index.needsBackup || receive.skipBackup">
|
||||
<div class="row" ng-show="receive.generatingAddress">
|
||||
<div class="row m20t" ng-show="receive.generatingAddress">
|
||||
<div class="large-12 columns">
|
||||
<div class="oh text-center">
|
||||
<span class="text-gray" translate>Generating a new address...</span>
|
||||
|
|
|
|||
|
|
@ -137,15 +137,14 @@
|
|||
|
||||
|
||||
<div class="row" ng-show="!send.onGoingProcess">
|
||||
<div class="large-6 medium-6 small-6 columns">
|
||||
<div class="columns" ng-class="{'small-6 medium-6 large-6':(send._paypro || send.lockAddress)}">
|
||||
<button type="submit" class="button black radius expand" ng-disabled="sendForm.$invalid || send.blockUx"
|
||||
ng-style="{'background-color':index.backgroundColor}" translate>
|
||||
Send
|
||||
</button>
|
||||
</div>
|
||||
<div class="large-6 medium-6 small-6 columns">
|
||||
<a ng-click="send.resetForm(sendForm)" class="button expand warning"
|
||||
ng-show="(send._paypro || send.lockAddress) && !send.blockUx" translate>Cancel</a>
|
||||
<div class="large-6 medium-6 small-6 columns" ng-show="!send.blockUx && (send._paypro || send.lockAddress)">
|
||||
<a ng-click="send.resetForm(sendForm)" class="button expand warning" translate>Cancel</a>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue