2014-05-21 19:17:39 +02:00
|
|
|
/*
|
|
|
|
* Role Lable styles
|
|
|
|
*
|
|
|
|
* Table of Contents
|
|
|
|
*
|
|
|
|
* Role Labels
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/* ==========================================================================
|
|
|
|
Role Labels
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
.role-label {
|
|
|
|
|
|
|
|
background: #eee;
|
|
|
|
|
|
|
|
display: inline-block;
|
2014-07-11 19:20:00 +02:00
|
|
|
padding: 6px 8px;
|
2014-05-21 19:17:39 +02:00
|
|
|
|
|
|
|
color: rgba(0,0,0,0.5);
|
|
|
|
font-size: 9px;
|
2014-07-11 19:20:00 +02:00
|
|
|
line-height: 1;
|
2014-05-21 19:17:39 +02:00
|
|
|
text-transform: uppercase;
|
|
|
|
letter-spacing: 0.1em;
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
|
|
&.owner, &.admin, &.editor {
|
|
|
|
color: rgba(255,255,255,0.7);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.owner {
|
|
|
|
background: $darkgrey;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.admin {
|
|
|
|
background: $red;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.editor {
|
|
|
|
background: $blue;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|