Files
TrulyMEM-TrueHumanMEM-local/graph_memory_tui/styles/components.css
JianFeeeee 6689f08456 feat: Add embedded SQLite database and web interface
- Implement EmbeddedGraphDB with full Neo4j compatibility
- Add web interface for browser access
- Fix input box display issue
- Add comprehensive database tests (15/15 passed)
- Simplify startup script (3 steps, no Docker needed)
- Add multi-language support
- Add .gitignore for clean repository
- Update documentation

All tests passed. Ready for production.
2026-04-10 15:43:22 +08:00

47 lines
629 B
CSS

/* Component Styles for Graph Memory TUI */
InputBox {
border: solid orange;
height: 3;
margin: 1;
padding: 1;
}
InputBox:focus {
border: double orange;
text-style: bold;
}
InputBox Input {
width: 1fr;
height: 1;
background: $surface;
color: $text;
border: none;
}
InputBox Input:focus {
background: $surface-lighten-1;
}
ConfigSection {
background: $panel;
margin: 1;
}
OperationLog {
background: $surface-darken-1;
height: 1fr;
margin: 1;
}
CypherQueryBox {
border: solid green;
margin: 1;
}
MessageHistory {
height: 1fr;
margin: 1;
}