diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-08-17 22:04:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-17 22:04:31 +0200 |
commit | cd660d374adc9394aaeea22d5d41b29535d8a4c2 (patch) | |
tree | b9ce09efea79cf552f918ba127af148a41ddabfb /app | |
parent | 5d8ee24cd5d82d41a6914ee9982c38cc18d859b4 (diff) |
Fix hashtag autosuggestions line breaks for long suggestions (#11588)
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/styles/mastodon/components.scss | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index 6264c3df8..59d1d59f3 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -503,9 +503,21 @@ .autosuggest-hashtag { justify-content: space-between; + &__name { + flex: 1 1 auto; + overflow: hidden; + text-overflow: ellipsis; + } + strong { font-weight: 500; } + + &__uses { + flex: 0 0 auto; + width: 80px; + text-align: right; + } } .autosuggest-account-icon, |