Files
Medios-Macina/TUI/tui.tcss

112 lines
1.5 KiB
Plaintext
Raw Permalink Normal View History

2025-11-25 20:09:33 -08:00
#app-shell {
width: 100%;
height: 100%;
padding: 1 2;
background: $surface;
layout: vertical;
}
2025-11-27 10:59:01 -08:00
#command-pane {
2025-11-25 20:09:33 -08:00
width: 100%;
height: auto;
background: $boost;
padding: 1;
border: round $primary;
}
#pipeline-input {
width: 1fr;
min-height: 3;
padding: 0 1;
background: $surface;
color: $text;
border: round $primary;
}
#pipeline-input:focus {
border: double $primary;
background: $surface;
}
#status-panel {
2025-11-27 10:59:01 -08:00
width: auto;
max-width: 25;
height: 3;
2025-11-25 20:09:33 -08:00
text-style: bold;
content-align: center middle;
padding: 0 1;
border: solid $panel-darken-1;
}
#content-row {
width: 100%;
height: 1fr;
}
#left-pane,
#right-pane {
width: 1fr;
height: 100%;
padding: 1;
background: $panel;
border: round $panel-darken-2;
}
#left-pane {
2025-11-27 10:59:01 -08:00
max-width: 60;
2025-11-25 20:09:33 -08:00
}
.section-title {
text-style: bold;
color: $text-muted;
margin-top: 1;
}
.preset-entry {
padding: 1;
border: tall $panel-darken-1;
margin-bottom: 1;
}
2025-11-27 10:59:01 -08:00
#preset-list {
height: 25;
border: solid $secondary;
}
2025-11-25 20:09:33 -08:00
#log-output {
height: 16;
}
#workers-table {
height: auto;
}
#results-table {
height: 1fr;
}
#metadata-tree {
height: 1fr;
border: round $panel-darken-1;
}
.status-info {
background: $boost;
color: $text;
}
.status-success {
background: $success 20%;
color: $success;
}
.status-error {
background: $error 20%;
color: $error;
2025-11-27 10:59:01 -08:00
}
#run-button {
width: auto;
min-width: 10;
margin: 0 1;
2025-11-25 20:09:33 -08:00
}