Skip to content

Commit

Permalink
Add tooltips to copy and archive buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
zyuhel committed Dec 20, 2017
1 parent 2426fc7 commit 8bda868
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
<md-input-container>
<label v-html="$t('login.new_password_label')"></label>
<md-textarea v-bind:value="yourPassPhrase" readonly></md-textarea>
<md-icon v-clipboard="yourPassPhrase" @success="copySuccess" style="cursor:pointer;z-index:20;">content_copy</md-icon>
<md-icon v-if=!iOS v-on:click.native="saveFile" style="cursor:pointer;z-index:20;">archive</md-icon>
<md-icon v-clipboard="yourPassPhrase" @success="copySuccess" style="cursor:pointer;z-index:20;" :title="$t('login.copy_button_tooltip')">content_copy</md-icon>
<md-icon v-if=!iOS v-on:click.native="saveFile" style="cursor:pointer;z-index:20;" :title="$t('login.save_button_tooltip')">archive</md-icon>

</md-input-container>

Expand Down

0 comments on commit 8bda868

Please sign in to comment.