UI - ЛАУНЧЕР: ACTION-КНОПКИ И АВАТАРЫ КЛИЕНТОВ
This commit is contained in:
parent
caa1250bf7
commit
f9a590dca7
|
|
@ -450,10 +450,10 @@ code {
|
||||||
}
|
}
|
||||||
|
|
||||||
.nodedc-expanded-workspace-avatar {
|
.nodedc-expanded-workspace-avatar {
|
||||||
width: 72%;
|
width: 100%;
|
||||||
height: 72%;
|
height: 100%;
|
||||||
border-radius: inherit;
|
border-radius: inherit;
|
||||||
object-fit: contain;
|
object-fit: cover;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nodedc-expanded-user-group {
|
.nodedc-expanded-user-group {
|
||||||
|
|
@ -3061,9 +3061,10 @@ code {
|
||||||
}
|
}
|
||||||
|
|
||||||
.client-avatar-preview img {
|
.client-avatar-preview img {
|
||||||
width: 72%;
|
width: 100%;
|
||||||
height: 72%;
|
height: 100%;
|
||||||
object-fit: contain;
|
border-radius: inherit;
|
||||||
|
object-fit: cover;
|
||||||
}
|
}
|
||||||
|
|
||||||
.client-avatar-control__copy {
|
.client-avatar-control__copy {
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,6 @@ import {
|
||||||
Plus,
|
Plus,
|
||||||
RefreshCw,
|
RefreshCw,
|
||||||
Save,
|
Save,
|
||||||
SearchCheck,
|
|
||||||
ShieldCheck,
|
ShieldCheck,
|
||||||
SlidersHorizontal,
|
SlidersHorizontal,
|
||||||
Trash2,
|
Trash2,
|
||||||
|
|
@ -426,9 +425,6 @@ function AdminHeader({
|
||||||
return (
|
return (
|
||||||
<div className="admin-header">
|
<div className="admin-header">
|
||||||
<div className="admin-header__actions">
|
<div className="admin-header__actions">
|
||||||
<IconButton label="Проверить доступы" className="admin-circle-action" type="button">
|
|
||||||
<SearchCheck size={16} />
|
|
||||||
</IconButton>
|
|
||||||
<IconButton
|
<IconButton
|
||||||
label={isFullscreen ? "Свернуть панель" : "Открыть панель на весь экран"}
|
label={isFullscreen ? "Свернуть панель" : "Открыть панель на весь экран"}
|
||||||
className={cn("admin-circle-action", isFullscreen && "admin-circle-action--active")}
|
className={cn("admin-circle-action", isFullscreen && "admin-circle-action--active")}
|
||||||
|
|
@ -3096,11 +3092,11 @@ function SyncSection({
|
||||||
<td>
|
<td>
|
||||||
<IconButton
|
<IconButton
|
||||||
label={`Повторить синхронизацию ${sync.objectName}`}
|
label={`Повторить синхронизацию ${sync.objectName}`}
|
||||||
className="admin-circle-action services-admin-table__edit"
|
className="admin-icon-action services-admin-table__edit"
|
||||||
type="button"
|
type="button"
|
||||||
onClick={() => onRetrySync(sync.id)}
|
onClick={() => onRetrySync(sync.id)}
|
||||||
>
|
>
|
||||||
<RefreshCw size={15} />
|
<RefreshCw size={12} />
|
||||||
</IconButton>
|
</IconButton>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue