Skip to content

Commit 0ee8055

Browse files
committed
Make sure cursor changes without having to move the mouse
1 parent 1fd1383 commit 0ee8055

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ui/arduino/theme.css

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -353,12 +353,12 @@ img {
353353
left: 0;
354354
right: 0;
355355
pointer-events: none;
356-
transition-property: all;
357-
transition-duration: 0.2s;
358-
transition-delay: 0.2s;
359-
cursor: wait;
356+
cursor: auto;
357+
z-index: -1;
360358
}
361359
#blocking.active {
360+
/* background: rgba(255, 255, 255, 0.1); */
362361
z-index: 999;
363-
pointer-events: all;
362+
cursor: wait !important;
363+
pointer-events: all; /* this will capture all clicks */
364364
}

0 commit comments

Comments
 (0)