aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/modal/confirm.component.html
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-04-14 16:39:37 +0200
committerChocobozzz <me@florianbigard.com>2021-04-14 16:39:37 +0200
commit266947e5efc7ff30b0020beb5a74e4d4fc696fa5 (patch)
tree66c2e0f463e373d971d290d9ff3b07b9528ebf27 /client/src/app/modal/confirm.component.html
parent251a82ffbb62c575d7aeb260dff22409dae39d73 (diff)
downloadPeerTube-266947e5efc7ff30b0020beb5a74e4d4fc696fa5.tar.gz
PeerTube-266947e5efc7ff30b0020beb5a74e4d4fc696fa5.tar.zst
PeerTube-266947e5efc7ff30b0020beb5a74e4d4fc696fa5.zip
Refactor modal buttons style
Diffstat (limited to 'client/src/app/modal/confirm.component.html')
-rw-r--r--client/src/app/modal/confirm.component.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/modal/confirm.component.html b/client/src/app/modal/confirm.component.html
index dbc8c23e3..f07501726 100644
--- a/client/src/app/modal/confirm.component.html
+++ b/client/src/app/modal/confirm.component.html
@@ -17,13 +17,13 @@
17 17
18 <div class="modal-footer inputs"> 18 <div class="modal-footer inputs">
19 <input 19 <input
20 type="button" role="button" i18n-value value="Cancel" class="action-button action-button-cancel" 20 type="button" role="button" i18n-value value="Cancel" class="peertube-button grey-button"
21 (click)="dismiss()" (key.enter)="dismiss()" 21 (click)="dismiss()" (key.enter)="dismiss()"
22 > 22 >
23 23
24 <input 24 <input
25 ngbAutofocus 25 ngbAutofocus
26 type="submit" [value]="confirmButtonText" class="action-button-submit" [disabled]="isConfirmationDisabled()" 26 type="submit" [value]="confirmButtonText" class="peertube-button orange-button" [disabled]="isConfirmationDisabled()"
27 (click)="close()" (key.enter)="confirm()" 27 (click)="close()" (key.enter)="confirm()"
28 > 28 >
29 </div> 29 </div>