Merge pull request #3325 from bechi/bug/ui

fix text centered
This commit is contained in:
Gustavo Maximiliano Cortez 2015-10-23 12:12:08 -03:00
commit f7c9910ef6
1 changed files with 7 additions and 7 deletions

View File

@ -14,8 +14,8 @@
<div class="modal-content fix-modals-touch" ng-init="updateCopayerList()"> <div class="modal-content fix-modals-touch" ng-init="updateCopayerList()">
<h4 class="title m0" translate>Details</h4> <h4 class="title m0" translate>Details</h4>
<ul class="no-bullet size-14 m0"> <ul class="no-bullet size-14 m0">
<li ng-if="!tx.hasMultiplesOutputs" <li ng-if="!tx.hasMultiplesOutputs"
class="line-b p10 oh" class="line-b p10 oh"
ng-click="copyAddress(tx.toAddress)"> ng-click="copyAddress(tx.toAddress)">
<span class="text-gray" translate>To</span>: <span class="text-gray" translate>To</span>:
<contact class="right enable_text_select" address="{{tx.toAddress}}"></contact> <contact class="right enable_text_select" address="{{tx.toAddress}}"></contact>
@ -31,8 +31,8 @@
<span class="text-gray" translate>Note</span>: <span class="text-gray" translate>Note</span>:
<span class="right">{{tx.message}}</span> <span class="right">{{tx.message}}</span>
</li> </li>
<li ng-show="tx.hasMultiplesOutputs" class="line-b p10 oh" <li ng-show="tx.hasMultiplesOutputs" class="line-b p10 oh"
ng-click="showMultiplesOutputs = !showMultiplesOutputs"> ng-click="showMultiplesOutputs = !showMultiplesOutputs">
<span class="text-gray" translate>Recipients</span>: <span class="text-gray" translate>Recipients</span>:
<span class="right">{{tx.recipientCount}} <span class="right">{{tx.recipientCount}}
@ -49,7 +49,7 @@
<li class="line-b p10"> <li class="line-b p10">
<span class="text-gray" translate>Fee</span>: <span class="text-gray" translate>Fee</span>:
<span class="right">{{tx.feeStr}}</span> <span class="right">{{tx.feeStr}}</span>
</li> </li>
<li class="line-b p10"> <li class="line-b p10">
<span class="text-gray" translate>Time</span>: <span class="text-gray" translate>Time</span>:
<span class="right"> <span class="right">
@ -135,7 +135,7 @@
<div class="text-center text-gray m20t" ng-show="tx.status != 'pending'"> <div class="text-center text-gray m20t" ng-show="tx.status != 'pending'">
<div ng-show="tx.status=='accepted' && !tx.isGlidera" > <div ng-show="tx.status=='accepted' && !tx.isGlidera" >
<div class="m10b size-12" translate>Payment accepted, but not yet broadcasted</div> <div class="m10b size-12" translate>Payment accepted, but not yet broadcasted</div>
<button class="primary round" <button class="primary round"
ng-click="broadcast(tx)" ng-click="broadcast(tx)"
ng-disabled="loading" ng-disabled="loading"
@ -156,7 +156,7 @@
</div> </div>
</div> </div>
<div class="row columns text-center m20t" ng-if="tx.canBeRemoved"> <div class="columns text-center m20t" ng-if="tx.canBeRemoved">
<div class="text-gray size-12 m20b" ng-if="!tx.isGlidera" translate> <div class="text-gray size-12 m20b" ng-if="!tx.isGlidera" translate>
* A payment proposal can be deleted if 1) you are the creator, and no other copayer has signed, or 2) 24 hours have passed since the proposal was created. * A payment proposal can be deleted if 1) you are the creator, and no other copayer has signed, or 2) 24 hours have passed since the proposal was created.
</div> </div>