diff options
author | ThibG <thib@sitedethib.com> | 2018-03-05 05:09:35 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2018-03-05 05:09:35 +0100 |
commit | 46a9a23749d58eb3ec415fef99da065ca69ea9fc (patch) | |
tree | 79b2a34e52673614db6af7c6f7a5e6a0dc2d7ee2 /app/javascript/styles | |
parent | 4e929b2d173fa22b722c58c0e9f8223eb4f44b0e (diff) |
Make more apparent that an account is blocked or muted (fixes #6544) (#6627)
* Add button to unblock blocked accounts from their profile * Add “Blocked” badge in place of “Follows you” when the user is blocked * Add “Muted” badge (below “follows you” badge)
Diffstat (limited to 'app/javascript/styles')
-rw-r--r-- | app/javascript/styles/mastodon/components.scss | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index bc6123cc7..c8850dede 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -2808,6 +2808,22 @@ a.status-card { border-radius: 4px; } +.account--muting-info { + color: $primary-text-color; + position: absolute; + top: 40px; + left: 10px; + opacity: 0.7; + display: inline-block; + vertical-align: top; + background-color: rgba($base-overlay-background, 0.4); + text-transform: uppercase; + font-size: 11px; + font-weight: 500; + padding: 4px; + border-radius: 4px; +} + .account--action-button { position: absolute; top: 10px; |