diff options
author | ThibG <thib@sitedethib.com> | 2020-04-04 19:02:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-04 19:02:10 +0200 |
commit | d3ff06a3205130fa10ffc5d736e8206a9725b5df (patch) | |
tree | 86eab42e503b972c1cfc13df26c2c02f1631299f /app/javascript/styles | |
parent | ae7e3f09334dfc8990c4c98c742263b18c9e3fea (diff) |
Add explanation as to why unlocked accounts may have follow requests (#13385)
* Add explanation as to why unlocked accounts may have follow requests * Change wording to avoid “silenced”
Diffstat (limited to 'app/javascript/styles')
-rw-r--r-- | app/javascript/styles/mastodon/components.scss | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index 3b68766a8..26774ab43 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -3800,7 +3800,8 @@ a.status-card.compact:hover { } .empty-column-indicator, -.error-column { +.error-column, +.follow_requests-unlocked_explanation { color: $dark-text-color; background: $ui-base-color; text-align: center; @@ -3831,6 +3832,11 @@ a.status-card.compact:hover { } } +.follow_requests-unlocked_explanation { + background: darken($ui-base-color, 4%); + contain: initial; +} + .error-column { flex-direction: column; } |