aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2017-12-11 18:08:40 +0100
committerChocobozzz <me@florianbigard.com>2017-12-11 18:08:40 +0100
commitf35546da41a82f8f0e250eefa6af4948289b1608 (patch)
treea0ff3f1999b30e75df79e049ad9c7d68197062e4 /client/src/app/videos
parentc7e1e432b0e5d321ff2331cf3ddff56c43500788 (diff)
downloadPeerTube-f35546da41a82f8f0e250eefa6af4948289b1608.tar.gz
PeerTube-f35546da41a82f8f0e250eefa6af4948289b1608.tar.zst
PeerTube-f35546da41a82f8f0e250eefa6af4948289b1608.zip
Use input-group-sm instead of padding
Diffstat (limited to 'client/src/app/videos')
-rw-r--r--client/src/app/videos/+video-watch/video-share.component.html4
-rw-r--r--client/src/app/videos/+video-watch/video-share.component.scss3
2 files changed, 2 insertions, 5 deletions
diff --git a/client/src/app/videos/+video-watch/video-share.component.html b/client/src/app/videos/+video-watch/video-share.component.html
index 52ee36a2e..e99eccbfe 100644
--- a/client/src/app/videos/+video-watch/video-share.component.html
+++ b/client/src/app/videos/+video-watch/video-share.component.html
@@ -12,7 +12,7 @@
12 <div class="modal-body"> 12 <div class="modal-body">
13 <div class="form-group"> 13 <div class="form-group">
14 <label>URL</label> 14 <label>URL</label>
15 <div class="input-group"> 15 <div class="input-group input-group-sm">
16 <input #urlInput (click)="urlInput.select()" type="text" class="form-control input-sm readonly" readonly [value]="getVideoUrl()" /> 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"> 17 <div class="input-group-btn" placement="bottom right">
18 <button [ngxClipboard]="urlInput" (click)="activateCopiedMessage()" type="button" class="btn btn-default btn-search"> 18 <button [ngxClipboard]="urlInput" (click)="activateCopiedMessage()" type="button" class="btn btn-default btn-search">
@@ -24,7 +24,7 @@
24 24
25 <div class="form-group"> 25 <div class="form-group">
26 <label>Embed</label> 26 <label>Embed</label>
27 <div class="input-group"> 27 <div class="input-group input-group-sm">
28 <input #shareInput (click)="shareInput.select()" type="text" class="form-control input-sm readonly" readonly [value]="getVideoIframeCode()" /> 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"> 29 <div class="input-group-btn" placement="bottom right">
30 <button [ngxClipboard]="shareInput" (click)="activateCopiedMessage()" type="button" class="btn btn-default btn-search"> 30 <button [ngxClipboard]="shareInput" (click)="activateCopiedMessage()" type="button" class="btn btn-default btn-search">
diff --git a/client/src/app/videos/+video-watch/video-share.component.scss b/client/src/app/videos/+video-watch/video-share.component.scss
index 519631792..e69de29bb 100644
--- a/client/src/app/videos/+video-watch/video-share.component.scss
+++ b/client/src/app/videos/+video-watch/video-share.component.scss
@@ -1,3 +0,0 @@
1.btn-search {
2 padding: 4.1px 12px;
3}