diff options
Diffstat (limited to 'client/src/app/+video-channels')
-rw-r--r-- | client/src/app/+video-channels/video-channels.component.html | 3 | ||||
-rw-r--r-- | client/src/app/+video-channels/video-channels.component.scss | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/client/src/app/+video-channels/video-channels.component.html b/client/src/app/+video-channels/video-channels.component.html index 5a69a82a0..1941a2eab 100644 --- a/client/src/app/+video-channels/video-channels.component.html +++ b/client/src/app/+video-channels/video-channels.component.html | |||
@@ -8,6 +8,8 @@ | |||
8 | <div class="actor-names"> | 8 | <div class="actor-names"> |
9 | <div class="actor-display-name">{{ videoChannel.displayName }}</div> | 9 | <div class="actor-display-name">{{ videoChannel.displayName }}</div> |
10 | <div class="actor-name">{{ videoChannel.nameWithHost }}</div> | 10 | <div class="actor-name">{{ videoChannel.nameWithHost }}</div> |
11 | |||
12 | <my-subscribe-button [videoChannel]="videoChannel"></my-subscribe-button> | ||
11 | </div> | 13 | </div> |
12 | <div i18n class="actor-followers">{{ videoChannel.followersCount }} subscribers</div> | 14 | <div i18n class="actor-followers">{{ videoChannel.followersCount }} subscribers</div> |
13 | 15 | ||
@@ -20,7 +22,6 @@ | |||
20 | 22 | ||
21 | <div class="links"> | 23 | <div class="links"> |
22 | <a i18n routerLink="videos" routerLinkActive="active" class="title-page">Videos</a> | 24 | <a i18n routerLink="videos" routerLinkActive="active" class="title-page">Videos</a> |
23 | |||
24 | <a i18n routerLink="about" routerLinkActive="active" class="title-page">About</a> | 25 | <a i18n routerLink="about" routerLinkActive="active" class="title-page">About</a> |
25 | </div> | 26 | </div> |
26 | </div> | 27 | </div> |
diff --git a/client/src/app/+video-channels/video-channels.component.scss b/client/src/app/+video-channels/video-channels.component.scss index 909b65bc7..a63b1ec06 100644 --- a/client/src/app/+video-channels/video-channels.component.scss +++ b/client/src/app/+video-channels/video-channels.component.scss | |||
@@ -3,4 +3,19 @@ | |||
3 | 3 | ||
4 | .sub-menu { | 4 | .sub-menu { |
5 | @include sub-menu-with-actor; | 5 | @include sub-menu-with-actor; |
6 | |||
7 | .actor, .actor-info { | ||
8 | width: 100%; | ||
9 | } | ||
10 | |||
11 | .actor-name { | ||
12 | flex-grow: 1; | ||
13 | } | ||
14 | |||
15 | my-subscribe-button { | ||
16 | /deep/ span[role=button] { | ||
17 | padding: 7px 12px; | ||
18 | font-size: 16px; | ||
19 | } | ||
20 | } | ||
6 | } \ No newline at end of file | 21 | } \ No newline at end of file |