aboutsummaryrefslogtreecommitdiff
path: root/styles/editor.css
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2021-06-26 12:43:53 +0200
committerlonkaars <loek@pipeframe.xyz>2021-06-26 12:43:53 +0200
commit3d1e06deb15a9f754db688b8f8569959b40a86c1 (patch)
tree18ffb8ed224a84c628f5af08b388c0a79e1ad455 /styles/editor.css
parent0dec7575221e86f39439b249a5da6044c1a0a9b4 (diff)
settings adjust based on selection
Diffstat (limited to 'styles/editor.css')
-rw-r--r--styles/editor.css12
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;
+}