mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-11 07:00:47 +02:00
49eafa2712
[web] Managed Users offboarding UI GitOrigin-RevId: ee4a1ae7cdb0022839ef232836ef6933443400fc
41 lines
770 B
Plaintext
41 lines
770 B
Plaintext
/* 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;
|
|
}
|
|
.managed-user-row {
|
|
overflow-wrap: break-word;
|
|
}
|
|
.managed-user-actions {
|
|
button.dropdown-toggle {
|
|
color: @text-color;
|
|
padding-left: 1em;
|
|
padding-right: 1em;
|
|
}
|
|
li > button {
|
|
&:hover {
|
|
background-color: @gray-lightest;
|
|
}
|
|
}
|
|
.delete-user-action {
|
|
button {
|
|
color: @red;
|
|
}
|
|
}
|
|
}
|
|
}
|