File tree Expand file tree Collapse file tree 2 files changed +5
-12
lines changed
workbench/contrib/sash/browser Expand file tree Collapse file tree 2 files changed +5
-12
lines changed Original file line number Diff line number Diff line change 111
111
background : transparent;
112
112
}
113
113
114
+ .monaco-sash .hover : before ,
115
+ .monaco-sash .active : before {
116
+ background : var (--vscode-sash-hoverBorder );
117
+ }
118
+
114
119
.monaco-sash .vertical : before {
115
120
width : var (--sash-hover-size );
116
121
left : calc (50% - (var (--sash-hover-size ) / 2 ));
Original file line number Diff line number Diff line change @@ -10,8 +10,6 @@ import { Registry } from 'vs/platform/registry/common/platform';
10
10
import { workbenchConfigurationNodeBase } from 'vs/workbench/common/configuration' ;
11
11
import { IWorkbenchContributionsRegistry , Extensions as WorkbenchExtensions } from 'vs/workbench/common/contributions' ;
12
12
import { SashSettingsController } from 'vs/workbench/contrib/sash/browser/sash' ;
13
- import { registerThemingParticipant } from 'vs/platform/theme/common/themeService' ;
14
- import { sashHoverBorder } from 'vs/platform/theme/common/colorRegistry' ;
15
13
import { isIOS } from 'vs/base/common/platform' ;
16
14
17
15
// Sash size contribution
@@ -39,13 +37,3 @@ Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Configuration)
39
37
} ,
40
38
}
41
39
} ) ;
42
-
43
- registerThemingParticipant ( ( theme , collector ) => {
44
- const sashHoverBorderColor = theme . getColor ( sashHoverBorder ) ;
45
- collector . addRule ( `
46
- .monaco-sash.hover:before,
47
- .monaco-sash.active:before {
48
- background: ${ sashHoverBorderColor } ;
49
- }
50
- ` ) ;
51
- } ) ;
You can’t perform that action at this time.
0 commit comments