diff options
author | cadars <gregorycadars@gmail.com> | 2022-12-13 19:43:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-13 19:43:03 +0100 |
commit | 52a50c5e43a78f21a1054869352db31b4fa3aba0 (patch) | |
tree | 77092fe6550ac2d9ada1c216ae5516f63702fa23 /app/javascript/styles | |
parent | f70bdba9264bd7c572cee3c45421733919b7d03c (diff) |
Make handle more easily selectable on profile page (#21479)
* Make handle more easily selectable on profile page * Wrap handle in a span * Add `user-select: all` to span * remove whitespace
Diffstat (limited to 'app/javascript/styles')
-rw-r--r-- | app/javascript/styles/mastodon/components.scss | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index b56d43000..1271fc7f3 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -7092,6 +7092,10 @@ noscript { font-weight: 400; overflow: hidden; text-overflow: ellipsis; + + span { + user-select: all; + } } } } |