From 04265ed7ca5da785d1c4c31217ac85e6abb3442f Mon Sep 17 00:00:00 2001 From: John O'Nolan Date: Wed, 30 Jul 2014 08:17:51 +0300 Subject: [PATCH] Merged rolelabels.scss into users.scss --- core/client/assets/sass/layouts/users.scss | 39 +++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/core/client/assets/sass/layouts/users.scss b/core/client/assets/sass/layouts/users.scss index 7beb493ab9..9b9572e05a 100644 --- a/core/client/assets/sass/layouts/users.scss +++ b/core/client/assets/sass/layouts/users.scss @@ -137,4 +137,41 @@ a.object-list-item { &:hover { } -} // .object-list-action \ No newline at end of file +} // .object-list-action + + +// +// Role Labels +// -------------------------------------------------- + +.role-label { + + background: #eee; + + display: inline-block; + padding: 6px 8px; + + color: rgba(0,0,0,0.5); + font-size: 9px; + line-height: 1; + text-transform: uppercase; + letter-spacing: 0.1em; + font-weight: 400; + + &.owner, &.admin, &.editor { + color: rgba(255,255,255,0.8); + } + + &.owner { + background: $darkgrey; + } + + &.admin { + background: $red; + } + + &.editor { + background: $blue; + } + +} \ No newline at end of file