diff options
3 files changed, 3 insertions, 9 deletions
diff --git a/client/src/app/shared/shared-main/video/video.service.ts b/client/src/app/shared/shared-main/video/video.service.ts index 20d13fa10..ee3549695 100644 --- a/client/src/app/shared/shared-main/video/video.service.ts +++ b/client/src/app/shared/shared-main/video/video.service.ts | |||
@@ -221,7 +221,7 @@ export class VideoService implements VideosProvider { | |||
221 | const feeds = [ | 221 | const feeds = [ |
222 | { | 222 | { |
223 | format: FeedFormat.RSS, | 223 | format: FeedFormat.RSS, |
224 | label: 'rss 2.0', | 224 | label: 'media rss 2.0', |
225 | url: VideoService.BASE_FEEDS_URL + FeedFormat.RSS.toLowerCase() | 225 | url: VideoService.BASE_FEEDS_URL + FeedFormat.RSS.toLowerCase() |
226 | }, | 226 | }, |
227 | { | 227 | { |
diff --git a/client/src/app/shared/shared-video-miniature/abstract-video-list.html b/client/src/app/shared/shared-video-miniature/abstract-video-list.html index 1e919ee72..70be78af0 100644 --- a/client/src/app/shared/shared-video-miniature/abstract-video-list.html +++ b/client/src/app/shared/shared-video-miniature/abstract-video-list.html | |||
@@ -4,10 +4,10 @@ | |||
4 | <div placement="bottom" [ngbTooltip]="titleTooltip" container="body"> | 4 | <div placement="bottom" [ngbTooltip]="titleTooltip" container="body"> |
5 | {{ titlePage }} | 5 | {{ titlePage }} |
6 | </div> | 6 | </div> |
7 | <my-feed *ngIf="titlePage" [syndicationItems]="syndicationItems"></my-feed> | ||
8 | </h1> | 7 | </h1> |
9 | 8 | ||
10 | <div class="action-block" *ngIf="actions.length > 0"> | 9 | <div class="action-block"> |
10 | <my-feed *ngIf="titlePage" [syndicationItems]="syndicationItems"></my-feed> | ||
11 | <a [routerLink]="action.routerLink" routerLinkActive="active" *ngFor="let action of actions"> | 11 | <a [routerLink]="action.routerLink" routerLinkActive="active" *ngFor="let action of actions"> |
12 | <button class="btn"> | 12 | <button class="btn"> |
13 | <my-global-icon [iconName]="action.iconName" aria-hidden="true"></my-global-icon> | 13 | <my-global-icon [iconName]="action.iconName" aria-hidden="true"></my-global-icon> |
diff --git a/client/src/app/shared/shared-video-miniature/abstract-video-list.scss b/client/src/app/shared/shared-video-miniature/abstract-video-list.scss index 7f23098aa..1660c6812 100644 --- a/client/src/app/shared/shared-video-miniature/abstract-video-list.scss +++ b/client/src/app/shared/shared-video-miniature/abstract-video-list.scss | |||
@@ -14,13 +14,7 @@ | |||
14 | my-feed { | 14 | my-feed { |
15 | display: inline-block; | 15 | display: inline-block; |
16 | top: 1px; | 16 | top: 1px; |
17 | margin-left: 5px; | ||
18 | width: max-content; | 17 | width: max-content; |
19 | opacity: 0; | ||
20 | transition: ease-in .2s opacity; | ||
21 | } | ||
22 | &:hover my-feed { | ||
23 | opacity: 1; | ||
24 | } | 18 | } |
25 | } | 19 | } |
26 | 20 | ||