mirror of
https://gitcode.com/JianFeeeee/TrulyMEM-TrueHumanMEM.git
synced 2026-09-20 00:48:52 +00:00
- Fix tool calls format for DeepSeek API (add type field) - Fix config event handler name - Fix message history display (preserve all messages) - Fix right panel width and scrolling - Add async config update to prevent UI freeze - Add prompt caching with singleton pattern - Update build scripts with complete hidden imports
41 lines
579 B
CSS
41 lines
579 B
CSS
/* Global Styles for Graph Memory TUI */
|
|
|
|
GraphMemoryApp {
|
|
background: $surface;
|
|
color: $text;
|
|
}
|
|
|
|
/* 全局Input样式 - 确保可见 */
|
|
Input {
|
|
background: $surface-lighten-1;
|
|
color: $text;
|
|
border: solid $primary;
|
|
}
|
|
|
|
Input:focus {
|
|
border: double $accent;
|
|
}
|
|
|
|
LeftPanel {
|
|
width: 1fr;
|
|
dock: left;
|
|
}
|
|
|
|
RightPanel {
|
|
width: 35;
|
|
dock: right;
|
|
background: $panel;
|
|
}
|
|
|
|
RightPanel ScrollableContainer {
|
|
height: 100%;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
StatusBar {
|
|
dock: bottom;
|
|
height: 1;
|
|
background: $primary;
|
|
color: $text-primary;
|
|
}
|