aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-forms
diff options
context:
space:
mode:
authorkontrollanten <6680299+kontrollanten@users.noreply.github.com>2021-03-22 14:19:08 +0100
committerChocobozzz <me@florianbigard.com>2021-03-24 18:18:41 +0100
commit6b1ef956993ff294534281a35dd3b9ce5538a7b1 (patch)
tree196fd6dd204e7895fc9588e710484c4b0ddbabd1 /client/src/app/shared/shared-forms
parent97aeb3cc46c2e03c3187accd7c4561209be8be89 (diff)
downloadPeerTube-6b1ef956993ff294534281a35dd3b9ce5538a7b1.tar.gz
PeerTube-6b1ef956993ff294534281a35dd3b9ce5538a7b1.tar.zst
PeerTube-6b1ef956993ff294534281a35dd3b9ce5538a7b1.zip
Change copy icon (#3867)
* client: change copy icon to glypicon-duplicate * client: add "copy" text to copy icons
Diffstat (limited to 'client/src/app/shared/shared-forms')
-rw-r--r--client/src/app/shared/shared-forms/input-toggle-hidden.component.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/client/src/app/shared/shared-forms/input-toggle-hidden.component.html b/client/src/app/shared/shared-forms/input-toggle-hidden.component.html
index e7441e4c1..9f252f299 100644
--- a/client/src/app/shared/shared-forms/input-toggle-hidden.component.html
+++ b/client/src/app/shared/shared-forms/input-toggle-hidden.component.html
@@ -12,9 +12,10 @@
12 12
13 <button 13 <button
14 *ngIf="withCopy" [cdkCopyToClipboard]="input.value" (click)="activateCopiedMessage()" type="button" 14 *ngIf="withCopy" [cdkCopyToClipboard]="input.value" (click)="activateCopiedMessage()" type="button"
15 class="btn btn-outline-secondary" i18n-title title="Copy" 15 class="btn btn-outline-secondary text-uppercase" i18n-title title="Copy"
16 > 16 >
17 <span class="glyphicon glyphicon-copy"></span> 17 <span class="glyphicon glyphicon-duplicate"></span>
18 Copy
18 </button> 19 </button>
19 </div> 20 </div>
20</div> 21</div>