diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-06-16 15:35:43 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-06-16 15:35:43 +0200 |
commit | b034f288d39e6fc58472db8711e5ba7b18ebc66b (patch) | |
tree | 61d19baec492c90fb14e107515e6d10977bd1284 /styles/editor.css | |
parent | 4686b5281e1f236437c8fae10139d6d205afc426 (diff) |
better selection background + grabbing css
Diffstat (limited to 'styles/editor.css')
-rw-r--r-- | styles/editor.css | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/styles/editor.css b/styles/editor.css index 8461a5a..1279c72 100644 --- a/styles/editor.css +++ b/styles/editor.css @@ -175,7 +175,12 @@ width: calc(var(--zoom) * var(--total-frames) * 1px); background-color: rgba(0, 0, 255, var(--debug-hitbox-opacity)); } -#selection { pointer-events: none; } +#selection { + cursor: grab; +} +#selection:active { + cursor: grabbing; +} .appGrid .timeline .ghostArea { pointer-events: none; |