This commit is contained in:
33333-33333 2026-06-07 18:06:35 +09:00
commit b454ffbd40
21 changed files with 1349 additions and 712 deletions

View file

@ -117,3 +117,66 @@ h1, h2, p { margin: 0; }
.compact-rules .mini-box { padding: 8px; font-size: 10px; }
.primary-button:disabled { filter: grayscale(1); background: #c9d2ca; color: #526456; }
.formula-box {
border: 3px solid var(--line);
background: #f7fff5;
padding: 10px;
margin: 10px 0;
line-height: 1.5;
color: var(--ink);
font-size: 12px;
font-weight: 700;
}
.equipment-menu-lines {
border: 3px solid var(--line);
background: #ffffff;
padding: 10px;
margin: 8px 0;
color: var(--muted);
line-height: 1.45;
}
.equipment-menu-lines p { margin: 4px 0; }
/* v11 compact clicked-equipment bubble */
.modal.equipment-popover {
background: transparent;
align-items: flex-start;
justify-content: flex-start;
padding: 0;
pointer-events: none;
}
.modal.equipment-popover .modal-card {
position: absolute;
left: var(--popover-x, 16px);
top: var(--popover-y, 16px);
width: min(320px, calc(100vw - 24px));
max-height: min(360px, calc(100vh - 24px));
overflow: auto;
padding: 10px;
border-width: 3px;
pointer-events: auto;
box-shadow: 6px 6px 0 rgba(16,32,21,.18);
}
.modal.equipment-popover .modal-card h2 {
font-size: 14px;
margin-bottom: 6px;
}
.modal.equipment-popover .modal-actions {
margin-top: 8px;
gap: 6px;
justify-content: flex-start;
}
.modal.equipment-popover .modal-actions button {
padding: 7px 9px;
font-size: 10px;
}
.equipment-menu-lines.compact {
padding: 7px;
margin: 6px 0;
font-size: 10px;
}
.formula-box.compact {
padding: 7px;
margin: 6px 0;
font-size: 10px;
}