You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
150 lines
2.3 KiB
150 lines
2.3 KiB
body { |
|
width: 100vw; |
|
height: 100vh; |
|
margin: 0; |
|
overflow: hidden; |
|
} |
|
|
|
#graph-canvas { |
|
width: 100%; |
|
height: 100%; |
|
} |
|
|
|
.comfy-multiline-input { |
|
background-color: #ffffff; |
|
overflow: hidden; |
|
overflow-y: auto; |
|
padding: 2px; |
|
resize: none; |
|
border: none; |
|
} |
|
|
|
.comfy-modal { |
|
display: none; /* Hidden by default */ |
|
position: fixed; /* Stay in place */ |
|
z-index: 100; /* Sit on top */ |
|
padding: 30px 30px 10px 30px; |
|
background-color: #ff0000; /* Modal background */ |
|
box-shadow: 0px 0px 20px #888888; |
|
border-radius: 10px; |
|
text-align: center; |
|
top: 50%; |
|
left: 50%; |
|
max-width: 80vw; |
|
max-height: 80vh; |
|
transform: translate(-50%, -50%); |
|
overflow: hidden; |
|
min-width: 60%; |
|
justify-content: center; |
|
} |
|
|
|
.comfy-modal-content { |
|
display: flex; |
|
flex-direction: column; |
|
} |
|
|
|
.comfy-modal p { |
|
overflow: auto; |
|
white-space: pre-line; /* This will respect line breaks */ |
|
margin-bottom: 20px; /* Add some margin between the text and the close button*/ |
|
} |
|
|
|
.comfy-modal button { |
|
cursor: pointer; |
|
color: #aaaaaa; |
|
border: none; |
|
background-color: transparent; |
|
font-size: 24px; |
|
font-weight: bold; |
|
width: 100%; |
|
} |
|
|
|
.comfy-modal button:hover, |
|
.comfy-modal button:focus { |
|
color: #000; |
|
text-decoration: none; |
|
cursor: pointer; |
|
} |
|
|
|
.comfy-menu { |
|
width: 200px; |
|
font-size: 15px; |
|
position: absolute; |
|
top: 50%; |
|
right: 0%; |
|
background-color: white; |
|
text-align: center; |
|
z-index: 100; |
|
width: 170px; |
|
display: flex; |
|
flex-direction: column; |
|
align-items: center; |
|
} |
|
|
|
.comfy-menu button { |
|
font-size: 20px; |
|
} |
|
|
|
.comfy-menu-btns { |
|
margin-bottom: 10px; |
|
width: 100%; |
|
} |
|
|
|
.comfy-menu-btns button { |
|
font-size: 10px; |
|
width: 50%; |
|
} |
|
|
|
.comfy-queue-btn { |
|
width: 100%; |
|
} |
|
|
|
.comfy-list { |
|
background-color: rgb(225, 225, 225); |
|
margin-bottom: 10px; |
|
} |
|
|
|
.comfy-list-items { |
|
overflow-y: scroll; |
|
max-height: 100px; |
|
background-color: #d0d0d0; |
|
padding: 5px; |
|
} |
|
|
|
.comfy-list h4 { |
|
min-width: 160px; |
|
margin: 0; |
|
padding: 3px; |
|
font-weight: normal; |
|
} |
|
|
|
.comfy-list-items button { |
|
font-size: 10px; |
|
} |
|
|
|
.comfy-list-actions { |
|
margin: 5px; |
|
display: flex; |
|
gap: 5px; |
|
justify-content: center; |
|
} |
|
|
|
.comfy-list-actions button { |
|
font-size: 12px; |
|
} |
|
|
|
@media (prefers-color-scheme: dark) { |
|
body { |
|
background-color: #202020; |
|
} |
|
.comfy-multiline-input { |
|
background-color: #202020; |
|
color: white; |
|
} |
|
} |
|
|
|
@media only screen and (max-height: 850px) { |
|
.comfy-menu { |
|
margin-top: -70px; |
|
} |
|
}
|
|
|