diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-06-26 12:43:53 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-06-26 12:43:53 +0200 |
commit | 3d1e06deb15a9f754db688b8f8569959b40a86c1 (patch) | |
tree | 18ffb8ed224a84c628f5af08b388c0a79e1ad455 /styles/editor.css | |
parent | 0dec7575221e86f39439b249a5da6044c1a0a9b4 (diff) |
settings adjust based on selection
Diffstat (limited to 'styles/editor.css')
-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; +} |