tenseleyflow/loader / 01f3beb

Browse files

Cap tool widget height and force auto-height on child statics

Authored by espadonne
SHA
01f3beb6b13d24ecd229d8adfaeb62ccf12af51b
Parents
d66908d
Tree
e4b4534

1 changed file

StatusFile+-
M src/loader/ui/styles/theme.tcss 6 1
src/loader/ui/styles/theme.tcssmodified
@@ -51,14 +51,19 @@ StatusLine {
5151
     color: $text-muted;
5252
 }
5353
 
54
-/* Tool widgets */
54
+/* Tool widgets — height:auto so the colored border matches content */
5555
 ToolCallWidget {
5656
     height: auto;
57
+    max-height: 30;
5758
     margin: 0 0 1 0;
5859
     padding: 0 1;
5960
     border-left: thick $accent;
6061
 }
6162
 
63
+ToolCallWidget > Static {
64
+    height: auto;
65
+}
66
+
6267
 ToolCallWidget.pending {
6368
     border-left: thick $warning;
6469
 }