diff options
| author | Henry Jameson <me@hjkos.com> | 2020-11-02 23:43:32 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2020-11-02 23:43:32 +0200 |
| commit | e351665bb31745e2639abef3e47bf4f9df616d6b (patch) | |
| tree | df8ca410ea57bfd4257d7bacfec8f61dd12b5169 /src/components/status/status.scss | |
| parent | f0a66448eeedb348f71b09334b6e7b3c411baeea (diff) | |
Instead of blocking all interaction, only block interaction in places
that matter
Diffstat (limited to 'src/components/status/status.scss')
| -rw-r--r-- | src/components/status/status.scss | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/components/status/status.scss b/src/components/status/status.scss index 0a395086..769f7ef4 100644 --- a/src/components/status/status.scss +++ b/src/components/status/status.scss @@ -59,6 +59,12 @@ $status-margin: 0.75em; justify-content: flex-end; } + .user-avatar { + ._misclick-prevention & { + pointer-events: none !important; + } + } + .left-side { margin-right: $status-margin; } @@ -108,6 +114,10 @@ $status-margin: 0.75em; a { display: inline-block; word-break: break-all; + + ._misclick-prevention & { + pointer-events: none !important; + } } } @@ -250,6 +260,10 @@ $status-margin: 0.75em; vertical-align: middle; object-fit: contain; } + + ._misclick-prevention & a { + pointer-events: none !important; + } } .status-fadein { |
