UI - ЛАУНЧЕР: ACTION-КНОПКИ И АВАТАРЫ КЛИЕНТОВ

This commit is contained in:
DCCONSTRUCTIONS 2026-05-08 18:52:58 +03:00
parent caa1250bf7
commit f9a590dca7
2 changed files with 9 additions and 12 deletions

View File

@ -450,10 +450,10 @@ code {
}
.nodedc-expanded-workspace-avatar {
width: 72%;
height: 72%;
width: 100%;
height: 100%;
border-radius: inherit;
object-fit: contain;
object-fit: cover;
}
.nodedc-expanded-user-group {
@ -3061,9 +3061,10 @@ code {
}
.client-avatar-preview img {
width: 72%;
height: 72%;
object-fit: contain;
width: 100%;
height: 100%;
border-radius: inherit;
object-fit: cover;
}
.client-avatar-control__copy {

View File

@ -32,7 +32,6 @@ import {
Plus,
RefreshCw,
Save,
SearchCheck,
ShieldCheck,
SlidersHorizontal,
Trash2,
@ -426,9 +425,6 @@ function AdminHeader({
return (
<div className="admin-header">
<div className="admin-header__actions">
<IconButton label="Проверить доступы" className="admin-circle-action" type="button">
<SearchCheck size={16} />
</IconButton>
<IconButton
label={isFullscreen ? "Свернуть панель" : "Открыть панель на весь экран"}
className={cn("admin-circle-action", isFullscreen && "admin-circle-action--active")}
@ -3096,11 +3092,11 @@ function SyncSection({
<td>
<IconButton
label={`Повторить синхронизацию ${sync.objectName}`}
className="admin-circle-action services-admin-table__edit"
className="admin-icon-action services-admin-table__edit"
type="button"
onClick={() => onRetrySync(sync.id)}
>
<RefreshCw size={15} />
<RefreshCw size={12} />
</IconButton>
</td>
</tr>