diff options
Diffstat (limited to 'styles')
-rw-r--r-- | styles/editor.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/styles/editor.css b/styles/editor.css index 9393227..949265d 100644 --- a/styles/editor.css +++ b/styles/editor.css @@ -490,3 +490,15 @@ z-index: 9; } +.fadeout { + transition-property: opacity; + transition-duration: 100ms; + opacity: 0; + user-select: none; + pointer-events: none; +} + +.fadeout.first { + transition-duration: 0ms; + opacity: 1; +} |