testing: fix vertical centering of component in the call stack view (#227155)

![](https://memes.peet.io/img/24-08-4e5018a2-76fe-424b-afbe-a107f119d811.png)
pull/207670/merge
Connor Peet 2024-08-29 14:31:12 -07:00 committed by GitHub
parent a6730be3d8
commit 777c2ac861
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View File

@ -144,6 +144,7 @@ export class CallStackWidget extends Disposable {
multipleSelectionSupport: false,
mouseSupport: false,
keyboardSupport: false,
setRowLineHeight: false,
accessibilityProvider: instantiationService.createInstance(StackAccessibilityProvider),
}
) as WorkbenchList<ListItem>);

View File

@ -24,6 +24,10 @@
&[role="link"] {
cursor: pointer;
}
.monaco-icon-label::before {
height: auto;
}
}
&.collapsed {
@ -39,6 +43,7 @@
.collapse-button {
width: 16px;
min-height: 1px; /* show even if empty */
line-height: 0;
a {
cursor: pointer;
@ -56,7 +61,6 @@
.multiCallStackWidget {
.multiCallStackFrameContainer {
background: none !important;
line-height: inherit !important;
}
}