diff options
author | Cutls <web-pro@cutls.com> | 2019-09-27 09:14:49 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2019-09-27 02:14:49 +0200 |
commit | f31530b74d0f2ab77845db26babc25f5de337bd4 (patch) | |
tree | 13fa50ddf216f2e85a9de0ed50e4b619ad8757a0 | |
parent | 7a39671d4654917849f2f2eecffa12573f24f361 (diff) |
Fix overflow on conversations (#11965)
* Fix: overflow on conversations * Fix: overflow on conversations
-rw-r--r-- | app/javascript/styles/mastodon/components.scss | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index f4f26203e..7562cc709 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -6418,13 +6418,17 @@ noscript { flex: 1 1 auto; padding: 10px 5px; padding-right: 15px; + word-break: break-all; + overflow: hidden; &__info { overflow: hidden; + display: flex; + flex-direction: row-reverse; + justify-content: space-between; } &__relative-time { - float: right; font-size: 15px; color: $darker-text-color; padding-left: 15px; @@ -6437,6 +6441,8 @@ noscript { overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; + flex-basis: 170px; + flex-shrink: 1000; a { color: $primary-text-color; |