From efacfec3ed37c200bf5bad05b59e04a9f97d0d08 Mon Sep 17 00:00:00 2001 From: kibigo! Date: Sun, 25 Jun 2017 13:57:52 -0700 Subject: Media previews for collapsed toots --- app/javascript/styles/components.scss | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'app/javascript/styles') diff --git a/app/javascript/styles/components.scss b/app/javascript/styles/components.scss index af9da6c37..c1cf5a8c3 100644 --- a/app/javascript/styles/components.scss +++ b/app/javascript/styles/components.scss @@ -454,6 +454,7 @@ .status__content, .reply-indicator__content { + position: relative; font-size: 15px; line-height: 20px; color: $primary-text-color; @@ -604,6 +605,19 @@ &.status-collapsed { height: 48px; + background-position: center; + background-size: cover; + + &::before { + display: block; + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + background-image: linear-gradient(to bottom, transparentize($ui-base-color, .15), transparentize($ui-base-color, .3) 24px, transparentize($ui-base-color, .35)); + content: ""; + } .status__content { height: 20px; @@ -644,6 +658,7 @@ } .status__collapse-button { + position: relative; float: right; } @@ -1162,6 +1177,7 @@ .display-name { display: block; + position: relative; max-width: 100%; overflow: hidden; text-overflow: ellipsis; -- cgit