전략편집기 수정

This commit is contained in:
Macbook
2026-05-25 17:56:25 +09:00
parent aac6454724
commit 02d14e4b2b
39 changed files with 1974 additions and 288 deletions
+113 -1
View File
@@ -1087,7 +1087,18 @@
color: var(--se-text);
font-size: 0.72rem;
}
.se-combo-num { width: 100%; }
.se-combo-num { width: 100%; display: flex; flex-direction: column; gap: 6px; }
.se-combo-num--always-input .se-combo-num-input { order: -1; }
.se-combo-num-select { width: 100%; }
.se-combo-field {
width: 100%;
display: flex;
flex-direction: column;
gap: 6px;
}
.se-combo-field-select { width: 100%; }
.sp-cond-field .se-combo-field .se-combo-num { margin-top: 0; }
.se-combo-num-input:focus {
outline: none;
border-color: var(--se-input-focus);
@@ -1188,6 +1199,13 @@
color: color-mix(in srgb, var(--se-success) 75%, transparent);
}
.se-node-config-bar .sp-cond-editor { margin: 0; }
.sp-cond-row-composite-tf {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 8px;
margin-bottom: 8px;
}
.se-node-config-bar .sp-cond-sel,
.se-node-config-bar .sp-cond-num {
background: var(--se-input-bg);
@@ -1339,6 +1357,100 @@
box-shadow: 0 0 12px color-mix(in srgb, var(--se-accent) 12%, transparent);
}
.se-palette-subtabs {
display: flex;
margin: 4px 10px 0;
border-bottom: 1px solid var(--se-border);
flex-shrink: 0;
}
.se-palette-subtab {
flex: 1;
padding: 8px 6px;
border: none;
background: transparent;
color: var(--se-text-muted);
font-size: 0.72rem;
font-weight: 600;
cursor: pointer;
}
.se-palette-subtab--on {
color: var(--se-tab-active);
box-shadow: inset 0 -2px 0 var(--se-tab-active);
}
.se-palette-subtab:first-child.se-palette-subtab--on {
color: var(--se-palette-section-ind, #2dd4bf);
box-shadow: inset 0 -2px 0 var(--se-palette-section-ind, #2dd4bf);
}
.se-palette-subtab:last-child.se-palette-subtab--on {
color: var(--se-palette-section-composite, #c084fc);
box-shadow: inset 0 -2px 0 var(--se-palette-section-composite, #c084fc);
}
.se-palette-toolbar {
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
margin: 8px 0 8px;
padding: 0 2px;
}
.se-palette-toolbar-title {
font-size: 0.65rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--se-text-dim);
font-weight: 700;
}
.se-palette-section--aux .se-palette-toolbar-title { color: var(--se-palette-section-ind); }
.se-palette-section--composite .se-palette-toolbar-title { color: var(--se-palette-section-composite, #c084fc); }
.se-palette-toolbar-actions {
display: flex;
align-items: center;
gap: 4px;
}
.se-palette-tool-btn {
display: flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
padding: 0;
border-radius: 6px;
border: 1px solid var(--se-border);
background: var(--se-btn-bg);
color: var(--se-text-muted);
cursor: pointer;
transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.se-palette-tool-btn:hover:not(:disabled) {
border-color: color-mix(in srgb, var(--se-accent) 45%, transparent);
color: var(--se-text);
background: var(--se-bg-elevated);
}
.se-palette-tool-btn:disabled {
opacity: 0.35;
cursor: not-allowed;
}
.se-palette-tool-btn--danger:hover:not(:disabled) {
border-color: color-mix(in srgb, var(--se-danger) 50%, transparent);
color: var(--se-danger);
}
.se-palette-empty {
margin: 12px 0 0;
font-size: 0.72rem;
color: var(--se-text-muted);
text-align: center;
}
.se-palette-item-modal .se-field-lbl {
display: flex;
flex-direction: column;
gap: 6px;
margin-top: 10px;
}
.se-palette-section { padding: 0 10px 10px; }
.se-palette-section--scroll { flex: 1; overflow-y: auto; min-height: 0; }
.se-palette-section h3 {