Merge branch 'dev'

This commit is contained in:
Jeff Emmett 2026-03-04 11:57:02 -08:00
commit f51581ef59
1 changed files with 11 additions and 13 deletions

View File

@ -1212,7 +1212,6 @@ const STYLES = `
display: flex;
align-items: center;
gap: 2px;
flex: 1;
min-width: 0;
overflow-x: auto;
overflow-y: visible;
@ -1226,7 +1225,7 @@ const STYLES = `
align-items: center;
gap: 4px;
flex-shrink: 0;
margin-left: 4px;
margin-left: auto;
}
/* ── Individual tab ── */
@ -1318,7 +1317,7 @@ const STYLES = `
.tab-add-wrap {
position: relative;
flex-shrink: 0;
margin-left: 4px;
margin-left: 2px;
z-index: 1000;
}
@ -1326,25 +1325,24 @@ const STYLES = `
display: flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
min-width: 44px;
padding: 4px 12px;
min-height: 44px;
border: 1px dashed var(--rs-border);
border-radius: 5px;
border: none;
border-radius: 6px 6px 0 0;
background: transparent;
color: var(--rs-text-muted);
font-size: 1rem;
font-size: 0.95rem;
cursor: pointer;
transition: border-color 0.15s, color 0.15s, background 0.15s;
transition: background 0.15s, color 0.15s;
flex-shrink: 0;
-webkit-tap-highlight-color: transparent;
touch-action: manipulation;
white-space: nowrap;
user-select: none;
}
.tab-add:hover, .tab-add:active {
border-color: #22d3ee;
color: #22d3ee;
background: rgba(34,211,238,0.08);
background: var(--rs-bg-hover);
color: var(--rs-text-primary);
}
/* ── Add menu ── */