diff options
author | Chocobozzz <me@florianbigard.com> | 2023-08-17 14:29:44 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2023-08-17 14:34:49 +0200 |
commit | 23092139a647b1b09e07275d80fd05e2d7505ba5 (patch) | |
tree | 5ace3b2a06bf8a6a11f1b86210f2282797a5f913 /client/src/app | |
parent | c5f8dc0533153658f46b68a9e214646b41abebfc (diff) | |
download | PeerTube-23092139a647b1b09e07275d80fd05e2d7505ba5.tar.gz PeerTube-23092139a647b1b09e07275d80fd05e2d7505ba5.tar.zst PeerTube-23092139a647b1b09e07275d80fd05e2d7505ba5.zip |
Better abuse style of removed videos
Diffstat (limited to 'client/src/app')
-rw-r--r-- | client/src/app/shared/shared-abuse-list/abuse-list-table.component.html | 6 | ||||
-rw-r--r-- | client/src/app/shared/shared-abuse-list/abuse-list-table.component.scss | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/client/src/app/shared/shared-abuse-list/abuse-list-table.component.html b/client/src/app/shared/shared-abuse-list/abuse-list-table.component.html index 253237122..3bed812d1 100644 --- a/client/src/app/shared/shared-abuse-list/abuse-list-table.component.html +++ b/client/src/app/shared/shared-abuse-list/abuse-list-table.component.html | |||
@@ -80,9 +80,11 @@ | |||
80 | <div class="table-video-text"> | 80 | <div class="table-video-text"> |
81 | <div> | 81 | <div> |
82 | {{ abuse.video.name }} | 82 | {{ abuse.video.name }} |
83 | <my-global-icon iconName="delete"></my-global-icon> | 83 | |
84 | <span i18n class="fst-italic">(Deleted video)</span> | ||
84 | </div> | 85 | </div> |
85 | <div i18n>by {{ abuse.video.channel?.displayName }} on {{ abuse.video.channel?.host }} </div> | 86 | |
87 | <div class="video-owner" i18n>by {{ abuse.video.channel?.displayName }} on {{ abuse.video.channel?.host }} </div> | ||
86 | </div> | 88 | </div> |
87 | </div> | 89 | </div> |
88 | </td> | 90 | </td> |
diff --git a/client/src/app/shared/shared-abuse-list/abuse-list-table.component.scss b/client/src/app/shared/shared-abuse-list/abuse-list-table.component.scss index 2d5c77ea4..bcc58c0d4 100644 --- a/client/src/app/shared/shared-abuse-list/abuse-list-table.component.scss +++ b/client/src/app/shared/shared-abuse-list/abuse-list-table.component.scss | |||
@@ -2,7 +2,8 @@ | |||
2 | @use '_mixins' as *; | 2 | @use '_mixins' as *; |
3 | 3 | ||
4 | .comment-flagged-account, | 4 | .comment-flagged-account, |
5 | .account-flagged-handle { | 5 | .account-flagged-handle, |
6 | .video-owner { | ||
6 | font-size: 11px; | 7 | font-size: 11px; |
7 | color: var(--greyForegroundColor); | 8 | color: var(--greyForegroundColor); |
8 | } | 9 | } |