Skip to content

Commit

Permalink
fixes #91620
Browse files Browse the repository at this point in the history
  • Loading branch information
sbatten committed Feb 26, 2020
1 parent eee9122 commit 75d8eee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@
align-items: center;
}

.explorer-viewlet .pane-header .monaco-count-badge.hidden {
.pane-header .dirty-count.monaco-count-badge.hidden {
display: none;
}

.explorer-viewlet .monaco-count-badge {
.dirty-count.monaco-count-badge {
padding: 1px 6px 2px;
margin-left: 6px;
min-height: auto;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export class OpenEditorsView extends ViewPane {
super.renderHeaderTitle(container, this.title);

const count = dom.append(container, $('.count'));
this.dirtyCountElement = dom.append(count, $('.monaco-count-badge'));
this.dirtyCountElement = dom.append(count, $('.dirty-count.monaco-count-badge'));

this._register((attachStylerCallback(this.themeService, { badgeBackground, badgeForeground, contrastBorder }, colors => {
const background = colors.badgeBackground ? colors.badgeBackground.toString() : '';
Expand Down

0 comments on commit 75d8eee

Please sign in to comment.