Skip to content

Commit f037b49

Browse files
committed
fix(terminal): improve tab bar font size and contrast
Bump font size from 11px to 12px for tab items, icons, cwd, and action buttons. Use active text color for better readability in both light and dark themes. Increase cwd opacity from 0.6 to 0.8.
1 parent 0ea1d85 commit f037b49

1 file changed

Lines changed: 7 additions & 8 deletions

File tree

src/styles/Extn-Terminal.less

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,8 @@
153153
height: 28px;
154154
min-height: 28px;
155155
cursor: pointer;
156-
color: var(--terminal-tab-text);
157-
font-size: 11px;
156+
color: var(--terminal-tab-active-text);
157+
font-size: 12px;
158158
white-space: nowrap;
159159
overflow: hidden;
160160
}
@@ -176,7 +176,7 @@
176176
display: flex;
177177
align-items: center;
178178
justify-content: center;
179-
font-size: 11px;
179+
font-size: 12px;
180180
flex-shrink: 0;
181181
}
182182

@@ -190,14 +190,14 @@
190190
}
191191

192192
.terminal-flyout-cwd {
193-
font-size: 11px;
193+
font-size: 12px;
194194
color: var(--terminal-tab-text);
195195
flex-shrink: 1;
196196
min-width: 0;
197197
max-width: 50%;
198198
margin-left: 4px;
199199
margin-right: 2px;
200-
opacity: 0.6;
200+
opacity: 0.8;
201201
overflow: hidden;
202202
text-overflow: ellipsis;
203203
display: none;
@@ -265,8 +265,8 @@
265265
height: 100%;
266266
padding: 0;
267267
cursor: pointer;
268-
color: var(--terminal-tab-text);
269-
font-size: 11px;
268+
color: var(--terminal-tab-active-text);
269+
font-size: 12px;
270270
background: transparent;
271271
border: none;
272272
overflow: hidden;
@@ -275,7 +275,6 @@
275275

276276
.terminal-flyout-new-btn:hover {
277277
background: rgba(255, 255, 255, 0.05);
278-
color: var(--terminal-tab-active-text);
279278
}
280279

281280
/* Dropdown chevron: visible in both modes */

0 commit comments

Comments
 (0)