지표조건 프리셋 적용

This commit is contained in:
Macbook
2026-06-16 10:02:03 +09:00
parent f85c0bef20
commit 7440453bb3
6 changed files with 610 additions and 1 deletions
+106
View File
@@ -7594,6 +7594,112 @@ html.desktop-client .tmb-logo-version {
.sp-node-settings:hover {
background: rgba(230, 194, 0, 0.22);
}
.sp-node-preset {
display: flex;
align-items: center;
justify-content: center;
width: 26px;
height: 26px;
padding: 0;
border: none;
border-radius: var(--radius);
background: rgba(167, 139, 250, 0.15);
color: #a78bfa;
cursor: pointer;
flex-shrink: 0;
}
.sp-node-preset:hover {
background: rgba(167, 139, 250, 0.28);
}
.sp-node-preset-pop {
position: absolute;
top: calc(100% + 4px);
right: 8px;
z-index: 55;
width: min(320px, calc(100vw - 24px));
max-height: min(420px, 60vh);
overflow: auto;
padding: 8px 10px;
border-radius: 8px;
border: 1px solid color-mix(in srgb, #a78bfa 45%, transparent);
background: var(--bg2);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}
.se-cond-preset-head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 6px;
font-size: 0.62rem;
font-weight: 700;
color: #a78bfa;
margin-bottom: 4px;
text-transform: uppercase;
letter-spacing: 0.06em;
}
.se-cond-preset-hint {
margin: 0 0 8px;
font-size: 0.65rem;
color: var(--text2);
line-height: 1.35;
}
.se-cond-preset-empty {
margin: 0;
font-size: 0.68rem;
color: var(--text2);
}
.se-cond-preset-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 4px;
}
.se-cond-preset-item {
display: flex;
align-items: center;
gap: 8px;
width: 100%;
padding: 6px 8px;
border: 1px solid transparent;
border-radius: 6px;
background: color-mix(in srgb, var(--bg3, #1a1a2e) 80%, transparent);
color: var(--text1);
cursor: pointer;
text-align: left;
}
.se-cond-preset-item:hover {
border-color: color-mix(in srgb, #a78bfa 50%, transparent);
background: rgba(167, 139, 250, 0.08);
}
.se-cond-preset-graph-wrap {
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
width: 56px;
height: 32px;
border-radius: 4px;
background: rgba(0, 0, 0, 0.2);
color: #a78bfa;
}
.se-cond-preset-text {
display: flex;
flex-direction: column;
gap: 2px;
min-width: 0;
}
.se-cond-preset-label {
font-size: 0.72rem;
font-weight: 600;
color: var(--text1);
}
.se-cond-preset-desc {
font-size: 0.62rem;
color: var(--text2);
line-height: 1.3;
}
.sp-node-settings-pop {
position: absolute;
top: calc(100% + 4px);