diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-11-12 10:17:22 +0100 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2022-11-12 10:17:22 +0100 |
commit | fdfacb0ec0e81e323e67abde0d4b5b16f0d8bf0a (patch) | |
tree | 2d1b24eb11fe85b7d02b98d1a34606a6df845ff0 /app | |
parent | 6df9d388e7cb3d90a6d1fb0a920c1ce16db60822 (diff) |
Revert "Revert "Change "Allow trends without prior review" setting to include statuses (#17977)""
This reverts commit bfc539cfb4f040fcffac740b36791c26c2a74119.
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/styles/mastodon/accounts.scss | 9 | ||||
-rw-r--r-- | app/javascript/styles/mastodon/forms.scss | 3 | ||||
-rw-r--r-- | app/models/account.rb | 4 |
3 files changed, 14 insertions, 2 deletions
diff --git a/app/javascript/styles/mastodon/accounts.scss b/app/javascript/styles/mastodon/accounts.scss index 54b65bfc8..c007eb4b5 100644 --- a/app/javascript/styles/mastodon/accounts.scss +++ b/app/javascript/styles/mastodon/accounts.scss @@ -202,7 +202,8 @@ } .account-role, -.simple_form .recommended { +.simple_form .recommended, +.simple_form .not_recommended { display: inline-block; padding: 4px 6px; cursor: default; @@ -227,6 +228,12 @@ } } +.simple_form .not_recommended { + color: lighten($error-red, 12%); + background-color: rgba(lighten($error-red, 12%), 0.1); + border-color: rgba(lighten($error-red, 12%), 0.5); +} + .account__header__fields { max-width: 100vw; padding: 0; diff --git a/app/javascript/styles/mastodon/forms.scss b/app/javascript/styles/mastodon/forms.scss index 4c731be43..a3ddc7636 100644 --- a/app/javascript/styles/mastodon/forms.scss +++ b/app/javascript/styles/mastodon/forms.scss @@ -103,7 +103,8 @@ code { } } - .recommended { + .recommended, + .not_recommended { position: absolute; margin: 0 4px; margin-top: -2px; diff --git a/app/models/account.rb b/app/models/account.rb index 7059c555f..ab8a65720 100644 --- a/app/models/account.rb +++ b/app/models/account.rb @@ -260,6 +260,10 @@ class Account < ApplicationRecord update!(memorial: true) end + def trendable + boolean_with_default('trendable', Setting.trendable_by_default) + end + def sign? true end |