Files
Medios-Macina/TUI/tui.tcss

177 lines
2.4 KiB
Plaintext
Raw 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;
}
2025-12-24 02:13:21 -08:00
#command-row {
width: 100%;
height: auto;
}
2025-11-25 20:09:33 -08:00
#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;
}
2025-12-24 02:13:21 -08:00
#cmd-suggestions {
2025-11-25 20:09:33 -08:00
width: 100%;
2025-12-24 02:13:21 -08:00
height: auto;
max-height: 8;
margin-top: 1;
background: $surface;
border: round $panel-darken-2;
}
#results-pane {
width: 100%;
height: 2fr;
padding: 1;
background: $panel;
border: round $panel-darken-2;
margin-top: 1;
}
#store-select {
width: 24;
margin-right: 2;
height: 3;
2025-11-25 20:09:33 -08:00
}
2025-12-24 02:13:21 -08:00
#output-path {
2025-11-25 20:09:33 -08:00
width: 1fr;
2025-12-24 02:13:21 -08:00
height: 3;
}
#bottom-pane {
width: 100%;
height: 1fr;
2025-11-25 20:09:33 -08:00
padding: 1;
background: $panel;
border: round $panel-darken-2;
}
2025-12-24 02:13:21 -08:00
#store-row {
width: 100%;
height: auto;
2025-11-25 20:09:33 -08:00
}
2025-12-24 02:13:21 -08:00
#logs-workers-row {
width: 100%;
height: 1fr;
2025-11-25 20:09:33 -08:00
margin-top: 1;
}
2025-12-24 02:13:21 -08:00
#logs-pane,
#workers-pane {
width: 1fr;
height: 100%;
padding: 0 1;
2025-11-25 20:09:33 -08:00
}
2025-12-24 02:13:21 -08:00
.section-title {
text-style: bold;
color: $text-muted;
margin-top: 1;
2025-11-27 10:59:01 -08:00
}
2025-11-25 20:09:33 -08:00
#log-output {
2025-12-24 02:13:21 -08:00
height: 1fr;
2025-11-25 20:09:33 -08:00
}
#workers-table {
2025-12-24 02:13:21 -08:00
height: 1fr;
2025-11-25 20:09:33 -08:00
}
#results-table {
height: 1fr;
}
2025-12-24 02:13:21 -08:00
2025-11-25 20:09:33 -08:00
.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-12-24 02:13:21 -08:00
}
#tags-button,
#metadata-button,
#relationships-button {
width: auto;
min-width: 12;
margin: 0 1;
}
#popup-title {
width: 100%;
height: 3;
text-style: bold;
content-align: center middle;
border: round $panel-darken-2;
background: $boost;
}
#popup-text,
#tags-editor {
height: 1fr;
border: round $panel-darken-2;
}
#tags-buttons {
width: 100%;
height: auto;
margin-top: 1;
}
#tags-status {
width: 1fr;
height: 3;
content-align: left middle;
2025-11-25 20:09:33 -08:00
}