@@ -71,7 +71,8 @@ export class AiStatsStatusBar extends Disposable {
71
71
height : 6 ,
72
72
73
73
borderRadius : 6 ,
74
- border : '1px solid var(--vscode-statusBar-foreground)' ,
74
+ borderWidth : '1px' ,
75
+ borderStyle : 'solid' ,
75
76
}
76
77
} ,
77
78
[
@@ -89,7 +90,7 @@ export class AiStatsStatusBar extends Disposable {
89
90
n . div ( {
90
91
style : {
91
92
width : this . _aiStatsFeature . aiRate . map ( v => `${ v * 100 } %` ) ,
92
- backgroundColor : 'var(--vscode-statusBar-foreground) ' ,
93
+ backgroundColor : 'currentColor ' ,
93
94
}
94
95
} )
95
96
] )
@@ -107,9 +108,6 @@ export class AiStatsStatusBar extends Disposable {
107
108
n . div ( {
108
109
class : 'header' ,
109
110
style : {
110
- fontWeight : 'bold' ,
111
- fontSize : '14px' ,
112
- marginBottom : '4px' ,
113
111
minWidth : '200px' ,
114
112
}
115
113
} ,
@@ -132,8 +130,8 @@ export class AiStatsStatusBar extends Disposable {
132
130
) ,
133
131
134
132
n . div ( { style : { display : 'flex' } } , [
135
- n . div ( { style : { flex : 1 } } , [
136
- localize ( 'text1' , "Manual vs. AI typing ratio : {0}" , aiRatePercent . get ( ) ) ,
133
+ n . div ( { style : { flex : 1 , paddingRight : '4px' } } , [
134
+ localize ( 'text1' , "Percentage of code generated by AI : {0}" , aiRatePercent . get ( ) ) ,
137
135
] ) ,
138
136
/*
139
137
TODO: Write article that explains the ratio and link to it.
@@ -152,8 +150,9 @@ export class AiStatsStatusBar extends Disposable {
152
150
}
153
151
]))*/
154
152
] ) ,
155
-
156
- localize ( 'text2' , "Accepted inline suggestions today: {0}" , this . _aiStatsFeature . acceptedInlineSuggestionsToday . get ( ) ) ,
153
+ n . div ( { style : { flex : 1 , paddingRight : '4px' } } , [
154
+ localize ( 'text2' , "Accepted inline suggestions today: {0}" , this . _aiStatsFeature . acceptedInlineSuggestionsToday . get ( ) ) ,
155
+ ] ) ,
157
156
] ) ;
158
157
}
159
158
}
0 commit comments