about summary refs log tree commit diff
path: root/app/javascript/styles
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2019-08-15 22:47:51 +0200
committerEugen Rochko <eugen@zeonfederated.com>2019-08-15 22:47:51 +0200
commitd37126fd03e47c32eaf532937dfc843b952d0d5a (patch)
tree6e7e2a65ce8d5cd04872952c22c5d6cde00a62a8 /app/javascript/styles
parent1bea3181975f377bbccfe92691e2cd281b298ec6 (diff)
Allow clicking behind preview (#11576)
Diffstat (limited to 'app/javascript/styles')
-rw-r--r--app/javascript/styles/mastodon/components.scss7
1 files changed, 6 insertions, 1 deletions
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss
index e30b75495..78ce5d46c 100644
--- a/app/javascript/styles/mastodon/components.scss
+++ b/app/javascript/styles/mastodon/components.scss
@@ -5797,7 +5797,12 @@ noscript {
     bottom: 10px;
     right: 10px;
     z-index: 2;
-    cursor: default;
+    cursor: move;
+    transition: opacity 0.1s ease;
+
+    &:hover {
+      opacity: 0.5;
+    }
 
     strong {
       color: $primary-text-color;