mirror of https://github.com/node-red/node-red.git
Adjust pointer events to not block interaction with canvas
parent
f71bc1a268
commit
c4aec642e0
|
|
@ -143,6 +143,7 @@
|
|||
margin: 0;
|
||||
z-index: 12;
|
||||
overflow: hidden;
|
||||
pointer-events: auto;
|
||||
// background: rgba(243, 160, 204, 0.617);
|
||||
|
||||
&.red-ui-sidebar-left {
|
||||
|
|
|
|||
|
|
@ -178,6 +178,7 @@
|
|||
right: 0;
|
||||
left: 0;
|
||||
padding: 0;
|
||||
pointer-events: none;
|
||||
// background: rgba(230,230,255,0.8);
|
||||
}
|
||||
.red-ui-component-footer {
|
||||
|
|
@ -225,6 +226,7 @@ button.red-ui-footer-button-toggle {
|
|||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
height: 100%;
|
||||
pointer-events: auto;
|
||||
& .red-ui-footer-button,
|
||||
& .red-ui-footer-button-toggle {
|
||||
min-width: 28px;
|
||||
|
|
@ -297,10 +299,12 @@ button.red-ui-footer-button-toggle {
|
|||
|
||||
.red-ui-workspace-scrollbar {
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
// background: rgba(223, 236, 230, 0.8);
|
||||
}
|
||||
.red-ui-workspace-scrollbar-handle {
|
||||
position: absolute;
|
||||
pointer-events: auto;
|
||||
background: var(--red-ui-scrollbar-handle-background);
|
||||
opacity: 0.7;
|
||||
border-radius: 4px;
|
||||
|
|
|
|||
Loading…
Reference in New Issue