Ghost/core/client/assets/sass/layouts/users.scss

237 lines
4.4 KiB
SCSS
Raw Normal View History

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;
} // .object-list-title
.object-list-item {
@media (max-width: 600px) {
2014-07-30 09:17:00 +04:00
display: block;
padding: 15px 0;
@include clearfix;
}
@media (min-width: 601px) {
display: flex;
justify-content: start;
align-items: center;
2014-07-30 09:17:00 +04:00
padding: 0 15px;
height: 68px;
2014-07-30 09:17:00 +04:00
}
border-top: 1px solid $lightbrown;
} // .object-list-item
a.object-list-item {
text-decoration: none;
&:hover {
background: lighten($lightbrown, 5%);
}
&: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;
&:before {
position: absolute;
top: 50%;
left: 0;
right: 0;
margin-top: -7px;
text-align: center;
color: $brown;
font-size: 14px;
}
} // .object-list-item-icon
.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%;
background-size: 105%;
2014-08-12 18:26:20 +04:00
background-position: center center;
2014-07-30 09:17:00 +04:00
} // .object-list-item-figure
.object-list-item-icon,
.object-list-item-figure {
@media (max-width: 500px) {
float: left;
margin-right: 15px;
}
}
.object-list-item-body {
flex: 1 1 auto;
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;
}
} // .object-list-item-body
.object-list-item-aside {
@media (max-width: 500px) {
float: left;
width: 100%;
margin-top: 15px;
}
.object-list-action:not(:first-of-type) {
margin-left: 20px;
@media (min-width: 501px) {
margin-left: 50px;
}
}
.role-label {
float: left;
margin-top: -1px;
}
.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-07-30 09:17:51 +04:00
} // .object-list-action
//
// 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-08-13 17:25:28 +04:00
//
// User Actions
// --------------------------------------------------
.user-actions-menu {
left: auto;
right: 0;
top: calc(100% + 17px);
}
//
// Invite User Modal
// --------------------------------------------------
.invite-new-user {
.modal-body {
@include clearfix;
fieldset {
margin: 1em 0 0 0;
}
}
.form-group {
margin-bottom: 0;
padding: 0;
label {
position: static;
display: block;
text-align: left;
}
&:nth-of-type(1) {
float: left;
width: 60%;
}
&:nth-of-type(2) {
float: left;
width: 35%;
margin-left: 5%;
}
input {
width: 100%;
}
} // .form-group
.button-add {
width: 100%;
padding: 0.85rem 1.9rem;
font-size: 14px;
line-height: 16px;
}
} // .invite-new-user