fix(ui): align context tool row font size

Use the base tool font size for rolling and expanded context rows so nested read/search lines match the rest of the tool UI.
This commit is contained in:
Kit Langton
2026-03-05 13:36:00 -05:00
parent c47e581cc6
commit d930d327a4

View File

@@ -694,7 +694,7 @@
[data-slot="context-tool-expanded-action"] {
flex-shrink: 0;
font-size: 13px;
font-size: var(--font-size-base);
font-weight: 500;
color: var(--text-base);
}
@@ -704,7 +704,7 @@
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
font-size: 13px;
font-size: var(--font-size-base);
color: var(--text-base);
opacity: 0.75;
}
@@ -722,7 +722,7 @@
[data-slot="context-tool-rolling-action"] {
flex-shrink: 0;
font-size: 13px;
font-size: var(--font-size-base);
font-weight: 500;
color: var(--text-base);
}
@@ -732,7 +732,7 @@
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
font-size: 13px;
font-size: var(--font-size-base);
color: var(--text-weak);
}
}