]> cat aescling's git repositories - mastodon.git/commitdiff
Fix overflow on conversations (#11965)
authorCutls <web-pro@cutls.com>
Fri, 27 Sep 2019 00:14:49 +0000 (09:14 +0900)
committerEugen Rochko <eugen@zeonfederated.com>
Fri, 27 Sep 2019 00:14:49 +0000 (02:14 +0200)
* Fix: overflow on conversations

* Fix: overflow on conversations

app/javascript/styles/mastodon/components.scss

index f4f26203e5ca4177916b30bf283e8ad86d731032..7562cc709c4629407dc5d9db409429356baab958 100644 (file)
@@ -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;