]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-watch/modal/video-support.component.html
Use form-control to display box-shadow on form inputs/selects upon focus
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / modal / video-support.component.html
CommitLineData
63347a0f
C
1<ng-template #modal let-hide="close">
2 <div class="modal-header">
1f3a605e 3 <h4 i18n class="modal-title">Support {{ video.account.displayName }}</h4>
457bb213 4 <my-global-icon iconName="cross" aria-label="Close" role="button" (click)="hide()"></my-global-icon>
63347a0f 5 </div>
07fa4c97 6
63347a0f 7 <div class="modal-body" [innerHTML]="videoHTMLSupport"></div>
07fa4c97 8
63347a0f 9 <div class="modal-footer inputs">
a6d5ff76
RK
10 <input
11 type="button" role="button" i18n-value value="Maybe later" class="action-button action-button-cancel"
12 (click)="hide()" (key.enter)="hide()"
13 >
07fa4c97 14 </div>
63347a0f 15</ng-template>