1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-23 13:13:49 +03:00
This commit is contained in:
Eugene Pankov 2022-02-15 23:06:17 +01:00
parent 0eb1e8117c
commit 45b7391e89
No known key found for this signature in database
GPG Key ID: 5896FCBBDD1CF4F4
3 changed files with 14 additions and 1 deletions

View File

@ -5,7 +5,11 @@
.index(*ngIf='!config.store.terminal.hideTabIndex && hostApp.platform === Platform.macOS', cdkDragHandle) {{index + 1}}
.index(*ngIf='!config.store.terminal.hideTabIndex && hostApp.platform !== Platform.macOS') {{index + 1}}
.icon(class='fa-fw {{tab.icon}}', style='{{ (tab.color)?"color:"+tab.color:"" }}', *ngIf='config.store.terminal.showTabProfileIcon')
.icon(
*ngIf='config.store.terminal.showTabProfileIcon && tab.icon',
[ngClass]='tab.icon',
[style.color]='tab.color'
)
.name(
[title]='tab.customTitle || tab.title',

View File

@ -41,6 +41,11 @@ $tabs-height: 38px;
margin-top: 1px;
}
.icon {
font-size: 13px;
margin: 1px 4px 0 0;
}
.name {
flex: auto;
margin-top: 1px;

View File

@ -62,6 +62,10 @@ app-root {
color: rgba(255, 255, 255, 0.4);
}
.icon {
opacity: .75;
}
button {
color: $body-color;
border: none;