diff options
author | Caroline Chuong <caroline.chuong@octo.com> | 2020-06-13 00:53:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-13 00:53:56 +0200 |
commit | c9e3565dc8d0e5ce0dcbdb4fe8deb7a257d9e2a0 (patch) | |
tree | 2646dbf2602648e84102121da72629e313e61297 /client/src/app/shared | |
parent | 1a40132c67e50c94a7bd3f6b63c075f471b3d6cc (diff) | |
download | PeerTube-c9e3565dc8d0e5ce0dcbdb4fe8deb7a257d9e2a0.tar.gz PeerTube-c9e3565dc8d0e5ce0dcbdb4fe8deb7a257d9e2a0.tar.zst PeerTube-c9e3565dc8d0e5ce0dcbdb4fe8deb7a257d9e2a0.zip |
fix headings order or add missing ones (#2871)
Co-authored-by: Rigel Kent <sendmemail@rigelk.eu>
Diffstat (limited to 'client/src/app/shared')
3 files changed, 11 insertions, 6 deletions
diff --git a/client/src/app/shared/instance/instance-statistics.component.html b/client/src/app/shared/instance/instance-statistics.component.html index bcb2308fe..399cf10fe 100644 --- a/client/src/app/shared/instance/instance-statistics.component.html +++ b/client/src/app/shared/instance/instance-statistics.component.html | |||
@@ -1,7 +1,7 @@ | |||
1 | <p i18n *ngIf="null === serverStats">Loading instance statistics...</p> | 1 | <p i18n *ngIf="null === serverStats">Loading instance statistics...</p> |
2 | 2 | ||
3 | <section *ngIf="null !== serverStats"> | 3 | <section *ngIf="null !== serverStats"> |
4 | <h5 i18n>Local</h5> | 4 | <h3 i18n>Local</h3> |
5 | 5 | ||
6 | <div class="row"> | 6 | <div class="row"> |
7 | <div class="col-6 col-lg-4 col-xl-3"> | 7 | <div class="col-6 col-lg-4 col-xl-3"> |
@@ -55,7 +55,7 @@ | |||
55 | </div> | 55 | </div> |
56 | </div> | 56 | </div> |
57 | 57 | ||
58 | <h5 i18n>Federation</h5> | 58 | <h3 i18n>Federation</h3> |
59 | 59 | ||
60 | <div class="row"> | 60 | <div class="row"> |
61 | <div class="col-6 col-lg-4 col-xl-3"> | 61 | <div class="col-6 col-lg-4 col-xl-3"> |
diff --git a/client/src/app/shared/instance/instance-statistics.component.scss b/client/src/app/shared/instance/instance-statistics.component.scss index 63f8911f6..5286ab03a 100644 --- a/client/src/app/shared/instance/instance-statistics.component.scss +++ b/client/src/app/shared/instance/instance-statistics.component.scss | |||
@@ -1,3 +1,8 @@ | |||
1 | |||
2 | h3 { | ||
3 | font-size: 1.25rem; | ||
4 | } | ||
5 | |||
1 | .stat { | 6 | .stat { |
2 | text-align: center; | 7 | text-align: center; |
3 | margin-bottom: 1em; | 8 | margin-bottom: 1em; |
diff --git a/client/src/app/shared/video/abstract-video-list.html b/client/src/app/shared/video/abstract-video-list.html index 54557df6b..548370843 100644 --- a/client/src/app/shared/video/abstract-video-list.html +++ b/client/src/app/shared/video/abstract-video-list.html | |||
@@ -1,11 +1,11 @@ | |||
1 | <div class="margin-content"> | 1 | <div class="margin-content"> |
2 | <div class="videos-header"> | 2 | <div class="videos-header"> |
3 | <div *ngIf="titlePage" class="title-page title-page-single"> | 3 | <h1 *ngIf="titlePage" class="title-page title-page-single"> |
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> | 7 | <my-feed *ngIf="titlePage" [syndicationItems]="syndicationItems"></my-feed> |
8 | </div> | 8 | </h1> |
9 | 9 | ||
10 | <div class="action-block" *ngIf="actions.length > 0"> | 10 | <div class="action-block" *ngIf="actions.length > 0"> |
11 | <a [routerLink]="action.routerLink" routerLinkActive="active" *ngFor="let action of actions"> | 11 | <a [routerLink]="action.routerLink" routerLinkActive="active" *ngFor="let action of actions"> |
@@ -31,9 +31,9 @@ | |||
31 | class="videos" | 31 | class="videos" |
32 | > | 32 | > |
33 | <ng-container *ngFor="let video of videos; trackBy: videoById;"> | 33 | <ng-container *ngFor="let video of videos; trackBy: videoById;"> |
34 | <div class="date-title" *ngIf="getCurrentGroupedDateLabel(video)"> | 34 | <h2 class="date-title" *ngIf="getCurrentGroupedDateLabel(video)"> |
35 | {{ getCurrentGroupedDateLabel(video) }} | 35 | {{ getCurrentGroupedDateLabel(video) }} |
36 | </div> | 36 | </h2> |
37 | 37 | ||
38 | <div class="video-wrapper"> | 38 | <div class="video-wrapper"> |
39 | <my-video-miniature | 39 | <my-video-miniature |