diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-05-25 16:11:54 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-05-25 16:11:54 +0200 |
commit | 4562c60cf284a97ae1fa861480b0916f5fb7c453 (patch) | |
tree | 5d6b0cf373671961ad3554455a2dd9684321b9a4 /styles/editor.css | |
parent | 2d7acc472ee4f4a37556f41a0ea6ffec8b7b0e26 (diff) |
ghost for adding keyframes :tada:
Diffstat (limited to 'styles/editor.css')
-rw-r--r-- | styles/editor.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/styles/editor.css b/styles/editor.css index 1a1a91f..7eda309 100644 --- a/styles/editor.css +++ b/styles/editor.css @@ -169,6 +169,19 @@ width: calc(var(--zoom) * var(--total-frames) * 1px); } +.appGrid .timeline .ghostArea { + pointer-events: none; + line-height: 0; + transition-property: opacity; + transition-duration: 150ms; + opacity: 0; + color: var(--gruble); +} + +.appGrid .timeline:hover .ghostArea.active { + opacity: 1; +} + .appGrid .timeline .keyframes .frame { background-color: transparent; height: 100%; |