- button hover style

- ensure context menu is always above everything
This commit is contained in:
pythongosssss 2023-04-29 17:29:07 +01:00
parent 056e5545ff
commit 15a4c0db3b
1 changed files with 14 additions and 2 deletions

View File

@ -120,7 +120,7 @@ body {
.comfy-menu > button,
.comfy-menu-btns button,
.comfy-menu .comfy-list button,
.comfy-modal button{
.comfy-modal button {
color: var(--input-text);
background-color: var(--comfy-input-bg);
border-radius: 8px;
@ -129,6 +129,15 @@ body {
margin-top: 2px;
}
.comfy-menu > button:hover,
.comfy-menu-btns button:hover,
.comfy-menu .comfy-list button:hover,
.comfy-modal button:hover,
.comfy-settings-btn:hover {
filter: brightness(1.2);
cursor: pointer;
}
.comfy-menu span.drag-handle {
width: 10px;
height: 20px;
@ -284,4 +293,7 @@ button.comfy-queue-btn {
top: 0;
right: 2px;
}
.litecontextmenu {
z-index: 9999 !important;
}