Files
TrulyMEM-TrueHumanMEM/graph_memory_tui/styles/app.css
JianFeeeee acd6c7174f fix: Fix input text not showing
- Add global Input style with visible colors
- Ensure text color is set correctly
- Simplify component styles
- Remove conflicting styles
2026-04-10 19:37:09 +08:00

36 lines
501 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: 40;
dock: right;
background: $panel;
}
StatusBar {
dock: bottom;
height: 1;
background: $primary;
color: $text-primary;
}