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-22 17:38:37 -04:00
|
|
|
|
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-08-22 17:38:37 -04:00
|
|
|
.managed-user-dropdown-menu {
|
|
|
|
width: 300px;
|
|
|
|
|
|
|
|
li > button {
|
|
|
|
&:hover {
|
|
|
|
background-color: @gray-lightest;
|
|
|
|
}
|
2023-06-30 04:30:20 -04:00
|
|
|
}
|
2023-08-22 17:38:37 -04:00
|
|
|
.delete-user-action {
|
|
|
|
button {
|
|
|
|
color: @red;
|
|
|
|
}
|
2023-06-30 04:30:20 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-08-22 17:38:37 -04:00
|
|
|
.managed-user-menu-item-button {
|
|
|
|
padding: 12px 20px;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
border: none;
|
|
|
|
box-shadow: none;
|
|
|
|
background: inherit;
|
|
|
|
color: @ol-blue-gray-5;
|
|
|
|
text-align: left;
|
|
|
|
&[disabled] {
|
|
|
|
background-color: @gray-lighter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.managed-users-list-alert {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
.managed-users-list-alert-close {
|
|
|
|
padding-left: @padding-sm;
|
|
|
|
text-align: right;
|
|
|
|
width: 10%;
|
|
|
|
@media (min-width: @screen-sm-min) {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
}
|
2023-06-30 04:30:20 -04:00
|
|
|
}
|