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
6 changes: 5 additions & 1 deletion apps/desktop/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.bunny.net" crossorigin />
<link
href="https://fonts.bunny.net/css?family=instrument-serif:400,400i|plus-jakarta-sans:400,500,600,700|geist-mono:400,500&display=swap"
rel="stylesheet"
/>
<title>Notebook LM</title>
</head>
<body>
Expand Down
18 changes: 11 additions & 7 deletions apps/desktop/src/DocumentPreview.css
Original file line number Diff line number Diff line change
Expand Up @@ -217,21 +217,25 @@
background: white;
}

/* PDF text highlight */
/* PDF text highlight — citation grounding, uses amber cite color */
.pdf-highlight {
background: rgba(251, 191, 36, 0.35);
background: rgba(217, 146, 90, 0.32);
border-radius: 2px;
padding: 1px 0;
box-shadow: 0 0 12px var(--color-cite-glow);
}

.preview-highlight-badge {
font-size: 12px;
color: #fbbf24;
font-family: var(--font-mono);
font-size: 11px;
font-variant-numeric: tabular-nums;
letter-spacing: 0.02em;
color: var(--color-cite);
font-weight: 500;
padding: 3px 10px;
background: rgba(251, 191, 36, 0.1);
border: 1px solid rgba(251, 191, 36, 0.2);
border-radius: 12px;
background: var(--color-cite-subtle);
border: 1px solid rgba(217, 146, 90, 0.22);
border-radius: var(--radius-pill);
white-space: nowrap;
}

20 changes: 12 additions & 8 deletions apps/desktop/src/components/chat/chat.css
Original file line number Diff line number Diff line change
Expand Up @@ -106,20 +106,24 @@
flex-direction: column;
justify-content: center;
color: var(--color-text-muted);
gap: var(--space-2);
padding: var(--space-12) var(--space-8);
gap: var(--space-3);
padding: var(--space-16) var(--space-8);
}

.chat-empty p:first-child {
font-size: var(--text-xl);
font-weight: 500;
color: var(--color-text-secondary);
letter-spacing: -0.02em;
font-family: var(--font-serif);
font-style: italic;
font-size: var(--text-display-sm);
font-weight: 400;
color: var(--color-text-primary);
letter-spacing: -0.015em;
line-height: 1.1;
margin: 0;
}

.chat-empty-hint {
font-size: var(--text-sm);
color: var(--color-text-muted);
font-size: var(--text-md);
color: var(--color-text-secondary);
}

/* ---- Input area ---- */
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/components/documents/documents.css
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
margin: var(--space-3) var(--space-3);
padding: var(--space-5);
border: 1px dashed var(--color-border);
border-radius: var(--radius-md);
border-radius: var(--radius-card);
text-align: center;
color: var(--color-text-muted);
font-size: var(--text-sm);
Expand Down
24 changes: 14 additions & 10 deletions apps/desktop/src/components/layout/layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -527,23 +527,27 @@
flex-direction: column;
align-items: center;
text-align: center;
max-width: 400px;
padding: var(--space-8);
max-width: 520px;
padding: var(--space-10) var(--space-8);
}

.welcome-title {
font-size: var(--text-2xl);
font-weight: 700;
font-family: var(--font-serif);
font-style: italic;
font-size: var(--text-display-md);
font-weight: 400;
color: var(--color-text-primary);
margin: 0 0 var(--space-2);
letter-spacing: -0.03em;
margin: 0 0 var(--space-4);
letter-spacing: -0.02em;
line-height: 1.05;
}

.welcome-subtitle {
font-size: var(--text-lg);
color: var(--color-text-muted);
margin: 0 0 var(--space-6);
line-height: 1.5;
font-size: var(--text-md);
color: var(--color-text-secondary);
margin: 0 0 var(--space-8);
line-height: 1.55;
max-width: 38ch;
}

.welcome-browse-btn {
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/components/ui/command-palette.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
max-width: 90vw;
background: var(--color-bg-secondary);
border: 1px solid var(--color-border);
border-radius: var(--radius-lg);
border-radius: var(--radius-modal);
box-shadow: var(--shadow-lg);
overflow: hidden;
}
Expand Down
9 changes: 6 additions & 3 deletions apps/desktop/src/components/ui/drag-overlay.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
gap: var(--space-4);
padding: var(--space-12);
border: 2px dashed rgba(124, 154, 130, 0.4);
border-radius: var(--radius-xl);
border-radius: var(--radius-modal);
}

.drag-overlay-icon {
Expand All @@ -33,8 +33,11 @@
}

.drag-overlay-text {
font-size: var(--text-lg);
font-family: var(--font-serif);
font-style: italic;
font-size: var(--text-display-sm);
color: var(--color-text-secondary);
margin: 0;
font-weight: 500;
font-weight: 400;
letter-spacing: -0.01em;
}
7 changes: 4 additions & 3 deletions apps/desktop/src/components/ui/keyboard-shortcuts.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
padding: var(--space-6);
background: var(--color-bg-secondary);
border: 1px solid var(--color-border);
border-radius: var(--radius-lg);
border-radius: var(--radius-modal);
box-shadow: var(--shadow-lg);
}

Expand All @@ -39,12 +39,13 @@
}

.shortcuts-keys {
font-family: 'SF Mono', 'Fira Code', monospace;
font-family: var(--font-mono);
font-size: 12px;
font-variant-numeric: tabular-nums;
padding: 3px 8px;
background: var(--color-bg-primary);
border: 1px solid var(--color-border);
border-radius: var(--radius-sm);
border-radius: var(--radius-xs);
color: var(--color-text-secondary);
}

Expand Down
8 changes: 4 additions & 4 deletions apps/desktop/src/components/ui/setup-wizard.css
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@
padding: var(--space-2) var(--space-4);
background: var(--color-bg-secondary);
border: 1px solid var(--color-border);
border-radius: var(--radius-md);
font-family: 'SF Mono', 'Fira Code', monospace;
border-radius: var(--radius-input);
font-family: var(--font-mono);
font-size: var(--text-xs);
color: var(--color-text-primary);
user-select: all;
Expand Down Expand Up @@ -152,7 +152,7 @@
padding: var(--space-3) var(--space-4);
background: var(--color-bg-secondary);
border: 1px solid var(--color-border);
border-radius: var(--radius-md);
border-radius: var(--radius-card);
cursor: pointer;
transition: border-color 120ms ease, background 120ms ease;
font-family: var(--font-sans);
Expand Down Expand Up @@ -189,7 +189,7 @@
justify-content: center;
gap: var(--space-2);
border: 2px dashed var(--color-border);
border-radius: var(--radius-lg);
border-radius: var(--radius-card);
cursor: pointer;
font-size: var(--text-sm);
color: var(--color-text-secondary);
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/components/ui/toast.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

.toast {
padding: 12px 24px;
border-radius: var(--radius-lg);
border-radius: var(--radius-card);
font-size: var(--text-sm);
font-weight: 450;
color: var(--color-text-primary);
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/components/ui/zotero-import.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
padding: var(--space-6);
background: var(--color-bg-secondary);
border: 1px solid var(--color-border);
border-radius: var(--radius-lg);
border-radius: var(--radius-modal);
box-shadow: var(--shadow-lg);
display: flex;
flex-direction: column;
Expand Down
Loading
Loading