0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00

Merged rolelabels.scss into users.scss

This commit is contained in:
John O'Nolan 2014-07-30 08:17:51 +03:00
parent a6d7dd9e86
commit 04265ed7ca

View file

@ -138,3 +138,40 @@ a.object-list-item {
}
} // .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;
}
}