mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
49eafa2712
[web] Managed Users offboarding UI GitOrigin-RevId: ee4a1ae7cdb0022839ef232836ef6933443400fc
40 lines
770 B
Text
40 lines
770 B
Text
/* 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;
|
|
}
|
|
}
|
|
}
|
|
}
|