Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
gh-142927: Add scrollbar support to Tachyon HTML dark mode
  • Loading branch information
Wulian233 committed Apr 5, 2026
commit c8881b98ba6fb415cefa3108ea659c5acae6c7a7
21 changes: 21 additions & 0 deletions Lib/profiling/sampling/_shared_assets/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,27 @@ a.toolbar-btn:focus-visible {
outline-offset: 2px;
}

/* --------------------------------------------------------------------------
Scrollbar
-------------------------------------------------------------------------- */
* {
scrollbar-color: var(--border) var(--bg-secondary);
}

::-webkit-scrollbar {
width: 8px;
height: 8px;
}

::-webkit-scrollbar-thumb {
background: var(--border);
border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
background: var(--text-muted);
}

/* --------------------------------------------------------------------------
Shared Responsive
-------------------------------------------------------------------------- */
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add scrollbar support to Tachyon HTML dark mode
Loading