Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/desktop/src/components/cell-detail-panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export function CellDetailPanel() {

{/* Content */}
<div className="flex-1 p-4 overflow-auto">
<div className="bg-accent-foreground p-2">
<div className="bg-accent-foreground dark:bg-tint-200 p-2">
<p className="text-white">{selectedCellData.column}</p>
</div>
<div className="bg-tint-300 py-6 px-2">
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/components/table/data-table-body.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function DataTableBody({ table }: { table: TanStackTable<any>; columns: any[] })
<TableCell
key={cell.id}
className={cn(
'border-b border-r border-gray-100 truncate bg-white px-4 text-neutral-600 cursor-pointer hover:bg-orange-600/10',
'border-b border-r border-gray-100 dark:border-transparent truncate bg-white px-4 text-neutral-600 dark:text-white dark:bg-secondary cursor-pointer hover:bg-orange-600/10 dark:hover:bg-muted-foreground',
isPinned && 'sticky bg-white hover:bg-orange-100 z-20 border-r-gray-500'
)}
onClick={() => handleCellClick(cell)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,7 @@ export function DataTableFilterCommand({ table }: DataTableFilterCommandProps) {
<CommandEmpty>No results found.</CommandEmpty>
</CommandList>
<div
className="border-t bg-neutral-200/50 px-2 py-1.5 text-xs text-accent-foreground"
className="border-t bg-muted px-2 py-1.5 text-xs text-accent-foreground"
cmdk-footer=""
>
<div className="flex flex-col gap-2 p-1">
Expand Down
4 changes: 2 additions & 2 deletions packages/ui/src/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@
--sidebar-border: oklch(1 0 0 / 10%);
--sidebar-ring: oklch(0.552 0.016 285.938);
--color-tint-100: black;
--color-tint-200: black;
--color-tint-300: black;
--color-tint-200: #121212;
--color-tint-300: oklch(0.2223 0 0);
}
}

Expand Down