Add arrow to menu items with submenu

This commit is contained in:
pythongosssss 2023-04-09 11:29:55 +01:00
parent 1e1875f674
commit 3736dc90e1

View File

@ -257,3 +257,15 @@ button.comfy-queue-btn {
color: #ddd;
border-radius: 12px 0 0 12px;
}
.litegraph .litemenu-entry.has_submenu {
position: relative;
padding-right: 20px;
}
.litemenu-entry.has_submenu::after {
content: ">";
position: absolute;
top: 0;
right: 2px;
}