#177: Admin-Personenliste — Trennlinien der Aktionen-Spalte buendig #178
@ -124,8 +124,10 @@ function UserRow({
|
|||||||
<td>{user.pondCount}</td>
|
<td>{user.pondCount}</td>
|
||||||
<td>{user.lastLoginAt ? new Date(user.lastLoginAt).toLocaleDateString() : t('never')}</td>
|
<td>{user.lastLoginAt ? new Date(user.lastLoginAt).toLocaleDateString() : t('never')}</td>
|
||||||
<td className="user-row__actions">
|
<td className="user-row__actions">
|
||||||
|
{/* Flex lives on the inner div: a td with display:flex stops behaving
|
||||||
|
like a table cell and its bottom border no longer meets the row's. */}
|
||||||
{!isSelf && (
|
{!isSelf && (
|
||||||
<>
|
<div className="user-row__actions-inner">
|
||||||
{user.status === 'PENDING_VERIFICATION' && (
|
{user.status === 'PENDING_VERIFICATION' && (
|
||||||
<IconButton
|
<IconButton
|
||||||
className="user-row__resend"
|
className="user-row__resend"
|
||||||
@ -180,7 +182,7 @@ function UserRow({
|
|||||||
<Trash2 aria-hidden />
|
<Trash2 aria-hidden />
|
||||||
</IconButton>
|
</IconButton>
|
||||||
)}
|
)}
|
||||||
</>
|
</div>
|
||||||
)}
|
)}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
@ -2983,7 +2983,7 @@ ul[data-type='task_list'] li p:last-of-type {
|
|||||||
font-size: 0.85rem;
|
font-size: 0.85rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.user-row__actions {
|
.user-row__actions-inner {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: var(--space-2);
|
gap: var(--space-2);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user