diff options
author | Thibaut Girka <thib@sitedethib.com> | 2018-03-12 19:43:31 +0100 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2018-03-16 15:27:13 +0100 |
commit | 19f7bd1582c549a274ebe0a0b5cc3d79604ac33c (patch) | |
tree | ab6a4ba8d8365e0939f3d271836583dafdf7e75f /app/javascript/flavours/glitch/styles | |
parent | 22870985dac47d4162bbe63d445cee8f7a1567bb (diff) |
Show media on report UI
Ports 219aac7800a086a75f3ef36f71955bb8b6ccc2c0 to glitch-soc
Diffstat (limited to 'app/javascript/flavours/glitch/styles')
-rw-r--r-- | app/javascript/flavours/glitch/styles/components/status.scss | 28 |
1 files changed, 18 insertions, 10 deletions
diff --git a/app/javascript/flavours/glitch/styles/components/status.scss b/app/javascript/flavours/glitch/styles/components/status.scss index 1ee5cba9e..d9c7f6a6e 100644 --- a/app/javascript/flavours/glitch/styles/components/status.scss +++ b/app/javascript/flavours/glitch/styles/components/status.scss @@ -314,18 +314,26 @@ border-bottom: 1px solid $ui-secondary-color; display: flex; - .status__content { - flex: 1 1 auto; - padding: 10px; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; + .status-check-box__status { + margin: 10px 0 10px 10px; + flex: 1; + + .media-gallery { + max-width: 250px; + } .status__content { - color: #3a3a3a; - a { - color: #005aa9; - } + padding: 0; + white-space: normal; + } + + .video-player { + margin-top: 8px; + max-width: 250px; + } + + .media-gallery__item-thumbnail { + cursor: default; } } } |