diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2020-04-02 11:39:14 +0200 |
---|---|---|
committer | Rigel Kent <sendmemail@rigelk.eu> | 2020-04-02 11:39:14 +0200 |
commit | a6d5ff7604a3c2a94ff8814e2df7ca7bb2b48634 (patch) | |
tree | d8b27f30741ae3c9a2a72c68210644c16cd8d9b3 /client/src/app/shared/confirm | |
parent | 21973012ab06a93dd901821dbbe078eb793bac4d (diff) | |
download | PeerTube-a6d5ff7604a3c2a94ff8814e2df7ca7bb2b48634.tar.gz PeerTube-a6d5ff7604a3c2a94ff8814e2df7ca7bb2b48634.tar.zst PeerTube-a6d5ff7604a3c2a94ff8814e2df7ca7bb2b48634.zip |
Use form-control to display box-shadow on form inputs/selects upon focus
Diffstat (limited to 'client/src/app/shared/confirm')
-rw-r--r-- | client/src/app/shared/confirm/confirm.component.html | 8 | ||||
-rw-r--r-- | client/src/app/shared/confirm/confirm.component.ts | 1 |
2 files changed, 6 insertions, 3 deletions
diff --git a/client/src/app/shared/confirm/confirm.component.html b/client/src/app/shared/confirm/confirm.component.html index 65df1cd4d..dbc8c23e3 100644 --- a/client/src/app/shared/confirm/confirm.component.html +++ b/client/src/app/shared/confirm/confirm.component.html | |||
@@ -16,11 +16,15 @@ | |||
16 | </div> | 16 | </div> |
17 | 17 | ||
18 | <div class="modal-footer inputs"> | 18 | <div class="modal-footer inputs"> |
19 | <span i18n class="action-button action-button-cancel" (click)="dismiss()" role="button">Cancel</span> | 19 | <input |
20 | type="button" role="button" i18n-value value="Cancel" class="action-button action-button-cancel" | ||
21 | (click)="dismiss()" (key.enter)="dismiss()" | ||
22 | > | ||
20 | 23 | ||
21 | <input | 24 | <input |
25 | ngbAutofocus | ||
22 | type="submit" [value]="confirmButtonText" class="action-button-submit" [disabled]="isConfirmationDisabled()" | 26 | type="submit" [value]="confirmButtonText" class="action-button-submit" [disabled]="isConfirmationDisabled()" |
23 | (click)="close()" | 27 | (click)="close()" (key.enter)="confirm()" |
24 | > | 28 | > |
25 | </div> | 29 | </div> |
26 | </ng-template> | 30 | </ng-template> |
diff --git a/client/src/app/shared/confirm/confirm.component.ts b/client/src/app/shared/confirm/confirm.component.ts index d67d4f3c8..c6e40fe72 100644 --- a/client/src/app/shared/confirm/confirm.component.ts +++ b/client/src/app/shared/confirm/confirm.component.ts | |||
@@ -45,7 +45,6 @@ export class ConfirmComponent implements OnInit { | |||
45 | ) | 45 | ) |
46 | } | 46 | } |
47 | 47 | ||
48 | @HostListener('document:keydown.enter') | ||
49 | confirm () { | 48 | confirm () { |
50 | if (this.openedModal) this.openedModal.close() | 49 | if (this.openedModal) this.openedModal.close() |
51 | } | 50 | } |