mirror of
https://gitcode.com/JianFeeeee/TrulyMEM-TrueHumanMEM.git
synced 2026-09-20 17:08:18 +00:00
- Fix F3 tool details: use display:none/block instead of re-compose - Increase sidebar width from 40 to 70 for readability - Sync 一键启动指南.md with actual entry points (trulymem_entry.py) - Rewrite 工作记忆链机制说明.md with actual task_* tool APIs - Rewrite 架构.md with actual file structure (38 Python files) - Update docs/README.md with complete feature list
42 lines
598 B
CSS
42 lines
598 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: 70;
|
|
dock: right;
|
|
background: $panel;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
RightPanel ScrollableContainer {
|
|
height: 1fr;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
StatusBar {
|
|
dock: bottom;
|
|
height: 1;
|
|
background: $primary;
|
|
color: $text-primary;
|
|
}
|