2017-11-28 11:32:14 +00:00
|
|
|
.view-customize {
|
2017-11-28 12:27:50 +00:00
|
|
|
> .admin-heading {
|
2017-11-28 11:32:14 +00:00
|
|
|
font-size: 1.5rem;
|
|
|
|
font-weight: bold;
|
|
|
|
color: $color-black;
|
2017-10-04 12:27:56 -04:00
|
|
|
}
|
|
|
|
|
2017-11-28 12:27:50 +00:00
|
|
|
> .sub-heading {
|
|
|
|
font-size: 1.1rem;
|
2018-12-04 17:26:57 +00:00
|
|
|
color: map-get($gray-shades, 600);
|
2017-11-28 12:27:50 +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-03-01 19:14:27 +00:00
|
|
|
font-size: 1.2rem;
|
|
|
|
font-weight: bold;
|
|
|
|
color: $color-link;
|
|
|
|
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-03-01 19:14:27 +00:00
|
|
|
font-size: 0.9rem;
|
2018-12-04 17:26:57 +00:00
|
|
|
color: $color-black-light-1;
|
2018-03-01 19:14:27 +00:00
|
|
|
margin: 0;
|
|
|
|
display: inline-block;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
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 {
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 5px 0 0 10px;
|
|
|
|
font-size: 1rem;
|
2018-12-04 17:26:57 +00:00
|
|
|
color: map-get($gray-shades, 600);
|
2018-03-01 19:14:27 +00:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $color-link;
|
|
|
|
}
|
2017-03-23 18:28:42 +00:00
|
|
|
}
|
|
|
|
|
2017-04-17 19:24:14 +01:00
|
|
|
.inactive-user
|
2017-03-23 18:28:42 +00:00
|
|
|
{
|
2018-12-04 17:26:57 +00:00
|
|
|
color: map-get($red-shades, 600);
|
2017-03-23 18:28:42 +00:00
|
|
|
font-weight: normal;
|
|
|
|
text-decoration: line-through;
|
|
|
|
}
|
|
|
|
|
2017-04-17 19:24:14 +01:00
|
|
|
.admin-user
|
|
|
|
{
|
2018-12-04 17:26:57 +00:00
|
|
|
color: map-get($green-shades, 600);
|
2017-04-17 19:24:14 +01:00
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2017-03-23 18:28:42 +00:00
|
|
|
.checkbox {
|
2018-12-04 17:26:57 +00:00
|
|
|
color: map-get($gray-shades, 900);
|
2017-03-23 18:28:42 +00:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-28 11:32:14 +00:00
|
|
|
> .space-list {
|
|
|
|
padding: 0;
|
2018-11-16 19:18:10 +00:00
|
|
|
margin: 3rem 0;
|
2017-11-28 11:32:14 +00:00
|
|
|
|
2017-09-26 20:13:44 +01:00
|
|
|
> .space {
|
2017-11-28 11:32:14 +00:00
|
|
|
margin: 15px 0;
|
2018-11-16 19:18:10 +00:00
|
|
|
padding: 15px 0;
|
2017-11-28 11:32:14 +00:00
|
|
|
font-size: 1.2rem;
|
2018-12-04 17:26:57 +00:00
|
|
|
color: $theme-500;
|
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-02-27 14:16:23 +00:00
|
|
|
margin: 15px 0;
|
|
|
|
|
2018-02-28 14:55:36 +00:00
|
|
|
.name {
|
2018-12-04 17:26:57 +00:00
|
|
|
color: $color-black-light-1;
|
2018-08-21 15:33:54 +01:00
|
|
|
font-size: 1.3rem;
|
|
|
|
font-weight: 600;
|
2018-02-27 14:16:23 +00:00
|
|
|
|
|
|
|
> .purpose {
|
|
|
|
font-size: 1rem;
|
2018-12-04 17:26:57 +00:00
|
|
|
color: map-get($gray-shades, 600);
|
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 {
|
|
|
|
> .item {
|
|
|
|
margin: 10px 0;
|
2018-02-27 14:16:23 +00:00
|
|
|
|
2018-02-28 14:55:36 +00:00
|
|
|
> .fullname {
|
2018-12-04 17:26:57 +00:00
|
|
|
color: $theme-500;
|
2018-02-28 14:55:36 +00:00
|
|
|
font-size: 1.2rem;
|
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-04 17:26:57 +00:00
|
|
|
color: $theme-500;
|
2018-03-01 19:14:27 +00:00
|
|
|
font-size: 1.2rem;
|
|
|
|
|
|
|
|
> .group-purpose {
|
|
|
|
font-size: 0.9rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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 {
|
|
|
|
> .item {
|
|
|
|
margin: 15px 0;
|
2018-11-13 15:18:34 +00:00
|
|
|
padding: 15px 0;
|
2018-03-15 17:11:53 +00:00
|
|
|
@include ease-in();
|
|
|
|
font-size: 1.2rem;
|
2018-12-04 17:26:57 +00:00
|
|
|
color: $theme-500;
|
2018-03-15 17:11:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-20 17:17:25 +01:00
|
|
|
|
|
|
|
> .max-results {
|
|
|
|
float: right;
|
|
|
|
}
|
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-04 17:26:57 +00:00
|
|
|
border: 1px solid map-get($gray-shades, 300);
|
2018-10-12 17:54:30 +01:00
|
|
|
padding: 20px 20px;
|
2018-12-04 17:26:57 +00:00
|
|
|
background-color: map-get($green-shades, 200);
|
|
|
|
color: $color-black-light-1;
|
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-04 17:26:57 +00:00
|
|
|
border: 1px solid map-get($gray-shades, 300);
|
2018-10-12 17:54:30 +01:00
|
|
|
margin: 50px 0;
|
|
|
|
padding: 20px 20px;
|
2018-12-04 17:26:57 +00:00
|
|
|
background-color: map-get($red-shades, 200);
|
|
|
|
color: $color-black-light-1;
|
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 {
|
|
|
|
@include ease-in();
|
|
|
|
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-04 17:26:57 +00:00
|
|
|
border: 1px solid map-get($red-shades, 600);
|
2018-11-09 13:42:58 +00:00
|
|
|
margin: 30px 0;
|
|
|
|
padding: 20px 20px;
|
2018-12-04 17:26:57 +00:00
|
|
|
background-color: map-get($red-shades, 100);
|
|
|
|
color: $color-black-light-1;
|
2018-11-09 13:42:58 +00:00
|
|
|
}
|
2017-03-23 18:28:42 +00:00
|
|
|
}
|