Skip to content

Commit

Permalink
Test commit using the vsx-extension widget
Browse files Browse the repository at this point in the history
  • Loading branch information
msujew committed Oct 5, 2021
1 parent 042e69c commit fbcc806
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions packages/vsx-registry/src/browser/style/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
--theia-vsx-extension-editor-icon-size: calc(var(--theia-vsx-extension-icon-size)*3);
}

.theia-vsx-extensions-icon {
-webkit-mask: url('extensions.svg');
mask: url('extensions.svg');
}

.theia-vsx-extensions {
height: 100%;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*******************************************************************************‚*/

import { injectable, inject, postConstruct } from '@theia/core/shared/inversify';
import { ViewContainer, PanelLayout, ViewContainerPart, Message, codicon } from '@theia/core/lib/browser';
import { ViewContainer, PanelLayout, ViewContainerPart, Message } from '@theia/core/lib/browser';
import { VSXExtensionsSearchBar } from './vsx-extensions-search-bar';
import { VSXExtensionsModel } from './vsx-extensions-model';
import { VSXSearchMode } from './vsx-extensions-search-model';
Expand Down Expand Up @@ -43,7 +43,7 @@ export class VSXExtensionsViewContainer extends ViewContainer {

this.setTitleOptions({
label: VSXExtensionsViewContainer.LABEL,
iconClass: codicon('extensions'),
iconClass: 'theia-vsx-extensions-icon',
closeable: true
});
}
Expand Down

0 comments on commit fbcc806

Please sign in to comment.