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
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export function SelectReportPane() {

export function SkeletonBackdrop() {
return (
<Flex direction="column" style={{ opacity: 0.4 }}>
<Flex direction="column" className="select-none" style={{ opacity: 0.4 }}>
{Array.from({ length: 8 }).map((_, index) => (
<Flex
// biome-ignore lint/suspicious/noArrayIndexKey: static decorative placeholders
Expand Down
30 changes: 0 additions & 30 deletions apps/code/src/renderer/features/inbox/components/InboxLiveRail.tsx

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import {
WarmingUpPane,
WelcomePane,
} from "@features/inbox/components/InboxEmptyStates";
import { InboxLiveRail } from "@features/inbox/components/InboxLiveRail";
import { InboxSourcesDialog } from "@features/inbox/components/InboxSourcesDialog";
import { useInboxReportsInfinite } from "@features/inbox/hooks/useInboxReports";
import { useSignalSourceConfigs } from "@features/inbox/hooks/useSignalSourceConfigs";
Expand Down Expand Up @@ -302,6 +301,7 @@ export function InboxSignalsTab() {
<Flex ref={containerRef} height="100%" style={{ minHeight: 0 }}>
{/* ── Left pane: report list ───────────────────────────────── */}
<Box
className="select-none"
style={{
width: `${sidebarWidth}px`,
maxWidth: "60%",
Expand All @@ -314,7 +314,7 @@ export function InboxSignalsTab() {
>
<ScrollArea
type="auto"
className="scroll-area-constrain-width"
className="scroll-area-constrain-width inbox-report-list-scroll"
style={{ height: "100%" }}
>
<Flex
Expand Down Expand Up @@ -344,7 +344,6 @@ export function InboxSignalsTab() {
}
}}
>
<InboxLiveRail active={inboxPollingActive} />
<Box
data-inbox-sticky-header
style={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export function ReportListRow({
<Text
size="1"
weight="medium"
className="min-w-0 flex-1 basis-0 truncate text-[13px]"
className="min-w-0 flex-1 basis-0 select-text truncate text-[13px]"
>
{report.title ?? "Untitled signal"}
</Text>
Expand All @@ -191,7 +191,7 @@ export function ReportListRow({
</Flex>

<div
className="min-w-0 pl-4"
className="min-w-0 select-text"
style={{ opacity: isReady ? 1 : 0.82 }}
>
<SignalReportSummaryMarkdown
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ export function SignalsToolbar({
<Flex
direction="column"
gap="2"
className="select-none"
style={{ padding: "8px", borderBottom: "1px solid var(--gray-5)" }}
>
<Flex align="center" justify="between" gap="2">
Expand Down
11 changes: 3 additions & 8 deletions apps/code/src/renderer/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -892,14 +892,9 @@ button,
width: 100% !important;
}

/* Inbox live-rail scan line */
@keyframes inboxLiveRailSweep {
0% {
transform: translateX(-120%);
}
100% {
transform: translateX(420%);
}
/* Inbox report list: Radix ScrollArea thumb defaults to 100ms background-color transition */
.scroll-area-constrain-width.inbox-report-list-scroll .rt-ScrollAreaThumb {
transition: none;
}

/* Inbox toolbar polling indicator pulse */
Expand Down
Loading