File tree Expand file tree Collapse file tree 3 files changed +18
-18
lines changed
src/vs/workbench/contrib/files/browser Expand file tree Collapse file tree 3 files changed +18
-18
lines changed Original file line number Diff line number Diff line change 57
57
flex : 0 ; /* do not steal space when label is hidden because we are in edit mode */
58
58
}
59
59
60
- .explorer-folders-view .pane-header .count {
61
- min-width : fit-content;
62
- display : flex;
63
- align-items : center;
64
- }
65
-
66
- .pane .horizontal : not (.expanded ) .pane-header .dirty-count .monaco-count-badge ,
67
- .pane-header .dirty-count .monaco-count-badge .hidden {
68
- display : none;
69
- }
70
-
71
- .dirty-count .monaco-count-badge {
72
- padding : 2px 4px ;
73
- margin-left : 6px ;
74
- min-height : auto;
75
- }
76
-
77
60
.explorer-folders-view .explorer-item .nonexistent-root {
78
61
opacity : 0.5 ;
79
62
}
Original file line number Diff line number Diff line change 3
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
4
*--------------------------------------------------------------------------------------------*/
5
5
6
+ .pane-header .open-editors-dirty-count-container {
7
+ min-width : fit-content;
8
+ display : flex;
9
+ align-items : center;
10
+ }
11
+
12
+ .pane .horizontal : not (.expanded ) .pane-header .open-editors-dirty-count-container > .dirty-count .monaco-count-badge ,
13
+ .pane-header .open-editors-dirty-count-container > .dirty-count .monaco-count-badge .hidden {
14
+ display : none;
15
+ }
16
+
17
+ .pane-header .open-editors-dirty-count-container > .dirty-count .monaco-count-badge {
18
+ padding : 2px 4px ;
19
+ margin-left : 6px ;
20
+ min-height : auto;
21
+ }
22
+
6
23
.open-editors .monaco-list .monaco-list-row : hover > .monaco-action-bar ,
7
24
.open-editors .monaco-list .monaco-list-row .focused > .monaco-action-bar ,
8
25
.open-editors .monaco-list .monaco-list-row .dirty > .monaco-action-bar ,
Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ export class OpenEditorsView extends ViewPane {
170
170
protected override renderHeaderTitle ( container : HTMLElement ) : void {
171
171
super . renderHeaderTitle ( container , this . title ) ;
172
172
173
- const count = dom . append ( container , $ ( '.count' ) ) ;
173
+ const count = dom . append ( container , $ ( '.open-editors-dirty- count-container ' ) ) ;
174
174
this . dirtyCountElement = dom . append ( count , $ ( '.dirty-count.monaco-count-badge.long' ) ) ;
175
175
176
176
this . dirtyCountElement . style . backgroundColor = asCssVariable ( badgeBackground ) ;
You can’t perform that action at this time.
0 commit comments