diff --git a/src/devtools/views/Profiler/ProfilingImportExportButtons.js b/src/devtools/views/Profiler/ProfilingImportExportButtons.js
index b97c2a317c..a6c0b14b2b 100644
--- a/src/devtools/views/Profiler/ProfilingImportExportButtons.js
+++ b/src/devtools/views/Profiler/ProfilingImportExportButtons.js
@@ -85,6 +85,7 @@ export default function ProfilingImportExportButtons() {
className={styles.Input}
type="file"
onChange={handleFiles}
+ tabIndex={-1}
/>
);
}
@@ -71,8 +71,7 @@ export default function SidebarSelectedFiberInfo(_: Props) {
-
:
-
+
: {listItems}
);
diff --git a/src/devtools/views/Profiler/SnapshotSelector.css b/src/devtools/views/Profiler/SnapshotSelector.css
index 4a19d964bf..e4f8aec57d 100644
--- a/src/devtools/views/Profiler/SnapshotSelector.css
+++ b/src/devtools/views/Profiler/SnapshotSelector.css
@@ -11,6 +11,7 @@
}
.Commits:focus {
outline: none;
+ background-color: var(--color-button-background-focus);
}
.IndexLabel {
diff --git a/src/devtools/views/TabBar.css b/src/devtools/views/TabBar.css
index 07362e6bde..e1a536e07f 100644
--- a/src/devtools/views/TabBar.css
+++ b/src/devtools/views/TabBar.css
@@ -15,6 +15,10 @@
.TabCurrent:hover {
background-color: var(--color-hover-background);
}
+.Tab:focus-within,
+.TabCurrent:focus-within {
+ background-color: var(--color-hover-background);
+}
.TabCurrent {
border-bottom: 3px solid var(--color-selected-border);