Match comfy-menu style to litegraph

This commit is contained in:
City 2023-03-29 15:52:38 +02:00
parent b2554bc4dd
commit 0f92d41ac7

View File

@ -101,6 +101,12 @@ body {
display: flex;
flex-direction: column;
align-items: center;
color: #999;
background-color: #353535;
font-family: sans-serif;
padding: 10px;
border-radius: 0 8px 8px 8px;
box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
}
.comfy-menu button {
@ -115,6 +121,22 @@ body {
.comfy-menu-btns button {
font-size: 10px;
width: 50%;
color: #999 !important;
}
.comfy-menu > button {
width: 100%;
}
.comfy-menu > button,
.comfy-menu-btns button,
.comfy-menu .comfy-list button {
color: #ddd;
background-color: #222;
border-radius: 8px;
border-color: #4e4e4e;
border-style: solid;
margin-top: 2px;
}
.comfy-menu span.drag-handle {
@ -147,14 +169,18 @@ body {
}
.comfy-list {
background-color: rgb(225, 225, 225);
color: #999;
background-color: #333;
margin-bottom: 10px;
border-color: #4e4e4e;
border-style: solid;
}
.comfy-list-items {
overflow-y: scroll;
max-height: 100px;
background-color: #d0d0d0;
min-height: 25px;
background-color: #222;
padding: 5px;
}
@ -181,6 +207,7 @@ body {
}
button.comfy-settings-btn {
background-color: rgba(0, 0, 0, 0);
font-size: 12px;
padding: 0;
position: absolute;
@ -188,6 +215,10 @@ button.comfy-settings-btn {
border: none;
}
button.comfy-queue-btn {
margin: 6px 0 !important;
}
.comfy-modal.comfy-settings {
background-color: var(--bg-color);
color: var(--fg-color);