File tree Expand file tree Collapse file tree 4 files changed +11
-6
lines changed Expand file tree Collapse file tree 4 files changed +11
-6
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @primer/react-brand ' : patch
3
+ ---
4
+
5
+ Internal change to CSS module type definitions in the ` IDE ` component. No user-facing updates to ` IDE ` presentation or functionality are expected.
Original file line number Diff line number Diff line change 212
212
background : var (--brand-IDE-glass-editor-tab-bgColor-rest );
213
213
}
214
214
215
- .IDE__Editor-tab . active {
215
+ .IDE__Editor-tab-- active {
216
216
color : var (--brand-color-text-default );
217
217
border-top : var (--brand-borderWidth-thin ) solid var (--brand-IDE-default-editor-tab-borderColor );
218
218
z-index : 1 ;
219
219
}
220
220
221
- .IDE--default .IDE__Editor-tab . active {
221
+ .IDE--default .IDE__Editor-tab-- active {
222
222
background : var (--brand-IDE-default-editor-tab-bgColor-active );
223
223
}
224
224
227
227
color : var (--brand-color-text-subtle );
228
228
}
229
229
230
- .IDE--glass .IDE__Editor-tab . active {
230
+ .IDE--glass .IDE__Editor-tab-- active {
231
231
color : var (--brand-color-text-default );
232
232
background : var (--brand-IDE-glass-editor-tab-bgColor-active );
233
233
}
234
234
235
- .IDE--full-exp .IDE--glass .IDE__Editor-tab . active {
235
+ .IDE--full-exp .IDE--glass .IDE__Editor-tab-- active {
236
236
background : var (--brand-IDE-default-editor-bgColor );
237
237
}
238
238
Original file line number Diff line number Diff line change @@ -30,12 +30,12 @@ declare const styles: {
30
30
readonly "IDE__Editor-pane--suggested" : string ;
31
31
readonly "IDE__Editor-replay" : string ;
32
32
readonly "IDE__Editor-tab" : string ;
33
+ readonly "IDE__Editor-tab--active" : string ;
33
34
readonly "IDE__Editor-tab-close-icon" : string ;
34
35
readonly "IDE__Editor-tab-icon" : string ;
35
36
readonly "IDE__Editor-tabs" : string ;
36
37
readonly "IDE__inner" : string ;
37
38
readonly "IDE__main" : string ;
38
- readonly "active" : string ;
39
39
} ;
40
40
export = styles ;
41
41
Original file line number Diff line number Diff line change @@ -438,7 +438,7 @@ const _Editor = memo(
438
438
< button
439
439
{ ...tabs . getTabProps ( index . toString ( ) ) }
440
440
key = { file . name }
441
- className = { clsx ( styles [ 'IDE__Editor-tab' ] , isActiveTab && styles . active ) }
441
+ className = { clsx ( styles [ 'IDE__Editor-tab' ] , isActiveTab && styles [ 'IDE__Editor-tab-- active' ] ) }
442
442
>
443
443
{ language && (
444
444
< img
You can’t perform that action at this time.
0 commit comments