From f8bd87c57f69bc7df92597a6645e5882d2e2eaa6 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 27 Sep 2021 14:42:35 -0500 Subject: [PATCH] SubNavigation: improve display of DetailedStatus --- app/soapbox/features/status/index.js | 2 +- app/styles/components/detailed-status.scss | 12 +++++++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/app/soapbox/features/status/index.js b/app/soapbox/features/status/index.js index 6eddf8e9e..b826a1281 100644 --- a/app/soapbox/features/status/index.js +++ b/app/soapbox/features/status/index.js @@ -595,7 +595,7 @@ class Status extends ImmutablePureComponent { /> */} -
+
{ancestors} diff --git a/app/styles/components/detailed-status.scss b/app/styles/components/detailed-status.scss index 8c53e7263..f139a512b 100644 --- a/app/styles/components/detailed-status.scss +++ b/app/styles/components/detailed-status.scss @@ -112,7 +112,7 @@ .detailed-status__wrapper { @include standard-panel; - margin: 10px 0; + margin-bottom: 10px; position: relative; overflow: hidden; } @@ -159,3 +159,13 @@ float: left; margin-right: 5px; } + +.detailed-status-container { + > div:first-child { + .status-container .status__wrapper, + .detailed-status__wrapper { + border-top-left-radius: 0; + border-top-right-radius: 0; + } + } +}