diff options
author | Chocobozzz <me@florianbigard.com> | 2022-06-15 14:59:25 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-06-16 11:37:08 +0200 |
commit | 5b0ec7cddb1ae6dbd2057f067382866f846b882c (patch) | |
tree | 5751d96ec4ab0d49b793c4ff1c8edbc8daeab6ac /client/src/app/+my-library | |
parent | b13a0a48bacb53e65e665774e621326452045294 (diff) | |
download | PeerTube-5b0ec7cddb1ae6dbd2057f067382866f846b882c.tar.gz PeerTube-5b0ec7cddb1ae6dbd2057f067382866f846b882c.tar.zst PeerTube-5b0ec7cddb1ae6dbd2057f067382866f846b882c.zip |
Increase global font size
Diffstat (limited to 'client/src/app/+my-library')
7 files changed, 16 insertions, 18 deletions
diff --git a/client/src/app/+my-library/+my-video-channels/my-video-channels.component.html b/client/src/app/+my-library/+my-video-channels/my-video-channels.component.html index aa51764be..f39f90803 100644 --- a/client/src/app/+my-library/+my-video-channels/my-video-channels.component.html +++ b/client/src/app/+my-library/+my-video-channels/my-video-channels.component.html | |||
@@ -34,9 +34,11 @@ | |||
34 | {videoChannel.followersCount, plural, =0 {No subscribers} =1 {1 subscriber} other {{{ videoChannel.followersCount }} subscribers}} | 34 | {videoChannel.followersCount, plural, =0 {No subscribers} =1 {1 subscriber} other {{{ videoChannel.followersCount }} subscribers}} |
35 | </a> | 35 | </a> |
36 | 36 | ||
37 | <div i18n class="video-channel-videos">{videoChannel.videosCount, plural, =0 {No videos} =1 {1 video} other {{{ videoChannel.videosCount }} videos}}</div> | 37 | <div class="d-flex"> |
38 | 38 | <span i18n>{videoChannel.videosCount, plural, =0 {No videos} =1 {1 video} other {{{ videoChannel.videosCount }} videos}}</span> | |
39 | <div i18n class="video-channel-views">{videoChannel.totalViews, plural, =0 {No views} =1 {1 view} other {{{ videoChannel.totalViews }} views}}</div> | 39 | <span class="mx-1">ยท</span> |
40 | <span i18n>{videoChannel.totalViews, plural, =0 {No views} =1 {1 view} other {{{ videoChannel.totalViews | myNumberFormatter }} views}}</span> | ||
41 | </div> | ||
40 | 42 | ||
41 | <div class="video-channel-buttons"> | 43 | <div class="video-channel-buttons"> |
42 | <my-edit-button label [routerLink]="[ '/manage/update', videoChannel.nameWithHost ]"></my-edit-button> | 44 | <my-edit-button label [routerLink]="[ '/manage/update', videoChannel.nameWithHost ]"></my-edit-button> |
diff --git a/client/src/app/+my-library/my-follows/my-followers.component.html b/client/src/app/+my-library/my-follows/my-followers.component.html index 6f4d1a9b7..ef2ab7aca 100644 --- a/client/src/app/+my-library/my-follows/my-followers.component.html +++ b/client/src/app/+my-library/my-follows/my-followers.component.html | |||
@@ -22,7 +22,7 @@ | |||
22 | <my-global-icon iconName="external-link"></my-global-icon> | 22 | <my-global-icon iconName="external-link"></my-global-icon> |
23 | </a> | 23 | </a> |
24 | 24 | ||
25 | <div class="muted"> | 25 | <div class="small muted"> |
26 | <ng-container *ngIf="isFollowingAccount(follow)" i18n>Is following all your channels</ng-container> | 26 | <ng-container *ngIf="isFollowingAccount(follow)" i18n>Is following all your channels</ng-container> |
27 | <ng-container *ngIf="!isFollowingAccount(follow)" i18n>Is following your channel {{ follow.following.name }}</ng-container> | 27 | <ng-container *ngIf="!isFollowingAccount(follow)" i18n>Is following your channel {{ follow.following.name }}</ng-container> |
28 | </div> | 28 | </div> |
diff --git a/client/src/app/+my-library/my-follows/my-followers.component.scss b/client/src/app/+my-library/my-follows/my-followers.component.scss index d8c5f9cff..2caa4cc48 100644 --- a/client/src/app/+my-library/my-follows/my-followers.component.scss +++ b/client/src/app/+my-library/my-follows/my-followers.component.scss | |||
@@ -13,8 +13,4 @@ input[type=text] { | |||
13 | 13 | ||
14 | .actor { | 14 | .actor { |
15 | @include actor-row($min-height: auto, $separator: true); | 15 | @include actor-row($min-height: auto, $separator: true); |
16 | |||
17 | .actor-display-name { | ||
18 | font-size: 16px; | ||
19 | } | ||
20 | } | 16 | } |
diff --git a/client/src/app/+my-library/my-history/my-history.component.html b/client/src/app/+my-library/my-history/my-history.component.html index 76367c029..6791dab52 100644 --- a/client/src/app/+my-library/my-history/my-history.component.html +++ b/client/src/app/+my-library/my-history/my-history.component.html | |||
@@ -27,7 +27,7 @@ | |||
27 | [titlePage]="titlePage" | 27 | [titlePage]="titlePage" |
28 | [getVideosObservableFunction]="getVideosObservableFunction" | 28 | [getVideosObservableFunction]="getVideosObservableFunction" |
29 | [user]="user" | 29 | [user]="user" |
30 | i18n-noResultMessage noResultMessage="You don't have any video in your watch history yet." | 30 | [noResultMessage]="getNoResultMessage()" |
31 | [enableSelection]="false" | 31 | [enableSelection]="false" |
32 | [disabled]="disabled" | 32 | [disabled]="disabled" |
33 | #videosSelection | 33 | #videosSelection |
diff --git a/client/src/app/+my-library/my-history/my-history.component.scss b/client/src/app/+my-library/my-history/my-history.component.scss index 3257b2215..21011a089 100644 --- a/client/src/app/+my-library/my-history/my-history.component.scss +++ b/client/src/app/+my-library/my-history/my-history.component.scss | |||
@@ -6,7 +6,6 @@ | |||
6 | justify-content: center; | 6 | justify-content: center; |
7 | margin-top: 50px; | 7 | margin-top: 50px; |
8 | font-weight: $font-semibold; | 8 | font-weight: $font-semibold; |
9 | font-size: 16px; | ||
10 | } | 9 | } |
11 | 10 | ||
12 | .top-buttons { | 11 | .top-buttons { |
@@ -29,11 +28,11 @@ | |||
29 | 28 | ||
30 | grid-column: 3; | 29 | grid-column: 3; |
31 | display: flex; | 30 | display: flex; |
31 | align-items: center; | ||
32 | 32 | ||
33 | label { | 33 | label { |
34 | margin: 0 0 0 5px; | 34 | margin: 0 0 0 5px; |
35 | color: var(--greyForegroundColor); | 35 | color: var(--greyForegroundColor); |
36 | font-size: 15px; | ||
37 | font-weight: $font-semibold; | 36 | font-weight: $font-semibold; |
38 | } | 37 | } |
39 | } | 38 | } |
@@ -44,8 +43,6 @@ | |||
44 | @include button-with-icon; | 43 | @include button-with-icon; |
45 | 44 | ||
46 | grid-column: 4; | 45 | grid-column: 4; |
47 | |||
48 | font-size: 15px; | ||
49 | } | 46 | } |
50 | } | 47 | } |
51 | 48 | ||
diff --git a/client/src/app/+my-library/my-history/my-history.component.ts b/client/src/app/+my-library/my-history/my-history.component.ts index 766869637..c4878c957 100644 --- a/client/src/app/+my-library/my-history/my-history.component.ts +++ b/client/src/app/+my-library/my-history/my-history.component.ts | |||
@@ -134,4 +134,12 @@ export class MyHistoryComponent implements OnInit, DisableForReuseHook { | |||
134 | error: err => this.notifier.error(err.message) | 134 | error: err => this.notifier.error(err.message) |
135 | }) | 135 | }) |
136 | } | 136 | } |
137 | |||
138 | getNoResultMessage () { | ||
139 | if (this.search) { | ||
140 | return $localize`No videos found for "${this.search}".` | ||
141 | } | ||
142 | |||
143 | return $localize`You don't have any video in your watch history yet.` | ||
144 | } | ||
137 | } | 145 | } |
diff --git a/client/src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.scss b/client/src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.scss index 840e449ea..93bc18fe2 100644 --- a/client/src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.scss +++ b/client/src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.scss | |||
@@ -1,11 +1,6 @@ | |||
1 | @use '_variables' as *; | 1 | @use '_variables' as *; |
2 | @use '_mixins' as *; | 2 | @use '_mixins' as *; |
3 | 3 | ||
4 | label { | ||
5 | font-weight: $font-regular; | ||
6 | font-size: 100%; | ||
7 | } | ||
8 | |||
9 | .video-playlist-title { | 4 | .video-playlist-title { |
10 | @include settings-big-title; | 5 | @include settings-big-title; |
11 | } | 6 | } |