@@ -29,8 +29,8 @@ import { ILabelService } from 'vs/platform/label/common/label';
29
29
import { IMarker , IRelatedInformation , MarkerSeverity } from 'vs/platform/markers/common/markers' ;
30
30
import { IOpenerService } from 'vs/platform/opener/common/opener' ;
31
31
import { SeverityIcon } from 'vs/platform/severityIcon/common/severityIcon' ;
32
- import { contrastBorder , editorBackground , editorErrorBorder , editorErrorForeground , editorInfoBorder , editorInfoForeground , editorWarningBorder , editorWarningForeground , oneOf , registerColor , textLinkActiveForeground , textLinkForeground , transparent } from 'vs/platform/theme/common/colorRegistry' ;
33
- import { IColorTheme , IThemeService , registerThemingParticipant } from 'vs/platform/theme/common/themeService' ;
32
+ import { contrastBorder , editorBackground , editorErrorBorder , editorErrorForeground , editorInfoBorder , editorInfoForeground , editorWarningBorder , editorWarningForeground , oneOf , registerColor , transparent } from 'vs/platform/theme/common/colorRegistry' ;
33
+ import { IColorTheme , IThemeService } from 'vs/platform/theme/common/themeService' ;
34
34
35
35
class MessageWidget {
36
36
@@ -412,14 +412,3 @@ export const editorMarkerNavigationInfo = registerColor('editorMarkerNavigationI
412
412
export const editorMarkerNavigationInfoHeader = registerColor ( 'editorMarkerNavigationInfo.headerBackground' , { dark : transparent ( editorMarkerNavigationInfo , .1 ) , light : transparent ( editorMarkerNavigationInfo , .1 ) , hc : null } , nls . localize ( 'editorMarkerNavigationInfoHeaderBackground' , 'Editor marker navigation widget info heading background.' ) ) ;
413
413
414
414
export const editorMarkerNavigationBackground = registerColor ( 'editorMarkerNavigation.background' , { dark : editorBackground , light : editorBackground , hc : editorBackground } , nls . localize ( 'editorMarkerNavigationBackground' , 'Editor marker navigation widget background.' ) ) ;
415
-
416
- registerThemingParticipant ( ( theme , collector ) => {
417
- const linkFg = theme . getColor ( textLinkForeground ) ;
418
- if ( linkFg ) {
419
- collector . addRule ( `.monaco-editor .marker-widget a.code-link span { color: ${ linkFg } ; }` ) ;
420
- }
421
- const activeLinkFg = theme . getColor ( textLinkActiveForeground ) ;
422
- if ( activeLinkFg ) {
423
- collector . addRule ( `.monaco-editor .marker-widget a.code-link span:hover { color: ${ activeLinkFg } ; }` ) ;
424
- }
425
- } ) ;
0 commit comments