diff options
author | Lynx Kotoura <lynx@lv9.org> | 2017-07-26 02:12:57 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-07-25 19:12:57 +0200 |
commit | 9f97c8c7505bbf21b97bb94a180fe4eee14287ad (patch) | |
tree | 9f065ce95ff8847a2cd4fda11b185d1b4fad2e7a | |
parent | edadc93757de8a0754315333d1fe8642604dd194 (diff) |
Fix multiple-gif display in user page (#4364)
Divide media-items to equal width, and hide overlaps.
-rw-r--r-- | app/javascript/styles/stream_entries.scss | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/javascript/styles/stream_entries.scss b/app/javascript/styles/stream_entries.scss index 3856942e1..9e062c57e 100644 --- a/app/javascript/styles/stream_entries.scss +++ b/app/javascript/styles/stream_entries.scss @@ -263,7 +263,9 @@ border: medium none; display: block; flex: 1 1 auto; + width: 100%; height: 100%; + overflow: hidden; margin-right: 2px; &:last-child { |