diff options
author | Lynx Kotoura <admin@sanin.link> | 2018-01-05 03:38:46 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2018-01-04 19:38:46 +0100 |
commit | 49e296e1b03ffe2b17fb390b6ad298172b25040f (patch) | |
tree | 3d23b330e00e41b62b06e69810ff22f8e552a61f | |
parent | 7347d4f8bb6471c892d4feb58e1e0a4d13a229c4 (diff) |
Fix overflowing audit logs (#6184)
-rw-r--r-- | app/javascript/styles/mastodon/admin.scss | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/app/javascript/styles/mastodon/admin.scss b/app/javascript/styles/mastodon/admin.scss index bddea557b..0c343e1df 100644 --- a/app/javascript/styles/mastodon/admin.scss +++ b/app/javascript/styles/mastodon/admin.scss @@ -398,10 +398,12 @@ } } + &__content { + max-width: calc(100% - 90px); + } + &__title { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; + word-wrap: break-word; } &__timestamp { @@ -415,7 +417,7 @@ color: $ui-primary-color; font-family: 'mastodon-font-monospace', monospace; font-size: 12px; - white-space: nowrap; + word-wrap: break-word; min-height: 20px; } |