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
parent
a6730be3d8
commit
777c2ac861
|
@ -144,6 +144,7 @@ export class CallStackWidget extends Disposable {
|
|||
multipleSelectionSupport: false,
|
||||
mouseSupport: false,
|
||||
keyboardSupport: false,
|
||||
setRowLineHeight: false,
|
||||
accessibilityProvider: instantiationService.createInstance(StackAccessibilityProvider),
|
||||
}
|
||||
) as WorkbenchList<ListItem>);
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue