Some checks failed
Python Linting / Run Ruff (push) Has been cancelled
Python Linting / Run Pylint (push) Has been cancelled
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.10, [self-hosted Linux], stable) (push) Has been cancelled
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.11, [self-hosted Linux], stable) (push) Has been cancelled
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.12, [self-hosted Linux], stable) (push) Has been cancelled
Full Comfy CI Workflow Runs / test-unix-nightly (12.1, , linux, 3.11, [self-hosted Linux], nightly) (push) Has been cancelled
Execution Tests / test (macos-latest) (push) Has been cancelled
Execution Tests / test (ubuntu-latest) (push) Has been cancelled
Execution Tests / test (windows-latest) (push) Has been cancelled
Test server launches without errors / test (push) Has been cancelled
Unit Tests / test (macos-latest) (push) Has been cancelled
Unit Tests / test (ubuntu-latest) (push) Has been cancelled
Unit Tests / test (windows-2022) (push) Has been cancelled
Includes 30 custom nodes committed directly, 7 Civitai-exclusive loras stored via Git LFS, and a setup script that installs all dependencies and downloads HuggingFace-hosted models on vast.ai. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
63 lines
1.2 KiB
CSS
63 lines
1.2 KiB
CSS
.pysssss-autocomplete {
|
|
color: var(--descrip-text);
|
|
background-color: var(--comfy-menu-bg);
|
|
position: absolute;
|
|
font-family: sans-serif;
|
|
box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
|
|
z-index: 9999;
|
|
overflow: auto;
|
|
}
|
|
|
|
.pysssss-autocomplete-item {
|
|
cursor: pointer;
|
|
padding: 3px 7px;
|
|
display: flex;
|
|
border-left: 3px solid transparent;
|
|
align-items: center;
|
|
}
|
|
|
|
.pysssss-autocomplete-item--selected {
|
|
border-left-color: dodgerblue;
|
|
}
|
|
|
|
.pysssss-autocomplete-highlight {
|
|
font-weight: bold;
|
|
text-decoration: underline;
|
|
text-decoration-color: dodgerblue;
|
|
}
|
|
|
|
.pysssss-autocomplete-pill {
|
|
margin-left: auto;
|
|
font-size: 10px;
|
|
color: #fff;
|
|
padding: 2px 4px 2px 14px;
|
|
position: relative;
|
|
}
|
|
|
|
.pysssss-autocomplete-pill::after {
|
|
content: "";
|
|
display: block;
|
|
background: rgba(255, 255, 255, 0.25);
|
|
width: calc(100% - 10px);
|
|
height: 100%;
|
|
position: absolute;
|
|
left: 10px;
|
|
top: 0;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.pysssss-autocomplete-pill + .pysssss-autocomplete-pill {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.pysssss-autocomplete-item-info {
|
|
margin-left: auto;
|
|
transition: filter 0.2s;
|
|
will-change: filter;
|
|
text-decoration: none;
|
|
padding-left: 10px;
|
|
}
|
|
.pysssss-autocomplete-item-info:hover {
|
|
filter: invert(1);
|
|
}
|