mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 01:17:14 +00:00
wider profile list - fixes #5779
This commit is contained in:
parent
81e1757ae9
commit
a78fec0a6f
2 changed files with 5 additions and 7 deletions
|
@ -21,7 +21,7 @@ ul.nav-tabs(ngbNav, #nav='ngbNav')
|
||||||
[ngValue]='profile.id'
|
[ngValue]='profile.id'
|
||||||
) {{profile.name}}
|
) {{profile.name}}
|
||||||
|
|
||||||
.d-flex.mb-3.mt-4
|
.d-flex.mb-3
|
||||||
.input-group
|
.input-group
|
||||||
.input-group-prepend
|
.input-group-prepend
|
||||||
.input-group-text
|
.input-group-text
|
||||||
|
@ -90,7 +90,7 @@ ul.nav-tabs(ngbNav, #nav='ngbNav')
|
||||||
li(ngbNavItem)
|
li(ngbNavItem)
|
||||||
a(ngbNavLink, translate) Advanced
|
a(ngbNavLink, translate) Advanced
|
||||||
ng-template(ngbNavContent)
|
ng-template(ngbNavContent)
|
||||||
.form-line(*ngIf='config.store.profiles.length > 0')
|
.form-line.content-box(*ngIf='config.store.profiles.length > 0')
|
||||||
.header
|
.header
|
||||||
.title(translate) Show recent profiles in selector
|
.title(translate) Show recent profiles in selector
|
||||||
.description(translate) Set to 0 to disable recent profiles
|
.description(translate) Set to 0 to disable recent profiles
|
||||||
|
@ -103,7 +103,7 @@ ul.nav-tabs(ngbNav, #nav='ngbNav')
|
||||||
(ngModelChange)='config.save()'
|
(ngModelChange)='config.save()'
|
||||||
)
|
)
|
||||||
|
|
||||||
.form-line(*ngIf='config.store.profiles.length > 0')
|
.form-line.content-box(*ngIf='config.store.profiles.length > 0')
|
||||||
.header
|
.header
|
||||||
.title(translate) Show built-in profiles in selector
|
.title(translate) Show built-in profiles in selector
|
||||||
.description(translate) If disabled, only custom profiles will show up in the profile selector
|
.description(translate) If disabled, only custom profiles will show up in the profile selector
|
||||||
|
@ -113,12 +113,12 @@ ul.nav-tabs(ngbNav, #nav='ngbNav')
|
||||||
(ngModelChange)='config.save()'
|
(ngModelChange)='config.save()'
|
||||||
)
|
)
|
||||||
|
|
||||||
.form-line
|
.form-line.content-box
|
||||||
.header
|
.header
|
||||||
.title(translate) Default profile settings
|
.title(translate) Default profile settings
|
||||||
.description(translate) These apply to all profiles of a given type
|
.description(translate) These apply to all profiles of a given type
|
||||||
|
|
||||||
.list-group.mt-3.mb-3
|
.list-group.mt-3.mb-3.content-box
|
||||||
a.list-group-item.list-group-item-action(
|
a.list-group-item.list-group-item-action(
|
||||||
(click)='editDefaults(provider)',
|
(click)='editDefaults(provider)',
|
||||||
*ngFor='let provider of profileProviders'
|
*ngFor='let provider of profileProviders'
|
||||||
|
|
|
@ -28,8 +28,6 @@ export class ProfilesSettingsTabComponent extends BaseComponent {
|
||||||
profileGroups: ProfileGroup[]
|
profileGroups: ProfileGroup[]
|
||||||
filter = ''
|
filter = ''
|
||||||
|
|
||||||
@HostBinding('class.content-box') true
|
|
||||||
|
|
||||||
constructor (
|
constructor (
|
||||||
public config: ConfigService,
|
public config: ConfigService,
|
||||||
public hostApp: HostAppService,
|
public hostApp: HostAppService,
|
||||||
|
|
Loading…
Reference in a new issue