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