How to remove verticle stacked tab title completely?

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.

Screenshot 2024-09-18 at 7.45.13 PM

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.

Screenshot 2024-09-19 094132

Moved to custom CSS.

1 Like

That did the trick! Thanks!

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.