Browse Source
Change account moderation notes to make links clickable (#22553)
* Change account moderation notes to make links clickable
Fixes #22539
* Fix styling of account moderation note links
closed-social-glitch-2
Claire
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
10 additions and
1 deletions
-
app/javascript/styles/mastodon/admin.scss
-
app/views/admin/report_notes/_report_note.html.haml
|
|
@ -1572,6 +1572,15 @@ a.sparkline { |
|
|
|
margin-bottom: 0; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
a { |
|
|
|
color: $highlight-text-color; |
|
|
|
text-decoration: none; |
|
|
|
|
|
|
|
&:hover { |
|
|
|
text-decoration: underline; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
&__actions { |
|
|
|
|
|
@ -8,7 +8,7 @@ |
|
|
|
= l report_note.created_at.to_date |
|
|
|
|
|
|
|
.report-notes__item__content |
|
|
|
= simple_format(h(report_note.content)) |
|
|
|
= linkify(report_note.content) |
|
|
|
|
|
|
|
- if can?(:destroy, report_note) |
|
|
|
.report-notes__item__actions |
|
|
|