-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.tcss
More file actions
113 lines (95 loc) · 1.44 KB
/
styles.tcss
File metadata and controls
113 lines (95 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
MarkdownH1,
MarkdownH2,
MarkdownH3,
MarkdownH4,
MarkdownH5,
MarkdownH6 {
content-align: left top;
text-align: left;
margin-top: 1;
}
Screen {
background: #222;
}
Spacer {
height: 1;
}
Flex {
layout: horizontal;
width: 100%;
height: auto;
}
VerticalScroll {
padding-top: 1;
padding-left: 2;
background: transparent;
scrollbar-size: 0 0;
}
Header {
height: auto;
margin-bottom: 1;
}
ChatHistory {
height: auto;
}
ThinkingIndicator {
height: auto;
margin-bottom: 1;
}
BalloonSpinner {
width: auto;
height: 1;
margin-right: 1;
}
ToolPermissionPrompt {
height: auto;
margin-bottom: 1;
}
UserInput {
height: auto;
padding-bottom: 1;
}
SystemMessage, UserMessage, AgentMessage, ToolMessage {
height: auto;
margin-bottom: 1;
}
Markdown {
height: auto;
margin: 0;
padding: 0;
margin-bottom: -1;
}
Caret {
height: 1;
width: auto;
margin-right: 1;
opacity: 0.5;
}
TextArea {
height: auto;
min-height: 1;
max-height: 10;
width: 1fr;
border: none;
background: transparent;
color: white;
padding: 0;
margin: 0;
}
.tool-message {
padding-left: 2;
}
SlashCommandMenu {
height: auto;
max-height: 10;
display: none;
}
SlashCommandMenu.visible {
display: block;
}
SlashCommandMenu OptionList {
height: auto;
max-height: 10;
border: solid $primary;
background: $surface;
}