mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 21:06:57 +00:00
💄
This commit is contained in:
parent
1c46a0b15d
commit
15f635d6e7
2 changed files with 6 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue