Skip to content

Commit a68b8c1

Browse files
bmeurerDevtools-frontend LUCI CQ
authored andcommitted
[lighthouse] Fix tab focus for "Learn more" in toolbar.
Fixed: 443929833 Change-Id: I76e27fcfeda239fc8c5cae1ab709318943b69172 Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/6939267 Auto-Submit: Benedikt Meurer <[email protected]> Reviewed-by: Kateryna Prokopenko <[email protected]> Commit-Queue: Kateryna Prokopenko <[email protected]> Commit-Queue: Benedikt Meurer <[email protected]>
1 parent 0c4e886 commit a68b8c1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

front_end/panels/lighthouse/LighthouseStartView.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,9 @@ export class StartView extends UI.Widget.Widget {
137137
if (runtimeSetting.learnMore) {
138138
const link = UI.XLink.XLink.create(
139139
runtimeSetting.learnMore, i18nString(UIStrings.learnMore), 'lighthouse-learn-more', undefined, 'learn-more');
140-
link.style.paddingLeft = '5px';
140+
link.style.marginLeft = '5px';
141141
link.style.display = 'inline-flex';
142+
link.style.height = 'revert';
142143
toolbar.appendToolbarItem(new UI.Toolbar.ToolbarItem(link));
143144
}
144145
}

0 commit comments

Comments
 (0)