diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-01-17 14:06:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-17 14:06:08 +0100 |
commit | 8b1990355974543542544e56d2046bc0c9c8716b (patch) | |
tree | e70c0682e6a9a6c7132eb97c678f97f6e943d3b1 /app/javascript/styles | |
parent | 30af4ee65ff43c17d6f7b1b64d6bf1d8699f37c8 (diff) |
Improve the public hashtag page (#9831)
- Fix height not updating when clicking show more on public hashtag page - Add header to the public hashtag page - Change text size and margins on the public hashtag page
Diffstat (limited to 'app/javascript/styles')
-rw-r--r-- | app/javascript/styles/mastodon/widgets.scss | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/app/javascript/styles/mastodon/widgets.scss b/app/javascript/styles/mastodon/widgets.scss index cabef807e..d44a1ef06 100644 --- a/app/javascript/styles/mastodon/widgets.scss +++ b/app/javascript/styles/mastodon/widgets.scss @@ -450,5 +450,33 @@ $fluid-breakpoint: $maximum-width + 20px; @media screen and (max-width: $no-gap-breakpoint) { border-bottom: 1px solid lighten($ui-base-color, 12%); } + + &.compact { + .detailed-status__meta { + margin-top: 15px; + } + + .status__content { + font-size: 15px; + line-height: 20px; + + .emojione { + width: 20px; + height: 20px; + margin: -3px 0 0; + } + + .status__content__spoiler-link { + line-height: 20px; + margin: 0; + } + } + + .media-gallery, + .status-card, + .video-player { + margin-top: 15px; + } + } } } |