-
Notifications
You must be signed in to change notification settings - Fork 943
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Banned user reviews #855
Banned user reviews #855
Conversation
f0b4112
to
ad77d5a
Compare
Show a dummy author display name in reviews from banned users.
60d5047
to
06e869f
Compare
} | ||
|
||
.backgroundDark { | ||
stop-color: var(--marketplaceColor); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd add more variables to marketplace.css
--bannedColorLight: var(--marketplaceColorLight);
stop-color: var(--bannedColorLight);
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM - although I'd create more colors to marketplace.css.
CSS parameterization makes customizations a bit easier.
Add new css properties for setting the background color used in the banned users icon.
a8c38f3
to
33625ea
Compare
Currently showing reviews from banned users breaks as the data provided for those users by the API is limited. This PR solves this problem by showing a placeholder name in place of the author display name in such cases. Also the background of the banned user avatar is changed to match the marketplace color theme.