fix some details

This commit is contained in:
bechi 2015-04-15 16:50:59 -03:00
parent 2297ff3156
commit 0d57e02403
3 changed files with 33 additions and 46 deletions

View File

@ -18,7 +18,7 @@
<div ng-show="index.txHistory[0]" class="scroll">
<div ng-repeat="btx in index.txHistory"
ng-click="history.openTxModal(btx)"
class="row last-transactions-content">
class="row collapse last-transactions-content">
<div class="large-3 medium-3 small-3 columns">
<span class="label tu" ng-show="btx.action == 'received'"
ng-style="{'background-color':index.backgroundColor}">Received</span>
@ -27,7 +27,7 @@
</div>
<div class="large-5 medium-5 small-5 columns">
<span class="size-18">
<span class="size-16">
<span ng-if="btx.action == 'received'">+</span>
<span ng-if="btx.action == 'sent'">-</span>
{{btx.amountStr}}

View File

@ -137,15 +137,16 @@
<div class="row" ng-show="!send.onGoingProcess">
<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 outline dark-gray" translate>Cancel</a>
</div>
<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" ng-show="!send.blockUx && (send._paypro || send.lockAddress)">
<a ng-click="send.resetForm(sendForm)" class="button expand warning" translate>Cancel</a>
</div>
</div>
</form>
</div>

View File

@ -468,8 +468,9 @@ input[type=number]::-webkit-outer-spin-button {
.label.gray {background-color: #4B6178;}
.history .label {
width: 69px;
width: 57px;
text-align: center;
font-size: 65%;
}
.bg-alert {
@ -639,14 +640,6 @@ button.secondary:focus,
border-radius: 3px;
}
button.disabled.secondary,
button[disabled].secondary,
.button.disabled.secondary,
.button[disabled].secondary {
background-color: #E4E8EC;
color: #A5B2BF;
}
/* PRIMARY */
button.primary,
button.primary:hover,
@ -659,14 +652,6 @@ button.primary:focus,
border-radius: 3px;
}
button.disabled.primary,
button[disabled].primary,
.button.disabled.primary,
.button[disabled].primary {
background-color: #95a5a6;
color: #E6E6E6;
}
/* WARNING */
button.warning,
.button.warning,
@ -679,14 +664,6 @@ button.warning:focus,
border-radius: 3px;
}
button.disabled.warning,
button[disabled].warning,
.button.disabled.warning,
.button[disabled].warning {
background-color: #95a5a6;
color: #E6E6E6;
}
/* WHITE */
button.white,
.button.white {
@ -694,14 +671,6 @@ button.white,
color: #2C3E50;
}
button.disabled.white,
button[disabled].white,
.button.disabled.white,
.button[disabled].white {
background-color: #95a5a6;
color: #E6E6E6;
}
/* BLACK */
button.black,
.button.black {
@ -709,14 +678,6 @@ button.black,
color: #fff;
}
button.disabled.black,
button[disabled].black,
.button.disabled.black,
.button[disabled].black {
background-color: #95a5a6;
color: #E6E6E6;
}
/* GRAY */
button.gray,
.button.gray {
@ -724,6 +685,31 @@ button.gray,
color: #2C3E50;
}
button.disabled.black,
button[disabled].black,
.button.disabled.black,
.button[disabled].black,
button.disabled.white,
button[disabled].white,
.button.disabled.white,
.button[disabled].white,
button.disabled.warning,
button[disabled].warning,
.button.disabled.warning,
.button[disabled].warning,
button.disabled.primary,
button[disabled].primary,
.button.disabled.primary,
.button[disabled].primary,
button.disabled.secondary,
button[disabled].secondary,
.button.disabled.secondary,
.button[disabled].secondary {
background-color: #A5B2BF !important;
color: #fff;
}
.button, button {
text-transform: uppercase;
}