2014-07-30 09:17:00 +04:00
|
|
|
//
|
|
|
|
// Users
|
|
|
|
// --------------------------------------------------
|
2014-07-30 11:51:37 +04:00
|
|
|
// Slug: /ghost/settings/users/
|
|
|
|
// --------------------------------------------------
|
2014-07-30 09:17:00 +04:00
|
|
|
// TODO: Rename everything. This is a layout, rather
|
|
|
|
// than a re-usable component.
|
|
|
|
|
|
|
|
.invited-users {
|
|
|
|
margin-bottom: 34px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.object-list-title {
|
|
|
|
font-size: 13px;
|
|
|
|
font-weight: normal;
|
|
|
|
color: $midbrown;
|
|
|
|
margin-bottom: 14px;
|
2014-09-23 11:36:46 +04:00
|
|
|
}
|
2014-07-30 09:17:00 +04:00
|
|
|
|
|
|
|
.object-list-item {
|
|
|
|
|
2014-09-21 23:35:33 +04:00
|
|
|
@media (max-width: 600px) {
|
2014-07-30 09:17:00 +04:00
|
|
|
display: block;
|
|
|
|
padding: 15px 0;
|
|
|
|
@include clearfix;
|
|
|
|
}
|
|
|
|
|
2014-09-21 23:35:33 +04:00
|
|
|
@media (min-width: 601px) {
|
2014-08-26 14:56:02 +04:00
|
|
|
display: flex;
|
|
|
|
justify-content: start;
|
|
|
|
align-items: center;
|
2014-07-30 09:17:00 +04:00
|
|
|
padding: 0 15px;
|
2014-09-21 23:35:33 +04:00
|
|
|
height: 68px;
|
2014-07-30 09:17:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
border-top: 1px solid $lightbrown;
|
|
|
|
|
2014-09-23 11:36:46 +04:00
|
|
|
}
|
2014-07-30 09:17:00 +04:00
|
|
|
|
|
|
|
a.object-list-item {
|
|
|
|
text-decoration: none;
|
2014-09-23 11:36:46 +04:00
|
|
|
|
2014-07-30 09:17:00 +04:00
|
|
|
&:hover {
|
|
|
|
background: lighten($lightbrown, 5%);
|
|
|
|
}
|
2014-09-23 11:36:46 +04:00
|
|
|
|
2014-07-30 09:17:00 +04:00
|
|
|
&:last-of-type:hover {
|
|
|
|
box-shadow: inset 0px -1px 0px $lightbrown;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.object-list-item-icon {
|
|
|
|
width: 35px;
|
|
|
|
height: 35px;
|
|
|
|
display: block;
|
|
|
|
border-radius: 100%;
|
|
|
|
background: $lightbrown;
|
|
|
|
font-size: 0px;
|
|
|
|
color: transparent;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
2014-09-23 11:36:46 +04:00
|
|
|
|
2014-07-30 09:17:00 +04:00
|
|
|
&:before {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
margin-top: -7px;
|
|
|
|
text-align: center;
|
|
|
|
color: $brown;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
2014-09-23 11:36:46 +04:00
|
|
|
}
|
2014-07-30 09:17:00 +04:00
|
|
|
|
|
|
|
.object-list-item-figure {
|
|
|
|
width: 35px;
|
2014-08-12 18:26:20 +04:00
|
|
|
height: 35px;
|
2014-07-30 09:17:00 +04:00
|
|
|
display: block;
|
|
|
|
border: 1px solid #979797;
|
2014-08-12 18:26:20 +04:00
|
|
|
border-radius: 100%;
|
2014-09-17 14:41:34 +04:00
|
|
|
background-size: 105%;
|
2014-08-12 18:26:20 +04:00
|
|
|
background-position: center center;
|
2014-09-23 11:36:46 +04:00
|
|
|
}
|
2014-07-30 09:17:00 +04:00
|
|
|
|
|
|
|
.object-list-item-icon,
|
|
|
|
.object-list-item-figure {
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
float: left;
|
|
|
|
margin-right: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.object-list-item-body {
|
2014-09-21 23:35:33 +04:00
|
|
|
flex: 1 1 auto;
|
2014-08-26 14:56:02 +04:00
|
|
|
align-items: stretch;
|
2014-07-30 09:17:00 +04:00
|
|
|
padding-left: 15px;
|
|
|
|
line-height: 1;
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
margin-top: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.name {
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 15px;
|
|
|
|
font-weight: 400;
|
|
|
|
color: $darkgrey;
|
|
|
|
}
|
|
|
|
.description {
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 12px;
|
|
|
|
color: $midbrown;
|
2014-08-12 18:26:20 +04:00
|
|
|
white-space: nowrap;
|
2014-07-30 09:17:00 +04:00
|
|
|
margin-top: 3px;
|
|
|
|
}
|
|
|
|
|
2014-09-23 11:36:46 +04:00
|
|
|
} //.object-list-item-body
|
2014-07-30 09:17:00 +04:00
|
|
|
|
|
|
|
.object-list-item-aside {
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
float: left;
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
2014-09-23 11:36:46 +04:00
|
|
|
|
2014-07-30 09:17:00 +04:00
|
|
|
.object-list-action:not(:first-of-type) {
|
|
|
|
margin-left: 20px;
|
|
|
|
@media (min-width: 501px) {
|
|
|
|
margin-left: 50px;
|
|
|
|
}
|
|
|
|
}
|
2014-09-23 11:36:46 +04:00
|
|
|
|
2014-07-30 09:17:00 +04:00
|
|
|
.role-label {
|
|
|
|
float: left;
|
|
|
|
margin-top: -1px;
|
|
|
|
}
|
2014-09-23 11:36:46 +04:00
|
|
|
|
2014-07-30 09:17:00 +04:00
|
|
|
.role-label + .role-label {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
} // .object-list-item-aside
|
|
|
|
|
|
|
|
.object-list-action {
|
|
|
|
font-size: 11px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
text-decoration: underline;
|
|
|
|
&:hover {
|
|
|
|
|
|
|
|
}
|
2014-09-23 11:36:46 +04:00
|
|
|
}
|
2014-07-30 09:17:51 +04:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Role Labels
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
.role-label {
|
|
|
|
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;
|
2014-08-16 20:39:52 +04:00
|
|
|
background: #eee;
|
2014-07-30 09:17:51 +04:00
|
|
|
|
|
|
|
&.owner {
|
2014-08-16 20:39:52 +04:00
|
|
|
color: rgba(255,255,255,0.8);
|
2014-07-30 09:17:51 +04:00
|
|
|
background: $darkgrey;
|
|
|
|
}
|
|
|
|
|
2014-08-16 20:39:52 +04:00
|
|
|
&.administrator {
|
|
|
|
color: rgba(255,255,255,0.8);
|
2014-07-30 09:17:51 +04:00
|
|
|
background: $red;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.editor {
|
2014-08-16 20:39:52 +04:00
|
|
|
color: rgba(255,255,255,0.8);
|
2014-07-30 09:17:51 +04:00
|
|
|
background: $blue;
|
|
|
|
}
|
|
|
|
|
2014-07-30 14:22:02 +04:00
|
|
|
}
|
|
|
|
|
2014-08-13 17:25:28 +04:00
|
|
|
//
|
|
|
|
// User Actions
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
.user-actions-menu {
|
|
|
|
left: auto;
|
|
|
|
right: 0;
|
|
|
|
top: calc(100% + 17px);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-07-30 14:22:02 +04:00
|
|
|
//
|
|
|
|
// Invite User Modal
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
.invite-new-user {
|
2014-09-23 11:36:46 +04:00
|
|
|
|
2014-07-30 14:22:02 +04:00
|
|
|
.modal-body {
|
|
|
|
@include clearfix;
|
2014-09-23 11:36:46 +04:00
|
|
|
|
2014-07-30 14:22:02 +04:00
|
|
|
fieldset {
|
|
|
|
margin: 1em 0 0 0;
|
|
|
|
}
|
|
|
|
}
|
2014-09-23 11:36:46 +04:00
|
|
|
|
2014-07-30 14:22:02 +04:00
|
|
|
.form-group {
|
|
|
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
label {
|
|
|
|
position: static;
|
|
|
|
display: block;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:nth-of-type(1) {
|
|
|
|
float: left;
|
|
|
|
width: 60%;
|
|
|
|
}
|
2014-09-23 11:36:46 +04:00
|
|
|
|
2014-07-30 14:22:02 +04:00
|
|
|
&:nth-of-type(2) {
|
|
|
|
float: left;
|
|
|
|
width: 35%;
|
|
|
|
margin-left: 5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2014-09-23 11:36:46 +04:00
|
|
|
} //.form-group
|
2014-07-30 14:22:02 +04:00
|
|
|
|
|
|
|
.button-add {
|
|
|
|
width: 100%;
|
|
|
|
padding: 0.85rem 1.9rem;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 16px;
|
|
|
|
}
|
|
|
|
|
2014-09-23 11:36:46 +04:00
|
|
|
} //.invite-new-user
|