Browse Source

Fix overflowing audit logs (#6184)

pull/4/head
Lynx Kotoura 6 years ago
committed by Eugen Rochko
parent
commit
49e296e1b0
1 changed files with 6 additions and 4 deletions
  1. +6
    -4
      app/javascript/styles/mastodon/admin.scss

+ 6
- 4
app/javascript/styles/mastodon/admin.scss View File

@ -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;
}

Loading…
Cancel
Save