mirror of
https://github.com/eugeny/tabby
synced 2025-12-03 22:35:35 +00:00
11 lines
515 B
Plaintext
11 lines
515 B
Plaintext
.colorbar([style.background-color]='tab.color', *ngIf='tab.color != null')
|
|
.progressbar([style.width]='progress + "%"', *ngIf='progress != null')
|
|
.activity-indicator(*ngIf='tab.activity$|async')
|
|
|
|
.index(*ngIf='!config.store.terminal.hideTabIndex', #handle) {{index + 1}}
|
|
.name(
|
|
[title]='tab.customTitle || tab.title',
|
|
[class.no-hover]='config.store.terminal.hideCloseButton'
|
|
) {{tab.customTitle || tab.title}}
|
|
button(*ngIf='!config.store.terminal.hideCloseButton',(click)='app.closeTab(tab, true)') ×
|