그래프방식 조건선택 기능 추가
This commit is contained in:
@@ -1218,18 +1218,57 @@
|
||||
transition: opacity 0.12s, background 0.12s;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.se-flow-preset {
|
||||
border: none;
|
||||
background: rgba(167, 139, 250, 0.2);
|
||||
color: #a78bfa;
|
||||
width: 18px; height: 18px;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 0;
|
||||
opacity: 0;
|
||||
transition: opacity 0.12s, background 0.12s;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.se-flow-preset:hover {
|
||||
background: rgba(167, 139, 250, 0.35);
|
||||
}
|
||||
.se-flow-settings:hover {
|
||||
background: rgba(230, 194, 0, 0.2);
|
||||
}
|
||||
.se-flow-node:hover .se-flow-del,
|
||||
.se-flow-node:hover .se-flow-settings,
|
||||
.se-flow-node:hover .se-flow-preset,
|
||||
.se-flow-node--selected .se-flow-del,
|
||||
.se-flow-node--selected .se-flow-settings,
|
||||
.se-flow-node--selected .se-flow-preset,
|
||||
.se-flow-node--settings-open .se-flow-del,
|
||||
.se-flow-node--settings-open .se-flow-settings {
|
||||
.se-flow-node--settings-open .se-flow-settings,
|
||||
.se-flow-node--settings-open .se-flow-preset,
|
||||
.se-flow-node--preset-open .se-flow-del,
|
||||
.se-flow-node--preset-open .se-flow-settings,
|
||||
.se-flow-node--preset-open .se-flow-preset {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.se-flow-preset-pop {
|
||||
position: absolute;
|
||||
top: 6px;
|
||||
right: 6px;
|
||||
z-index: 40;
|
||||
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(--se-bg-elevated);
|
||||
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
|
||||
}
|
||||
|
||||
.se-flow-settings-pop {
|
||||
position: absolute;
|
||||
top: 6px;
|
||||
|
||||
Reference in New Issue
Block a user