diff options
author | Chocobozzz <me@florianbigard.com> | 2017-12-21 15:24:49 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2017-12-21 15:24:49 +0100 |
commit | fb4fd623d5e5adcfdc9ecf3dffef702b3786f486 (patch) | |
tree | 62a490d58f728d09d969d56919d5c1e01c72a5e4 /client/src/app/videos | |
parent | 6e33bf2882162d8760f55bcafb12fd9507e09ff1 (diff) | |
download | PeerTube-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.scss | 3 | ||||
-rw-r--r-- | client/src/app/videos/+video-watch/video-watch.module.ts | 14 |
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 @@ | |||
1 | import { NgModule } from '@angular/core' | 1 | import { NgModule } from '@angular/core' |
2 | import { TooltipModule } from 'ngx-bootstrap/tooltip' | ||
3 | import { ClipboardModule } from 'ngx-clipboard' | ||
4 | import { SharedModule } from '../../shared' | ||
5 | import { MarkdownService } from '../shared' | ||
6 | import { VideoDownloadComponent } from './video-download.component' | ||
7 | import { VideoReportComponent } from './video-report.component' | ||
8 | import { VideoShareComponent } from './video-share.component' | ||
2 | 9 | ||
3 | import { VideoWatchRoutingModule } from './video-watch-routing.module' | 10 | import { VideoWatchRoutingModule } from './video-watch-routing.module' |
4 | import { MarkdownService } from '../shared' | ||
5 | import { SharedModule } from '../../shared' | ||
6 | import { ClipboardModule } from 'ngx-clipboard' | ||
7 | import { TooltipModule } from 'ngx-bootstrap/tooltip'; | ||
8 | 11 | ||
9 | import { VideoWatchComponent } from './video-watch.component' | 12 | import { VideoWatchComponent } from './video-watch.component' |
10 | import { VideoReportComponent } from './video-report.component' | ||
11 | import { VideoShareComponent } from './video-share.component' | ||
12 | import { VideoDownloadComponent } from './video-download.component' | ||
13 | 13 | ||
14 | @NgModule({ | 14 | @NgModule({ |
15 | imports: [ | 15 | imports: [ |