2017-11-28 11:32:14 +00:00
|
|
|
.view-customize {
|
2018-12-14 15:47:41 +00:00
|
|
|
> .explain-user-perms {
|
|
|
|
padding: 15px 25px;
|
|
|
|
background-color: map-get($yellow-shades, 100);
|
|
|
|
border: 1px solid map-get($yellow-shades, 300);
|
|
|
|
@include border-radius(3px);
|
2018-12-16 12:56:50 +00:00
|
|
|
@extend .no-select;
|
2018-12-14 15:47:41 +00:00
|
|
|
|
|
|
|
> .title {
|
|
|
|
font-weight: 700;
|
|
|
|
font-size: 1.1rem;
|
|
|
|
color: map-get($yellow-shades, 800);
|
2018-12-16 12:56:50 +00:00
|
|
|
cursor: pointer;
|
2018-12-14 15:47:41 +00:00
|
|
|
|
2018-12-16 12:56:50 +00:00
|
|
|
> i {
|
|
|
|
font-size: 20px;
|
|
|
|
vertical-align: sub;
|
|
|
|
}
|
2018-12-14 15:47:41 +00:00
|
|
|
}
|
|
|
|
|
2018-12-16 12:56:50 +00:00
|
|
|
.perms {
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
> .perm-name {
|
|
|
|
font-size: 1rem;
|
|
|
|
font-weight: 600;
|
|
|
|
color: map-get($gray-shades, 800);
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .perm-desc {
|
|
|
|
font-size: 0.9rem;
|
|
|
|
font-weight: 300;
|
|
|
|
color: map-get($gray-shades, 800);
|
|
|
|
}
|
2018-12-14 15:47:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-29 10:31:00 +00:00
|
|
|
.user-table {
|
2018-03-01 19:14:27 +00:00
|
|
|
tbody tr td, thead tr th {
|
|
|
|
border-top: none !important;
|
|
|
|
border-bottom: none !important;
|
|
|
|
}
|
|
|
|
|
2017-11-29 10:31:00 +00:00
|
|
|
.name {
|
2018-12-14 15:47:41 +00:00
|
|
|
font-size: 1.1rem;
|
|
|
|
font-weight: 500;
|
|
|
|
color: map-get($gray-shades, 900);
|
2018-03-01 19:14:27 +00:00
|
|
|
margin: 0 0 0 10px;
|
|
|
|
display: inline-block;
|
|
|
|
cursor: pointer;
|
2018-03-15 17:11:53 +00:00
|
|
|
|
2018-03-13 15:02:01 +00:00
|
|
|
> .email {
|
2018-12-14 15:47:41 +00:00
|
|
|
font-size: 1rem;
|
|
|
|
font-weight: 400;
|
|
|
|
color: map-get($gray-shades, 800);
|
2018-03-01 19:14:27 +00:00
|
|
|
margin: 0;
|
2018-12-14 15:47:41 +00:00
|
|
|
display: block;
|
2018-03-01 19:14:27 +00:00
|
|
|
}
|
2017-11-29 10:31:00 +00:00
|
|
|
}
|
2017-04-17 19:24:14 +01:00
|
|
|
|
2018-03-01 19:14:27 +00:00
|
|
|
.groups {
|
|
|
|
font-size: 1rem;
|
2018-12-14 15:47:41 +00:00
|
|
|
font-weight: 300;
|
|
|
|
color: map-get($yellow-shades, 900);
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 0 0 0 10px;
|
2018-03-01 19:14:27 +00:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $color-link;
|
|
|
|
}
|
2017-03-23 18:28:42 +00:00
|
|
|
}
|
|
|
|
|
2018-12-14 15:47:41 +00:00
|
|
|
.inactive-user {
|
|
|
|
> .name, > .name > .email, > .groups {
|
|
|
|
color: map-get($red-shades, 600) !important;
|
|
|
|
font-weight: normal !important;
|
|
|
|
text-decoration: line-through !important;
|
|
|
|
}
|
2017-03-23 18:28:42 +00:00
|
|
|
}
|
|
|
|
|
2018-12-14 15:47:41 +00:00
|
|
|
.admin-user {
|
|
|
|
> .name, > .name > .email, > .groups {
|
|
|
|
color: map-get($green-shades, 600);
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
2017-04-17 19:24:14 +01:00
|
|
|
}
|
|
|
|
|
2018-12-14 15:47:41 +00:00
|
|
|
.user-checkbox {
|
|
|
|
color: map-get($green-shades, 700);
|
2017-03-23 18:28:42 +00:00
|
|
|
cursor: pointer;
|
2018-12-14 15:47:41 +00:00
|
|
|
font-weight: 600;
|
2017-03-23 18:28:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-28 11:32:14 +00:00
|
|
|
> .space-list {
|
2018-12-14 11:52:31 +00:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2017-11-28 11:32:14 +00:00
|
|
|
|
2017-09-26 20:13:44 +01:00
|
|
|
> .space {
|
2018-12-14 11:52:31 +00:00
|
|
|
@include card();
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0 0 2rem 0;
|
|
|
|
padding: 15px 20px;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
> .info {
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
> a {
|
|
|
|
> .name {
|
|
|
|
font-size: 1.3rem;
|
|
|
|
font-weight: 700;
|
|
|
|
color: map-get($gray-shades, 800);
|
|
|
|
|
|
|
|
> .dicon {
|
|
|
|
color: map-get($gray-shades, 600);
|
|
|
|
font-size: 20px;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .desc {
|
|
|
|
font-size: 1.1rem;
|
|
|
|
font-weight: 400;
|
|
|
|
margin-top: 0.4rem;
|
|
|
|
color: $color-black-light-3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-09-26 20:13:44 +01:00
|
|
|
}
|
|
|
|
}
|
2018-02-27 14:16:23 +00:00
|
|
|
|
|
|
|
> .groups-list {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
|
2018-02-28 14:55:36 +00:00
|
|
|
> .group {
|
2018-12-14 11:52:31 +00:00
|
|
|
@include card();
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0 0 2rem 0;
|
|
|
|
padding: 15px 20px;
|
|
|
|
width: 100%;
|
2018-02-27 14:16:23 +00:00
|
|
|
|
2018-12-14 11:52:31 +00:00
|
|
|
> .name {
|
2018-08-21 15:33:54 +01:00
|
|
|
font-size: 1.3rem;
|
2018-12-14 11:52:31 +00:00
|
|
|
font-weight: 700;
|
|
|
|
color: map-get($gray-shades, 800);
|
|
|
|
}
|
2018-02-27 14:16:23 +00:00
|
|
|
|
2018-12-14 11:52:31 +00:00
|
|
|
> .desc {
|
|
|
|
font-size: 1.1rem;
|
|
|
|
font-weight: 400;
|
|
|
|
margin-top: 0.4rem;
|
|
|
|
color: $color-black-light-3;
|
2018-02-27 14:16:23 +00:00
|
|
|
}
|
2018-02-28 14:55:36 +00:00
|
|
|
}
|
|
|
|
}
|
2018-02-27 14:16:23 +00:00
|
|
|
|
2018-03-01 19:14:27 +00:00
|
|
|
// used for group admin
|
2018-02-28 14:55:36 +00:00
|
|
|
> .group-users-members {
|
2018-12-14 15:47:41 +00:00
|
|
|
text-align: center;
|
|
|
|
|
2018-02-28 14:55:36 +00:00
|
|
|
> .item {
|
2018-12-14 15:47:41 +00:00
|
|
|
margin: 7px;
|
|
|
|
display: inline-block;
|
2018-02-27 14:16:23 +00:00
|
|
|
|
2018-02-28 14:55:36 +00:00
|
|
|
> .fullname {
|
2018-12-14 11:52:31 +00:00
|
|
|
color: map-get($gray-shades, 800);
|
|
|
|
font-size: 1rem;
|
2018-02-27 14:16:23 +00:00
|
|
|
}
|
|
|
|
}
|
2018-02-28 14:55:36 +00:00
|
|
|
}
|
2018-03-01 19:14:27 +00:00
|
|
|
|
|
|
|
// used for user admin
|
|
|
|
> .group-membership {
|
|
|
|
> .item {
|
|
|
|
margin: 10px 0;
|
|
|
|
|
|
|
|
> .group-name {
|
2018-12-21 11:46:51 +00:00
|
|
|
display: inline-block;
|
2018-12-14 15:47:41 +00:00
|
|
|
color: map-get($gray-shades, 800);
|
|
|
|
font-size: 1rem;
|
2018-12-21 11:46:51 +00:00
|
|
|
font-weight: 500;
|
2018-03-01 19:14:27 +00:00
|
|
|
|
|
|
|
> .group-purpose {
|
2018-12-14 15:47:41 +00:00
|
|
|
color: map-get($gray-shades, 700);
|
2018-03-01 19:14:27 +00:00
|
|
|
font-size: 0.9rem;
|
2018-12-21 11:46:51 +00:00
|
|
|
font-weight: 400;
|
2018-03-01 19:14:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-03-15 17:11:53 +00:00
|
|
|
|
2018-06-12 14:09:09 +01:00
|
|
|
> .smtp-failure, .admin-setting-failure {
|
2018-03-07 18:52:19 +00:00
|
|
|
font-size: 1.2rem;
|
|
|
|
font-weight: bold;
|
2018-12-04 17:26:57 +00:00
|
|
|
color: map-get($red-shades, 600);
|
2018-03-07 18:52:19 +00:00
|
|
|
}
|
|
|
|
|
2018-06-12 14:09:09 +01:00
|
|
|
> .smtp-success, .admin-setting-success {
|
2018-03-07 18:52:19 +00:00
|
|
|
font-size: 1.2rem;
|
|
|
|
font-weight: bold;
|
2018-12-04 17:26:57 +00:00
|
|
|
color: map-get($green-shades, 600);
|
2018-03-07 18:52:19 +00:00
|
|
|
}
|
2018-03-15 17:11:53 +00:00
|
|
|
|
|
|
|
> .archive-admin {
|
|
|
|
> .list {
|
2018-12-26 18:13:00 +00:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
|
2018-03-15 17:11:53 +00:00
|
|
|
> .item {
|
2018-12-26 18:13:00 +00:00
|
|
|
@include card();
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0 0 2rem 0;
|
|
|
|
padding: 15px 20px;
|
|
|
|
width: 100%;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
> .info {
|
|
|
|
padding: 0;
|
|
|
|
align-self: self-start;
|
|
|
|
justify-self: self-start;
|
|
|
|
|
|
|
|
> .name {
|
|
|
|
font-size: 1.3rem;
|
|
|
|
font-weight: 700;
|
|
|
|
color: map-get($gray-shades, 800);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .desc {
|
|
|
|
font-size: 1.1rem;
|
|
|
|
font-weight: 400;
|
|
|
|
margin-top: 0.4rem;
|
|
|
|
color: $color-black-light-3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .actions {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
2018-03-15 17:11:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-20 17:17:25 +01:00
|
|
|
|
2018-10-12 17:54:30 +01:00
|
|
|
> .backup-restore {
|
|
|
|
margin: 20px 0;
|
|
|
|
font-size: 1.1rem;
|
|
|
|
|
|
|
|
> .backup-zone {
|
|
|
|
@include border-radius(3px);
|
2018-12-13 12:24:16 +00:00
|
|
|
border: 1px solid map-get($green-shades, 200);
|
2018-10-12 17:54:30 +01:00
|
|
|
padding: 20px 20px;
|
2018-12-13 12:24:16 +00:00
|
|
|
background-color: map-get($green-shades, 100);
|
2018-12-14 11:52:31 +00:00
|
|
|
color: map-get($green-shades, 700);
|
2018-10-12 17:54:30 +01:00
|
|
|
|
|
|
|
> .backup-fail {
|
|
|
|
margin: 10px 0;
|
2018-12-04 17:26:57 +00:00
|
|
|
color: map-get($red-shades, 600);
|
2018-10-12 17:54:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
> .backup-success {
|
|
|
|
margin: 10px 0;
|
2018-12-04 17:26:57 +00:00
|
|
|
color: map-get($green-shades, 800);
|
2018-10-12 17:54:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .restore-zone {
|
|
|
|
@include border-radius(3px);
|
2018-12-13 12:24:16 +00:00
|
|
|
border: 1px solid map-get($red-shades, 200);
|
2018-10-12 17:54:30 +01:00
|
|
|
margin: 50px 0;
|
|
|
|
padding: 20px 20px;
|
2018-12-13 12:24:16 +00:00
|
|
|
background-color: map-get($red-shades, 100);
|
2018-12-14 11:52:31 +00:00
|
|
|
color: map-get($red-shades, 700);
|
2018-10-12 17:54:30 +01:00
|
|
|
|
|
|
|
> .restore-fail {
|
|
|
|
margin: 10px 0;
|
2018-12-04 17:26:57 +00:00
|
|
|
color: map-get($red-shades, 800);
|
2018-10-12 17:54:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
> .restore-success {
|
|
|
|
margin: 10px 0;
|
2018-12-04 17:26:57 +00:00
|
|
|
color: map-get($green-shades, 700);
|
2018-10-12 17:54:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
> .upload-backup-file {
|
|
|
|
margin: 50px 0 10px 0;
|
|
|
|
|
|
|
|
> .dz-preview, .dz-processing {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.restore-upload-busy {
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
> img {
|
|
|
|
height: 50px;
|
|
|
|
width: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .wait {
|
2018-12-04 17:26:57 +00:00
|
|
|
color: map-get($gray-shades, 600);
|
2018-10-12 17:54:30 +01:00
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .ready {
|
2018-12-04 17:26:57 +00:00
|
|
|
color: map-get($green-shades, 700);
|
2018-10-12 17:54:30 +01:00
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-11-09 13:42:58 +00:00
|
|
|
|
|
|
|
> .deactivation-zone {
|
|
|
|
@include border-radius(3px);
|
2018-12-26 18:13:00 +00:00
|
|
|
border: 1px solid map-get($yellow-shades, 600);
|
2018-11-09 13:42:58 +00:00
|
|
|
margin: 30px 0;
|
|
|
|
padding: 20px 20px;
|
2018-12-26 18:13:00 +00:00
|
|
|
background-color: map-get($yellow-shades, 100);
|
|
|
|
|
|
|
|
> p {
|
|
|
|
color: map-get($yellow-shades, 800);
|
|
|
|
}
|
2018-11-09 13:42:58 +00:00
|
|
|
}
|
2019-01-04 16:33:30 +00:00
|
|
|
|
|
|
|
> .space-labels {
|
|
|
|
display : block;
|
|
|
|
|
|
|
|
> .label {
|
|
|
|
@include border-radius(3px);
|
|
|
|
@extend .no-select;
|
|
|
|
display: block;
|
|
|
|
margin: 20px 0;
|
|
|
|
padding: 1rem 1rem;
|
|
|
|
font-size: 1.2rem;
|
|
|
|
font-weight: 500;
|
|
|
|
color: $color-white;
|
|
|
|
}
|
|
|
|
}
|
2019-01-06 13:50:12 +00:00
|
|
|
|
|
|
|
> #upload-logo {
|
|
|
|
.dz-preview, .dz-processing, .dz-file-preview {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
}
|
2017-03-23 18:28:42 +00:00
|
|
|
}
|