Here i have my current styling for stacked tabs. I like the infinite scrolling and have limited real estate, but its important for me to see all open tabs in a pane.
.workspace .mod-root .workspace-tabs {
min-width: 33%; /* Use full width for tabs */
}
/* Align stacked tabs horizontally and style them like header tabs */
.workspace .mod-root .workspace-tabs.mod-stacked {
min-width: 33%; /* Use full width for tabs */
position: sticky;
}
.workspace .mod-root .workspace-tab-container.mod-stacked {
min-width: 50%; /* Use full width for tabs */
}
.workspace .mod-root .workspace-tabs.mod-stacked .workspace-tab-container .workspace-tab-header {
width: 25px;
}
.workspace .mod-root .workspace-tabs.mod-stacked .workspace-tab-container .workspace-tab-header-inner-title {
font-weight: 600;
font-size: medium;
}
.markdown-source-view.cm-s-obsidian.mod-cm6 {
margin-left: -20px;
}
Here’s my request:
Is there a way to just have the regular tab bar on top in stacked mode? I’m no coder and this CSS is the extent of my capability.