This commit is contained in:
2025-11-03 02:34:12 +01:00
parent 152f824e2e
commit 209ac191c9
2 changed files with 8 additions and 1 deletions
+2 -1
View File
@@ -9,7 +9,7 @@ import React, {
import { createPortal } from 'react-dom';
import { resolveDocumentAssetUrl, createAssetView } from './asset_manager';
import { useAssetNavigator } from './hooks/useAssetNavigator';
import { ArrowLeftIcon, ArrowRightIcon, CloseIcon, FileIcon, FolderIcon } from './ui/icons';
import { ArrowLeftIcon, ArrowRightIcon, CloseIcon, FileIcon, FolderOutlineIcon } from './ui/icons';
import SelectionFloatingActions from './documents/SelectionFloatingActions';
import { createDocumentsTableHeaderActions } from './documents/DocumentsPanel';
import createWorkspaceSurfaceConfig from './documents/workspaceHeader';
@@ -2543,6 +2543,7 @@ export const createDesktopSurface = ({
{index > 0 ? <span className="selection-summary__separator">·</span> : null}
<span className="selection-summary__token">
<span className="selection-summary__count">{token.count}</span>
<span className="selection-summary__multiply">×</span>
{token.icon}
</span>
</React.Fragment>
+6
View File
@@ -2076,6 +2076,12 @@ button.danger:hover:not([disabled]) {
height: 1rem;
}
.selection-summary__multiply {
display: inline-flex;
align-items: center;
opacity: 0.6;
}
.selection-summary__separator {
opacity: 0.45;
}