未验证 提交 5b7dcda1 编写于 作者: J Jackson Kearl 提交者: GitHub

Merge pull request #54976 from JacksonKearl/titel-rendering

Fix title rendering issues (ellipsis, clipping)
...@@ -10,5 +10,4 @@ ...@@ -10,5 +10,4 @@
font-size: 11px; font-size: 11px;
-webkit-margin-before: 0; -webkit-margin-before: 0;
-webkit-margin-after: 0; -webkit-margin-after: 0;
display: flex;
} }
...@@ -71,6 +71,10 @@ export class ExtensionsListView extends ViewletPanel { ...@@ -71,6 +71,10 @@ export class ExtensionsListView extends ViewletPanel {
super({ ...(options as IViewletPanelOptions), ariaHeaderLabel: options.title }, keybindingService, contextMenuService, configurationService); super({ ...(options as IViewletPanelOptions), ariaHeaderLabel: options.title }, keybindingService, contextMenuService, configurationService);
} }
protected renderHeader(container: HTMLElement): void {
this.renderHeaderTitle(container);
}
renderHeaderTitle(container: HTMLElement): void { renderHeaderTitle(container: HTMLElement): void {
super.renderHeaderTitle(container, this.options.title); super.renderHeaderTitle(container, this.options.title);
......
...@@ -27,6 +27,10 @@ ...@@ -27,6 +27,10 @@
height: calc(100% - 38px); height: calc(100% - 38px);
} }
.extensions-viewlet > .extensions .list-actionbar-container {
margin-right: 10px;
}
.extensions-viewlet > .extensions .list-actionbar-container .monaco-action-bar .action-item > .octicon { .extensions-viewlet > .extensions .list-actionbar-container .monaco-action-bar .action-item > .octicon {
font-size: 12px; font-size: 12px;
line-height: 1; line-height: 1;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册