Add files via upload

This commit is contained in:
tanglup
2024-11-25 01:28:58 +00:00
committed by GitHub
parent f847a65f67
commit f6614f274d

View File

@@ -92,6 +92,26 @@ async function createCanvasWidget(node, widget, app) {
.painter-dialog button:hover { .painter-dialog button:hover {
background: #606060; background: #606060;
} }
.blend-opacity-slider {
width: 100%;
margin: 5px 0;
display: none;
}
.blend-mode-active .blend-opacity-slider {
display: block;
}
.blend-mode-item {
padding: 5px;
cursor: pointer;
position: relative;
}
.blend-mode-item.active {
background-color: rgba(0,0,0,0.1);
}
`; `;
document.head.appendChild(style); document.head.appendChild(style);