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:
parent
a6d7dd9e86
commit
04265ed7ca
1 changed files with 38 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Reference in a new issue