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
|
|
|
}
|
2023-08-25 04:51:45 -04:00
|
|
|
|
|
|
|
.managed-users-table {
|
|
|
|
width: 100%;
|
|
|
|
table-layout: fixed;
|
|
|
|
|
|
|
|
tr {
|
|
|
|
border-bottom: 1px solid @structured-list-border-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
th,
|
|
|
|
td {
|
|
|
|
padding: (@line-height-computed / 4) @line-height-computed / 2;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
thead {
|
|
|
|
tr:hover {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tbody {
|
|
|
|
tr:last-child {
|
|
|
|
border-bottom: 0 none;
|
|
|
|
}
|
|
|
|
tr:hover {
|
|
|
|
background-color: #f6f7f9;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: @screen-xs) {
|
2023-08-25 05:19:33 -04:00
|
|
|
.cell-checkbox {
|
2023-10-17 12:06:26 -04:00
|
|
|
width: 5%;
|
2023-10-27 09:11:34 -04:00
|
|
|
.managed-users-active.group-sso-active & {
|
|
|
|
width: 3%;
|
|
|
|
}
|
2023-10-19 08:51:33 -04:00
|
|
|
}
|
|
|
|
|
2023-08-25 04:51:45 -04:00
|
|
|
.cell-email {
|
2023-10-27 09:11:34 -04:00
|
|
|
width: 50%;
|
|
|
|
.managed-users-active & {
|
|
|
|
width: 35%;
|
|
|
|
}
|
|
|
|
.group-sso-active & {
|
|
|
|
width: 37%;
|
|
|
|
}
|
|
|
|
.managed-users-active.group-sso-active & {
|
|
|
|
width: 29%;
|
|
|
|
}
|
2023-10-19 08:51:33 -04:00
|
|
|
}
|
2023-08-25 04:51:45 -04:00
|
|
|
|
|
|
|
.cell-name {
|
|
|
|
width: 20%;
|
2023-10-27 09:11:34 -04:00
|
|
|
.managed-users-active.group-sso-active & {
|
|
|
|
width: 18%;
|
|
|
|
}
|
2023-08-25 04:51:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.cell-last-active {
|
|
|
|
width: 20%;
|
2023-10-27 09:11:34 -04:00
|
|
|
.managed-users-active.group-sso-active & {
|
|
|
|
width: 16%;
|
|
|
|
}
|
2023-08-25 04:51:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.cell-security {
|
2023-10-19 08:51:33 -04:00
|
|
|
width: 12%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cell-managed {
|
2023-08-25 04:51:45 -04:00
|
|
|
width: 15%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cell-dropdown {
|
2023-08-25 07:55:06 -04:00
|
|
|
width: 6%;
|
|
|
|
min-width: 25px;
|
2023-08-25 04:51:45 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: @screen-lg) {
|
2023-08-25 05:19:33 -04:00
|
|
|
.cell-checkbox {
|
2023-10-17 12:06:26 -04:00
|
|
|
width: 5%;
|
2023-10-27 09:11:34 -04:00
|
|
|
.managed-users-active.group-sso-active & {
|
|
|
|
width: 3%;
|
|
|
|
}
|
2023-08-25 05:19:33 -04:00
|
|
|
}
|
2023-08-25 04:51:45 -04:00
|
|
|
.cell-email {
|
2023-10-27 09:11:34 -04:00
|
|
|
width: 55%;
|
|
|
|
.managed-users-active & {
|
|
|
|
width: 42%;
|
|
|
|
}
|
|
|
|
.group-sso-active & {
|
|
|
|
width: 45%;
|
|
|
|
}
|
|
|
|
.managed-users-active.group-sso-active & {
|
|
|
|
width: 36%;
|
|
|
|
}
|
2023-10-19 08:51:33 -04:00
|
|
|
}
|
2023-08-25 04:51:45 -04:00
|
|
|
|
|
|
|
.cell-name {
|
|
|
|
width: 20%;
|
2023-10-27 09:11:34 -04:00
|
|
|
.managed-users-active.group-sso-active & {
|
|
|
|
width: 18%;
|
|
|
|
}
|
2023-08-25 04:51:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.cell-last-active {
|
|
|
|
width: 15%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cell-security {
|
2023-10-19 08:51:33 -04:00
|
|
|
width: 10%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cell-managed {
|
2023-10-27 09:11:34 -04:00
|
|
|
width: 13%;
|
2023-08-25 04:51:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.cell-dropdown {
|
2023-08-25 07:55:06 -04:00
|
|
|
width: 5%;
|
|
|
|
min-width: 25px;
|
2023-08-25 04:51:45 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.managed-user-security {
|
|
|
|
.material-symbols {
|
|
|
|
position: relative;
|
|
|
|
top: 4px;
|
|
|
|
}
|
|
|
|
}
|