Skip to content

Commit ca86859

Browse files
authored
align contents to top (microsoft#205211)
1 parent 6145811 commit ca86859

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/vs/workbench/contrib/extensions/browser/extensionFeaturesTab.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ class ExtensionFeatureView extends Disposable {
473473
return $('td', undefined, ...data.map(item => {
474474
const result: Node[] = [];
475475
if (isMarkdownString(rowData)) {
476-
const element = $('td', undefined);
476+
const element = $('', undefined);
477477
this.renderMarkdown(rowData, element);
478478
result.push(element);
479479
} else if (item instanceof ResolvedKeybinding) {

src/vs/workbench/contrib/extensions/browser/media/extensionEditor.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -616,6 +616,10 @@
616616
padding: 2px 16px 2px 4px;
617617
}
618618

619+
.extension-editor > .body > .content table td {
620+
vertical-align: top;
621+
}
622+
619623
.extension-editor > .body > .content table th:last-child,
620624
.extension-editor > .body > .content table td:last-child {
621625
padding: 2px 4px;

0 commit comments

Comments
 (0)