Add banned user icon color properties

Add new css properties for setting the background color used in the
banned users icon.
This commit is contained in:
Hannu Lyytikainen 2018-06-27 08:41:45 +03:00
parent 06e869fa2d
commit 33625eaa85
2 changed files with 4 additions and 2 deletions

View file

@ -1,11 +1,11 @@
@import '../../marketplace.css';
.backgroundLight {
stop-color: var(--marketplaceColorLight);
stop-color: var(--bannedColorLight);
}
.backgroundDark {
stop-color: var(--marketplaceColor);
stop-color: var(--bannedColorDark);
}
.foregroundFill {

View file

@ -53,6 +53,8 @@
--successColorDark: #239954;
--failColor: #ff0000;
--attentionColor: #ffaa00;
--bannedColorLight: var(--marketplaceColorLight);
--bannedColorDark: var(--marketplaceColor);
--matterColorDark: #000000;
--matterColor: #4a4a4a;