diff options
author | ThibG <thib@sitedethib.com> | 2019-08-15 22:47:51 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2019-08-15 22:47:51 +0200 |
commit | d37126fd03e47c32eaf532937dfc843b952d0d5a (patch) | |
tree | 6e7e2a65ce8d5cd04872952c22c5d6cde00a62a8 /app/javascript/styles | |
parent | 1bea3181975f377bbccfe92691e2cd281b298ec6 (diff) |
Allow clicking behind preview (#11576)
Diffstat (limited to 'app/javascript/styles')
-rw-r--r-- | app/javascript/styles/mastodon/components.scss | 7 |
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; |