2023-06-30 04:30:20 -04:00
|
|
|
/* Styles for group-subscription members view */
|
|
|
|
|
|
|
|
.structured-list.managed-users-list {
|
|
|
|
/* Override scrolling behaviour on structured-list */
|
|
|
|
overflow: initial;
|
|
|
|
overflow-y: initial;
|
|
|
|
overflow-x: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
.managed-users-list {
|
|
|
|
.security-state-invite-pending {
|
|
|
|
color: @text-muted;
|
|
|
|
}
|
|
|
|
.security-state-managed {
|
|
|
|
color: @green;
|
|
|
|
}
|
|
|
|
.security-state-not-managed {
|
|
|
|
color: @red;
|
|
|
|
}
|
2023-07-13 04:50:43 -04:00
|
|
|
.managed-user-row {
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
}
|
2023-08-03 06:06:13 -04:00
|
|
|
.managed-user-security {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
2023-06-30 04:30:20 -04:00
|
|
|
.managed-user-actions {
|
|
|
|
button.dropdown-toggle {
|
|
|
|
color: @text-color;
|
|
|
|
padding-left: 1em;
|
|
|
|
padding-right: 1em;
|
|
|
|
}
|
2023-07-13 04:50:43 -04:00
|
|
|
li > button {
|
2023-06-30 04:30:20 -04:00
|
|
|
&:hover {
|
|
|
|
background-color: @gray-lightest;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.delete-user-action {
|
2023-07-13 04:50:43 -04:00
|
|
|
button {
|
2023-06-30 04:30:20 -04:00
|
|
|
color: @red;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|