1
0
mirror of https://github.com/Eugeny/tabby.git synced 2025-08-13 04:41:54 +00:00
This commit is contained in:
Eugene Pankov
2022-02-15 23:06:17 +01:00
parent 0eb1e8117c
commit 45b7391e89
3 changed files with 14 additions and 1 deletions

@@ -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', cdkDragHandle) {{index + 1}}
.index(*ngIf='!config.store.terminal.hideTabIndex && hostApp.platform !== Platform.macOS') {{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( .name(
[title]='tab.customTitle || tab.title', [title]='tab.customTitle || tab.title',

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

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