完善 working5 gmoccapy HAL 输入对标

This commit is contained in:
2026-06-26 22:07:41 -04:00
parent 0d79b3545b
commit 917cec15ad
20 changed files with 2853 additions and 27 deletions

View File

@@ -735,7 +735,7 @@ button[data-icon-name] span {
grid-area: override;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: repeat(3, minmax(0, 1fr));
grid-template-rows: repeat(4, minmax(0, 1fr));
gap: 6px;
padding: 6px;
border-top: 2px solid var(--border);
@@ -806,7 +806,7 @@ button[data-icon-name] span {
.stepper {
display: grid;
grid-template-columns: 30px minmax(54px, 1fr) 30px;
grid-template-columns: 30px minmax(48px, 1fr) 30px 36px;
gap: 2px;
align-items: center;
margin-top: 1px;
@@ -827,6 +827,42 @@ button[data-icon-name] span {
min-width: 0;
min-height: 26px;
padding: 2px 4px;
font-size: 12px;
}
.toggle-row {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 3px;
min-width: 0;
}
.toggle-row button {
min-width: 0;
min-height: 24px;
padding: 2px 3px;
overflow: hidden;
font-size: 11px;
font-weight: 700;
text-overflow: ellipsis;
white-space: nowrap;
}
.toggle-row button[data-active="true"] {
background: #ffd25f;
border-color: #a76e00;
}
.status-chip {
min-width: 0;
overflow: hidden;
padding: 2px 4px;
background: #ebe6dc;
border: 1px solid #c6bfb3;
color: #4f4a42;
font: 10px/1.2 "Courier New", monospace;
text-overflow: ellipsis;
white-space: nowrap;
}
.spindle-coolant-panel {