Skip to content
Open
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: 2 additions & 0 deletions Lib/profiling/sampling/_flamegraph_assets/flamegraph.css
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ html, body {
width: var(--sidebar-width);
background: var(--bg-secondary);
border-right: 1px solid var(--border);
scrollbar-color: var(--border) var(--bg-secondary);
display: flex;
flex-direction: column;
flex-shrink: 0;
Expand Down Expand Up @@ -748,6 +749,7 @@ body.resizing-sidebar {
min-width: 0;
overflow: hidden;
background: var(--bg-primary);
scrollbar-color: var(--border) var(--bg-secondary);
position: relative;
}

Expand Down
4 changes: 4 additions & 0 deletions Lib/profiling/sampling/_heatmap_assets/heatmap.css
Original file line number Diff line number Diff line change
Expand Up @@ -813,6 +813,10 @@
}

/* Scrollbar Styling */
.line-content {
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: we already have a .line-content block just before this.

scrollbar-color: var(--border) var(--bg-secondary);
}

.line-content::-webkit-scrollbar {
height: 6px;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add scrollbar support to Tachyon HTML dark mode
Loading