Skip to content

Commit

Permalink
Ctrl+a to select passphrase on registration LiskArchive#15
Browse files Browse the repository at this point in the history
  • Loading branch information
slaweet committed Feb 27, 2017
1 parent c952541 commit d7c36cb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/login/save.jade
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ md-dialog.dialog-save(aria-label='Save your passphrase in a safe place!')
md-dialog-content
.md-dialog-content
div(ng-if="!$ctrl.enter")
p.passphrase(ng-bind='$ctrl.passphrase')
textarea.passphrase(ng-bind='$ctrl.passphrase', autofocus)
div(ng-if="$ctrl.enter")
p.passphrase
span {{ $ctrl.pre }}
Expand Down
9 changes: 9 additions & 0 deletions src/app/components/login/save.less
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
.passphrase {
font-size: 150%;
margin-bottom: 30px;
border: 0;
}

.missing {
Expand All @@ -11,3 +12,11 @@
color: rgb(2,136,209);
}
}

@media (min-width : 850px) {
.dialog-save {
.passphrase {
width: 800px;
}
}
}

0 comments on commit d7c36cb

Please sign in to comment.