What I’m trying to do
I am trying to figure out a way to remove the vertical title/tab in stacked tabs mode entirely, including the “x” and icon (see picture).
Things I have tried
I was able to find a couple of snippets in the forum, but they didn’t seem to do the trick … I am currently using Catppuccin theme.
ariehen
2
You could try this to start:
.workspace .mod-root .workspace-tabs.mod-stacked .workspace-tab-container {
& .workspace-tab-header-inner-close-button {
display: none;
}
& .workspace-tab-header-inner-icon {
display: none;
}
& .workspace-tab-header-inner-title {
color: transparent;
}
}
If the tab is pinned or linked will still show, but those can be taken care of as well.
Moved to custom CSS.
1 Like
That did the trick! Thanks!
system
Closed
4
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.