-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
I worked with ChatGPT and it came up with the css code below to get close to what I wanted. If anyone's interested in the future... /* ========================================================= /* Frame behind tabs */ /* Inactive tabs */ /* Active tab = editor surface */ /* Remove active underline bar (Border/Obsidian variants) */ /* Editor surface behind the tab (so it reads as one plane) */ /* Close the physical gap: pull active tab down (tune the px) / /* Make the join look clean */ |
Beta Was this translation helpful? Give feedback.


I worked with ChatGPT and it came up with the css code below to get close to what I wanted. If anyone's interested in the future...
/* =========================================================
Border — Light mode — merged active tab (minimal)
========================================================= */
/* Frame behind tabs */
.theme-light .mod-root .workspace-tab-header-container,
.theme-light .mod-root .workspace-tab-header-container-inner {
background: #B8CEEA !important;
}
/* Inactive tabs */
.theme-light
.workspace-tabs:not(.mod-stacked)
.workspace-tab-header:not(.is-active)
.workspace-tab-header-inner {
background: #B8CEEA !important;
box-shadow: none !important;
}
/* Active tab = ed…