mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
6bd60cf0ba
Fix managed users UI for new design system GitOrigin-RevId: 299ffcee23d9b066bd892cc1a67985ea305a491d
44 lines
856 B
Text
44 lines
856 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-security {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.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;
|
|
}
|
|
}
|
|
}
|
|
}
|