fix(header): tab title fade is resting-state only; clearer separators

The title fade no longer sits on controls: it lifts while the tab is
hovered or its controls/menu are open (hard clip instead) and is not
applied at all while the active tab renames. The active tab clips its
title instead of showing an ellipsis, matching inactive tabs. Tab
separators drop the extra transparency that made them nearly
invisible.
This commit is contained in:
Bohdan Triapitsyn
2026-08-24 20:16:06 +03:00
parent aad9c25164
commit b1023b87e7
3 changed files with 17 additions and 5 deletions
+9 -2
View File
@@ -1804,7 +1804,6 @@ html.desktop-runtime .markdown-content [data-openchamber-file-link="true"] {
height: 12px;
border-radius: 9999px;
background: var(--border);
opacity: 0.6;
}
.session-tab-slot[data-active='true'] + .session-tab-slot::before,
.session-tab-slot:not([data-active='true']):hover::before,
@@ -1826,8 +1825,16 @@ html.desktop-runtime .markdown-content [data-openchamber-file-link="true"] {
/* Session tab titles: fade out instead of "..." — the ellipsis reads as
clutter next to the tab's status dot and hover controls. Short titles
never reach the fade zone (the span spans the tab, not the text). */
never reach the fade zone (the span spans the tab, not the text). The
fade belongs to the resting state only: while the tab is hovered or its
controls are open, the title clips hard so the smear never sits next to
the menu/close/rename controls. */
.session-tab-title {
-webkit-mask-image: linear-gradient(to right, black calc(100% - 14px), transparent);
mask-image: linear-gradient(to right, black calc(100% - 14px), transparent);
}
.session-tab:hover .session-tab-title,
.session-tab[data-controls-open='true'] .session-tab-title {
-webkit-mask-image: none;
mask-image: none;
}