diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-09-03 04:56:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-03 04:56:40 +0200 |
commit | 34adc8784a3f165a4bd5719a067093f703f499e9 (patch) | |
tree | 77e9c96d0d9c3168d59a6cdb68a8565eb83eddb5 /app/javascript/styles | |
parent | 5466b39c78e0c97a9db6377eefa4c3ce44dc1514 (diff) |
Fix uncached media in web UI not being clickable (#11745)
Diffstat (limited to 'app/javascript/styles')
-rw-r--r-- | app/javascript/styles/mastodon/components.scss | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index 0b569bb8f..fde5e4c95 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -3449,6 +3449,10 @@ a.status-card.compact:hover { height: auto; } + &--click-thru { + pointer-events: none; + } + &--hidden { display: none; } @@ -3479,8 +3483,6 @@ a.status-card.compact:hover { } &:disabled { - cursor: not-allowed; - .spoiler-button__overlay__label { background: rgba($base-overlay-background, 0.5); } |