From dc8902634864841be7ca483b8e1c0f5afa609c32 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 29 Jul 2019 17:12:18 +0200 Subject: Add show channel button in account page --- .../account-video-channels.component.html | 6 +++++- .../account-video-channels.component.ts | 4 ++++ .../app/shared/video/video-miniature.component.scss | 2 +- client/src/sass/include/_miniature.scss | 20 ++++++++++++++++++-- client/src/sass/include/_variables.scss | 1 + 5 files changed, 29 insertions(+), 4 deletions(-) (limited to 'client') diff --git a/client/src/app/+accounts/account-video-channels/account-video-channels.component.html b/client/src/app/+accounts/account-video-channels/account-video-channels.component.html index e9c8179b7..cb23bb522 100644 --- a/client/src/app/+accounts/account-video-channels/account-video-channels.component.html +++ b/client/src/app/+accounts/account-video-channels/account-video-channels.component.html @@ -5,7 +5,7 @@
diff --git a/client/src/app/+accounts/account-video-channels/account-video-channels.component.ts b/client/src/app/+accounts/account-video-channels/account-video-channels.component.ts index 4d07d653f..7144f4b5f 100644 --- a/client/src/app/+accounts/account-video-channels/account-video-channels.component.ts +++ b/client/src/app/+accounts/account-video-channels/account-video-channels.component.ts @@ -89,4 +89,8 @@ export class AccountVideoChannelsComponent implements OnInit, OnDestroy { this.loadMoreChannels() } + + getVideoChannelLink (videoChannel: VideoChannel) { + return [ '/video-channels', videoChannel.nameWithHost ] + } } diff --git a/client/src/app/shared/video/video-miniature.component.scss b/client/src/app/shared/video/video-miniature.component.scss index dac178bde..3658ee3c0 100644 --- a/client/src/app/shared/video/video-miniature.component.scss +++ b/client/src/app/shared/video/video-miniature.component.scss @@ -9,7 +9,7 @@ $more-margin-right: 10px; width: $video-miniature-width; display: inline-flex; flex-direction: column; - margin-bottom: 30px; + margin-bottom: $video-miniature-margin-bottom; height: 195px; vertical-align: top; diff --git a/client/src/sass/include/_miniature.scss b/client/src/sass/include/_miniature.scss index 26c327956..e4ed88d31 100644 --- a/client/src/sass/include/_miniature.scss +++ b/client/src/sass/include/_miniature.scss @@ -142,10 +142,13 @@ $play-overlay-width: 18px; @mixin miniature-rows { max-height: 540px; // 2 rows max overflow: hidden; - padding-top: 10px; &:first-child { padding-top: 30px; + + .section-title { + border-top: none !important; + } } my-video-miniature { @@ -155,9 +158,11 @@ $play-overlay-width: 18px; .section-title { font-size: 24px; font-weight: $font-semibold; - margin-bottom: 30px; + padding-top: 15px; + margin-bottom: 15px; display: flex; justify-content: space-between; + border-top: 1px solid $separator-border-color; a { &:hover, &:focus:not(.focus-visible), &:active { @@ -194,6 +199,17 @@ $play-overlay-width: 18px; } } + .show-more { + position: relative; + top: -5px; + display: inline-block; + font-size: 16px; + text-transform: uppercase; + color: $grey-foreground-color; + margin-bottom: 10px; + font-weight: $font-semibold; + } + @media screen and (max-width: $mobile-view) { max-height: initial; overflow: initial; diff --git a/client/src/sass/include/_variables.scss b/client/src/sass/include/_variables.scss index aafeda257..f629dc23e 100644 --- a/client/src/sass/include/_variables.scss +++ b/client/src/sass/include/_variables.scss @@ -47,6 +47,7 @@ $footer-border-color: $header-border-color; $separator-border-color: rgba(0, 0, 0, 0.10); $video-miniature-width: 238px; +$video-miniature-margin-bottom: 30px; $video-thumbnail-height: 122px; $video-thumbnail-width: 223px; $video-thumbnail-ratio: $video-thumbnail-width / $video-thumbnail-height; -- cgit v1.2.3