Skip to content
This repository has been archived by the owner on Sep 2, 2023. It is now read-only.

[TASK] Breakpoints in send cut off longer values when in tablet view (RT-2719) #2480

Merged
merged 1 commit into from
May 6, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/less/ripple/tabs/send.less
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
#t-send {
.inputSpinner {
top: 20px;
right: 20px;
}

.rp-combobox {
display: block;
Expand Down
8 changes: 4 additions & 4 deletions src/templates/tabs/send.jade
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ section.col-xs-12.content(ng-controller='SendCtrl')
ng-show='mode=="form" && account.Balance'
ng-submit='send_prepared()')
.row.form-group
.col-xs-12.col-sm-8.col-md-6
.col-xs-12.col-sm-9.col-md-9
label(for='send_destination', l10n) Recipient
input.form-control#send_destination(
name='send_destination', type='text'
Expand Down Expand Up @@ -62,7 +62,7 @@ section.col-xs-12.content(ng-controller='SendCtrl')
ng-hide="send.show_dt_field || send.bitcoin || send.federation", l10n)
| Show destination tag
.row.form-group(ng-show='send.show_dt_field')
.col-xs-12.col-sm-8.col-md-6
.col-xs-12.col-sm-9.col-md-9
label(for='send_dt', l10n) Destination tag
a(href="", ng-click="send.show_dt_field = false", l10n) hide
input.form-control#send_dt(
Expand Down Expand Up @@ -119,7 +119,7 @@ section.col-xs-12.content(ng-controller='SendCtrl')
.form-group(ng-show="send.currency_choices.length")
label(for='send_amount', l10n) Recipient will receive
.row.amount(ng-if="!send.currency_force")
.col-xs-3.col-sm-3.col-md-3
.col-xs-4.col-sm-3.col-md-3
input.form-control#send_amount(
name='send_amount', type='text'
ng-model='send.amount'
Expand All @@ -131,7 +131,7 @@ section.col-xs-12.content(ng-controller='SendCtrl')
rp-amount-xrp-limit
rp-amount-currency='{{send.currency}}'
rp-max-digits)
.col-xs-9.col-sm-6.col-md-4
.col-xs-8.col-sm-6.col-md-6
input.form-control.currency#send_amount_currency(
name='send_amount_currency', type='text'
rp-combobox="{{send.currency_choices}}", rp-combobox-select
Expand Down