mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
44 lines
No EOL
712 B
SCSS
44 lines
No EOL
712 B
SCSS
/*
|
|
* Role Lable styles
|
|
*
|
|
* Table of Contents
|
|
*
|
|
* Role Labels
|
|
*/
|
|
|
|
|
|
/* ==========================================================================
|
|
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;
|
|
}
|
|
|
|
} |