Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified src-tauri/icons/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
65 changes: 63 additions & 2 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -316,8 +316,8 @@ p {
}

.command-bar {
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 | Confidence: Medium

The change from a fixed 5‑column grid to a flex layout with wrapping alters the visual structure of the command bar. The old grid enforced a specific column order (four max-content columns + a flexible path‑readout). With flex‑wrap, if the bar contains more items than fit on one line (especially after the new “phpMyAdmin” button), they will wrap rather than stay on the same row. This is a deliberate decision to accommodate the new button, but it may degrade the layout on narrow windows or when service-status icons change width. No CI results are available to verify behavior in the production theme. The external absence of a regression is assumed; thus the finding is speculative.

display: grid;
grid-template-columns: max-content max-content max-content max-content minmax(220px, 1fr);
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 10px;
margin-top: 14px;
Expand Down Expand Up @@ -349,6 +349,7 @@ p {
}

.path-readout {
flex: 1 1 280px;
min-width: 0;
overflow: hidden;
color: var(--muted-strong);
Expand Down Expand Up @@ -572,6 +573,23 @@ p {
gap: 6px;
}

.checkbox-field {
display: flex;
align-items: center;
gap: 10px;
}

.checkbox-field input {
width: 18px;
min-height: 18px;
flex: 0 0 auto;
}

.checkbox-field span {
color: var(--text);
font-weight: 750;
}

.logs {
flex: 1;
min-height: 390px;
Expand Down Expand Up @@ -601,6 +619,40 @@ p {
margin-top: 14px;
}

.compat-readout {
display: grid;
gap: 8px;
margin: 18px 0 0;
}

.compat-readout div {
display: grid;
grid-template-columns: 120px minmax(0, 1fr);
gap: 10px;
border: 1px solid var(--border);
border-radius: var(--radius-sm);
background: var(--surface-soft);
padding: 10px 12px;
}

.compat-readout dt {
color: var(--muted);
font-size: 0.72rem;
font-weight: 800;
text-transform: uppercase;
}

.compat-readout dd {
min-width: 0;
margin: 0;
overflow: hidden;
color: var(--text);
font-family: var(--font-mono);
font-size: 0.88rem;
text-overflow: ellipsis;
white-space: nowrap;
}

.settings-section {
display: grid;
gap: 12px;
Expand Down Expand Up @@ -699,6 +751,15 @@ p {
padding: 12px;
}

.setup-modal {
display: grid;
gap: 12px;
}

.setup-modal p {
margin-top: 0;
}

.modal-actions {
display: flex;
justify-content: flex-end;
Expand Down
Loading