@@ -23,7 +23,7 @@ import { IEditorGroup } from 'vs/workbench/services/editor/common/editorGroupsSe
23
23
import { defaultUserDataProfileIcon , IProfileTemplateInfo , IUserDataProfileManagementService , PROFILE_FILTER } from 'vs/workbench/services/userDataProfile/common/userDataProfile' ;
24
24
import { Orientation , Sizing , SplitView } from 'vs/base/browser/ui/splitview/splitview' ;
25
25
import { Button , ButtonWithDropdown } from 'vs/base/browser/ui/button/button' ;
26
- import { defaultButtonStyles , defaultCheckboxStyles , defaultInputBoxStyles , defaultSelectBoxStyles } from 'vs/platform/theme/browser/defaultStyles' ;
26
+ import { defaultButtonStyles , defaultCheckboxStyles , defaultInputBoxStyles , defaultSelectBoxStyles , getInputBoxStyle } from 'vs/platform/theme/browser/defaultStyles' ;
27
27
import { registerColor } from 'vs/platform/theme/common/colorRegistry' ;
28
28
import { PANEL_BORDER } from 'vs/workbench/common/theme' ;
29
29
import { WorkbenchAsyncDataTree , WorkbenchList } from 'vs/platform/list/browser/listService' ;
@@ -55,6 +55,7 @@ import { AbstractUserDataProfileElement, isProfileResourceChildElement, isProfil
55
55
import { WorkbenchToolBar } from 'vs/platform/actions/browser/toolbar' ;
56
56
import { createInstantHoverDelegate } from 'vs/base/browser/ui/hover/hoverDelegateFactory' ;
57
57
import { Codicon } from 'vs/base/common/codicons' ;
58
+ import { settingsTextInputBorder } from 'vs/workbench/contrib/preferences/common/settingsEditorColorRegistry' ;
58
59
59
60
export const profilesSashBorder = registerColor ( 'profiles.sashBorder' , PANEL_BORDER , localize ( 'profilesSashBorder' , "The color of the Profiles editor splitview sash border." ) ) ;
60
61
@@ -484,7 +485,9 @@ class ProfileWidget extends Disposable {
484
485
this . nameContainer ,
485
486
undefined ,
486
487
{
487
- inputBoxStyles : defaultInputBoxStyles ,
488
+ inputBoxStyles : getInputBoxStyle ( {
489
+ inputBorder : settingsTextInputBorder
490
+ } ) ,
488
491
ariaLabel : localize ( 'profileName' , "Profile Name" ) ,
489
492
placeholder : localize ( 'profileName' , "Profile Name" ) ,
490
493
validationOptions : {
0 commit comments