Shrink the size of pinned tabs

You can always make a permanent CSS snippet if this won’t get implemented, as follows :grin:

.workspace-tab-header:has(.mod-pinned) {
  /* shrink if pinned */
  max-width: 60px !important;

  /* also hide the title of pinned tabs */
  & .workspace-tab-header-inner-title {
    display: none;
  }
}

Result (far better than using extra windows, right?):

Screenshot-25_11_2023-22.48.26

…there is still a tooltip shown if you hover the shrunk tab, and unpinning reverts the tab as expected :kissing_smiling_eyes: :ok_hand:

Heck, I’m keeping this in my vault - can’t believe I haven’t thought about it before.

12 Likes