mirror of
https://gitcode.com/JianFeeeee/TrulyMEM-TrueHumanMEM.git
synced 2026-09-22 18:08:12 +00:00
- 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.
47 lines
629 B
CSS
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;
|
|
}
|