]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-watch/video-share.component.html
Use input-group-sm instead of padding
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / video-share.component.html
CommitLineData
cf02fbfb
C
1<div bsModal #modal="bs-modal" class="modal" tabindex="-1">
2 <div class="modal-dialog modal-lg">
3 <div class="modal-content">
4
5 <div class="modal-header">
c16ce1de 6 <button type="button" class="close" aria-label="Close" (click)="hide()">
cf02fbfb
C
7 <span aria-hidden="true">&times;</span>
8 </button>
0727cab0 9 <h4 class="title-page title-page-single">Share</h4>
cf02fbfb
C
10 </div>
11
12 <div class="modal-body">
13 <div class="form-group">
14 <label>URL</label>
f35546da 15 <div class="input-group input-group-sm">
c7e1e432
JL
16 <input #urlInput (click)="urlInput.select()" type="text" class="form-control input-sm readonly" readonly [value]="getVideoUrl()" />
17 <div class="input-group-btn" placement="bottom right">
18 <button [ngxClipboard]="urlInput" (click)="activateCopiedMessage()" type="button" class="btn btn-default btn-search">
19 <span class="glyphicon glyphicon-copy"></span>
20 </button>
21 </div>
22 </div>
cf02fbfb
C
23 </div>
24
25 <div class="form-group">
26 <label>Embed</label>
f35546da 27 <div class="input-group input-group-sm">
c7e1e432
JL
28 <input #shareInput (click)="shareInput.select()" type="text" class="form-control input-sm readonly" readonly [value]="getVideoIframeCode()" />
29 <div class="input-group-btn" placement="bottom right">
30 <button [ngxClipboard]="shareInput" (click)="activateCopiedMessage()" type="button" class="btn btn-default btn-search">
31 <span class="glyphicon glyphicon-copy"></span>
32 </button>
33 </div>
34 </div>
cf02fbfb 35 </div>
2c8d4697
C
36
37 <div *ngIf="notSecure()" class="alert alert-warning">
38 The url is not secured (no HTTPS), so the embed video won't work on HTTPS websites (web browsers block non secured HTTP requests on HTTPS websites).
39 </div>
cf02fbfb
C
40 </div>
41 </div>
42 </div>
43</div>