Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.

Commit

Permalink
Merge pull request #35 from slaweet/select-passphrase
Browse files Browse the repository at this point in the history
Ctrl+a to select passphrase on registration - Closes #15
  • Loading branch information
karmacoma authored Mar 6, 2017
2 parents f2fee8b + 5d21b0e commit 45a178d
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 45a178d

Please sign in to comment.