Tighten mobile dashboard and expert layouts

This commit is contained in:
benya
2026-06-05 21:21:13 +03:00
parent 64f2a350d3
commit 80351ffce1

View File

@@ -1825,17 +1825,33 @@ select {
padding: 14px 0; padding: 14px 0;
} }
.topbar, .topbar {
.topbar-actions {
align-items: flex-start; align-items: flex-start;
flex-direction: column; flex-direction: column;
} }
.status-line { .topbar-actions {
order: 2; align-items: center;
flex-direction: row;
flex-wrap: wrap;
gap: 8px;
width: 100%;
}
.status-line {
order: 0;
flex: 1 1 auto;
}
.fleet-summary {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.fleet-summary > div {
min-height: 0;
padding: 12px 14px;
} }
.fleet-summary,
.fleet-toolbar { .fleet-toolbar {
grid-template-columns: 1fr; grid-template-columns: 1fr;
} }
@@ -1936,6 +1952,10 @@ select {
width: 100%; width: 100%;
} }
.section-title {
gap: 10px;
}
.section-actions > *, .section-actions > *,
.row-actions > *, .row-actions > *,
.command-filters select, .command-filters select,
@@ -2034,10 +2054,40 @@ select {
.command-main small, .command-main small,
.detail-meta span, .detail-meta span,
.technical-details code, .technical-details code,
.information-item strong { .information-item strong,
.code-block,
.command-detail-output,
.preset-review-output {
white-space: normal; white-space: normal;
} }
.code-block,
.command-detail-output,
.preset-review-output {
overflow-wrap: anywhere;
word-break: break-word;
}
.code-block {
max-height: 220px;
font-size: 11px;
}
.command-detail-output,
.preset-review-output {
max-height: 280px;
font-size: 11px;
}
.uci-actions,
.command-form {
grid-template-columns: 1fr;
}
.uci-actions button {
width: 100%;
}
.remote-session-row code { .remote-session-row code {
overflow: visible; overflow: visible;
text-overflow: clip; text-overflow: clip;
@@ -2072,6 +2122,7 @@ select {
.panel { .panel {
padding: 12px; padding: 12px;
overflow: hidden;
} }
.toast-region { .toast-region {