diff options
author | rubenwardy <rw@rubenwardy.com> | 2018-05-15 15:00:07 +0100 |
---|---|---|
committer | rubenwardy <rw@rubenwardy.com> | 2018-05-15 15:00:07 +0100 |
commit | e669b18062c6282a8787a48d996811d198cf88f4 (patch) | |
tree | 5abbf8b9fd27a6874ee6c9dab9da98aae135eaaa /app/scss/components.scss | |
parent | f79c14ece8d4c375ad12328a629f6178ec2f261a (diff) | |
download | cheatdb-e669b18062c6282a8787a48d996811d198cf88f4.tar.xz |
Add user rank colors, sort user list
Diffstat (limited to 'app/scss/components.scss')
-rw-r--r-- | app/scss/components.scss | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app/scss/components.scss b/app/scss/components.scss index 30d0d48..8382d7f 100644 --- a/app/scss/components.scss +++ b/app/scss/components.scss @@ -198,3 +198,23 @@ table tfoot { table tfoot td { font-size: 12px; } + +.userlist li.NOT_JOINED { + color: #aaa; +} + +.NOT_JOINED a, a.NOT_JOINED { + color: #7ac; +} + +.ADMIN a, a.ADMIN{ + color: #e30; +} + +.MODERATOR a, a.MODERATOR { + color: #e90; +} + +.EDITOR a, a.EDITOR { + color: #b6f; +} |