]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
rename rss 2.0 to media rss 2.0
authorRigel Kent <sendmemail@rigelk.eu>
Thu, 2 Jul 2020 14:25:16 +0000 (16:25 +0200)
committerRigel Kent <sendmemail@rigelk.eu>
Thu, 2 Jul 2020 14:30:52 +0000 (16:30 +0200)
client/src/app/shared/shared-main/video/video.service.ts
client/src/app/shared/shared-video-miniature/abstract-video-list.html
client/src/app/shared/shared-video-miniature/abstract-video-list.scss

index 20d13fa107136cda540fa3d886d2d808ea958821..ee3549695f46bc52007d6f3a309d8eb4ff074ed9 100644 (file)
@@ -221,7 +221,7 @@ export class VideoService implements VideosProvider {
     const feeds = [
       {
         format: FeedFormat.RSS,
-        label: 'rss 2.0',
+        label: 'media rss 2.0',
         url: VideoService.BASE_FEEDS_URL + FeedFormat.RSS.toLowerCase()
       },
       {
index 1e919ee720be64816dfb30845bbe0c2a8491ddf0..70be78af0598ce07aba31e0eef236143512e284e 100644 (file)
@@ -4,10 +4,10 @@
       <div placement="bottom" [ngbTooltip]="titleTooltip" container="body">
         {{ titlePage }}
       </div>
-      <my-feed *ngIf="titlePage" [syndicationItems]="syndicationItems"></my-feed>
     </h1>
 
-    <div class="action-block" *ngIf="actions.length > 0">
+    <div class="action-block">
+      <my-feed *ngIf="titlePage" [syndicationItems]="syndicationItems"></my-feed>
       <a [routerLink]="action.routerLink" routerLinkActive="active" *ngFor="let action of actions">
         <button class="btn">
           <my-global-icon [iconName]="action.iconName" aria-hidden="true"></my-global-icon>
index 7f23098aa4ef536147c25bb2855d2e548e5311bc..1660c6812fccbad9a45955843ead117772603019 100644 (file)
     my-feed {
       display: inline-block;
       top: 1px;
-      margin-left: 5px;
       width: max-content;
-      opacity: 0;
-      transition: ease-in .2s opacity;
-    }
-    &:hover my-feed {
-      opacity: 1;
     }
   }