mirror of
https://github.com/documize/community.git
synced 2025-08-04 13:05:23 +02:00
35 lines
514 B
SCSS
35 lines
514 B
SCSS
.page-customize {
|
|
@include content-container();
|
|
|
|
.user-list {
|
|
margin: 30px 0;
|
|
|
|
> .heading {
|
|
font-size: 1.2rem;
|
|
color: $color-off-black;
|
|
font-weight: bold;
|
|
margin: 0 0 20px 0;
|
|
}
|
|
|
|
> .basic-table {
|
|
background-color: $color-white;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.inactive
|
|
{
|
|
@extend .color-red;
|
|
font-weight: normal;
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
.checkbox {
|
|
color: $color-checkbox;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.edit-user-dialog, .delete-user-dialog {
|
|
display: none;
|
|
}
|
|
}
|