add debugger button states

This commit is contained in:
LenAnderson
2024-07-18 19:57:05 -04:00
parent 03eb04e8f9
commit ae90966f43
3 changed files with 26 additions and 6 deletions

View File

@@ -504,7 +504,20 @@
}
#qr--modal-debugButtons {
display: flex;
.menu_button:not(#qr--modal-minimize, #qr--modal-maximize) {
cursor: not-allowed;
opacity: 0.5;
pointer-events: none;
transition: 200ms;
}
}
&.qr--isPaused #qr--modal-debugButtons {
.menu_button:not(#qr--modal-minimize, #qr--modal-maximize) {
cursor: pointer;
opacity: 1;
pointer-events: all;
}
}
#qr--resizeHandle {
width: 6px;
background-color: var(--SmartThemeBorderColor);