aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2017-12-21 15:24:49 +0100
committerChocobozzz <me@florianbigard.com>2017-12-21 15:24:49 +0100
commitfb4fd623d5e5adcfdc9ecf3dffef702b3786f486 (patch)
tree62a490d58f728d09d969d56919d5c1e01c72a5e4 /client/src/app/videos
parent6e33bf2882162d8760f55bcafb12fd9507e09ff1 (diff)
downloadPeerTube-fb4fd623d5e5adcfdc9ecf3dffef702b3786f486.tar.gz
PeerTube-fb4fd623d5e5adcfdc9ecf3dffef702b3786f486.tar.zst
PeerTube-fb4fd623d5e5adcfdc9ecf3dffef702b3786f486.zip
Better admin tables
Diffstat (limited to 'client/src/app/videos')
-rw-r--r--client/src/app/videos/+video-watch/video-watch.component.scss3
-rw-r--r--client/src/app/videos/+video-watch/video-watch.module.ts14
2 files changed, 9 insertions, 8 deletions
diff --git a/client/src/app/videos/+video-watch/video-watch.component.scss b/client/src/app/videos/+video-watch/video-watch.component.scss
index 02b44bda1..b37fa3d61 100644
--- a/client/src/app/videos/+video-watch/video-watch.component.scss
+++ b/client/src/app/videos/+video-watch/video-watch.component.scss
@@ -27,7 +27,8 @@
27 line-height: 300px; 27 line-height: 300px;
28 margin-top: 50px; 28 margin-top: 50px;
29 text-align: center; 29 text-align: center;
30 font-weight: bold; 30 font-weight: $font-semibold;
31 font-size: 15px;
31} 32}
32 33
33.video-bottom { 34.video-bottom {
diff --git a/client/src/app/videos/+video-watch/video-watch.module.ts b/client/src/app/videos/+video-watch/video-watch.module.ts
index d0ed29d06..e77883472 100644
--- a/client/src/app/videos/+video-watch/video-watch.module.ts
+++ b/client/src/app/videos/+video-watch/video-watch.module.ts
@@ -1,15 +1,15 @@
1import { NgModule } from '@angular/core' 1import { NgModule } from '@angular/core'
2import { TooltipModule } from 'ngx-bootstrap/tooltip'
3import { ClipboardModule } from 'ngx-clipboard'
4import { SharedModule } from '../../shared'
5import { MarkdownService } from '../shared'
6import { VideoDownloadComponent } from './video-download.component'
7import { VideoReportComponent } from './video-report.component'
8import { VideoShareComponent } from './video-share.component'
2 9
3import { VideoWatchRoutingModule } from './video-watch-routing.module' 10import { VideoWatchRoutingModule } from './video-watch-routing.module'
4import { MarkdownService } from '../shared'
5import { SharedModule } from '../../shared'
6import { ClipboardModule } from 'ngx-clipboard'
7import { TooltipModule } from 'ngx-bootstrap/tooltip';
8 11
9import { VideoWatchComponent } from './video-watch.component' 12import { VideoWatchComponent } from './video-watch.component'
10import { VideoReportComponent } from './video-report.component'
11import { VideoShareComponent } from './video-share.component'
12import { VideoDownloadComponent } from './video-download.component'
13 13
14@NgModule({ 14@NgModule({
15 imports: [ 15 imports: [