提交 15f635d6 编写于 作者: S Sandeep Somavarapu

💄

上级 1c46a0b1
......@@ -242,8 +242,6 @@ export class ExtensionEditor extends BaseEditor {
const version = append(subtitle, $('span.version'));
version.textContent = localize('version', 'Version');
version.style.display = 'none';
version.tabIndex = 0;
const description = append(details, $('.description'));
......@@ -342,12 +340,11 @@ export class ExtensionEditor extends BaseEditor {
template.name.textContent = extension.displayName;
template.identifier.textContent = extension.identifier.id;
template.version.textContent = extension.version;
template.version.style.display = 'inherit';
template.preview.style.display = extension.preview ? 'inherit' : 'none';
template.builtin.style.display = extension.type === ExtensionType.System ? 'inherit' : 'none';
template.publisher.textContent = extension.publisherDisplayName;
template.version.textContent = extension.version;
template.description.textContent = extension.description;
const extRecommendations = this.extensionTipsService.getAllRecommendationsWithReason();
......
......@@ -135,6 +135,11 @@
padding-left: 14px;
}
.extension-editor > .header > .details > .subtitle .version {
font-size: 90%;
font-style: italic;
}
.extension-editor > .header > .details > .description {
margin-top: 10px;
white-space: nowrap;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册