From 6e79fb60d84505f614ce7cb61c93323b8438af4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Molakvo=C3=A6=20=28skjnldsv=29?= Date: Thu, 30 Apr 2020 13:31:20 +0200 Subject: [PATCH] Fix public layout header title & description MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ (skjnldsv) --- apps/files_sharing/css/public.scss | 16 ---------------- core/css/header.scss | 18 ++++++++++++++++-- core/templates/layout.public.php | 16 ++++++++-------- 3 files changed, 24 insertions(+), 26 deletions(-) diff --git a/apps/files_sharing/css/public.scss b/apps/files_sharing/css/public.scss index 2684305690..3b53b1ce2a 100644 --- a/apps/files_sharing/css/public.scss +++ b/apps/files_sharing/css/public.scss @@ -186,22 +186,6 @@ thead { text-align: left; } -/* Needed to ellipsize long header text on share page */ -#body-login #header-left, -#body-login .header-left { - overflow: hidden; -} - -#header .header-shared-by { - color: var(--color-primary-text); - position: relative; - font-weight: 300; - font-size: 11px; - line-height: 11px; - overflow: hidden; - text-overflow: ellipsis; -} - #note-content { padding: 5px; display:inline-block; diff --git a/core/css/header.scss b/core/css/header.scss index 356ee93cf2..afda272ea7 100644 --- a/core/css/header.scss +++ b/core/css/header.scss @@ -64,6 +64,7 @@ box-sizing: border-box; opacity: 1; align-items: center; + display: flex; flex-wrap: wrap; overflow: hidden; @@ -211,9 +212,9 @@ } #header-left, .header-left { - flex: 0 0; - flex-grow: 1; + flex: 1 0; white-space: nowrap; + min-width: 0; } #header-right, .header-right { @@ -269,6 +270,7 @@ } } +/* TODO: move into minimal css file for public shared template */ /* only used for public share pages now as we have the app icons when logged in */ .header-appname { color: var(--color-primary-text); @@ -279,6 +281,18 @@ padding-right: 5px; overflow: hidden; text-overflow: ellipsis; + // Take full width to push the header-shared-by bellow (if any) + flex: 1 1 100%; +} + +.header-shared-by { + color: var(--color-primary-text); + position: relative; + font-weight: 300; + font-size: 11px; + line-height: 11px; + overflow: hidden; + text-overflow: ellipsis; } /* do not show menu toggle on public share links as there is no menu */ diff --git a/core/templates/layout.public.php b/core/templates/layout.public.php index 73e3e0f0b4..e0445f419c 100644 --- a/core/templates/layout.public.php +++ b/core/templates/layout.public.php @@ -39,17 +39,17 @@

- getHeaderTitle()); - } else { - p($theme->getName()); - } ?> + getHeaderTitle() !== '') { + p($template->getHeaderTitle()); + } else { + p($theme->getName()); + } ?>

+ getHeaderDetails() !== '') { ?>
- getHeaderDetails()); - } ?> + getHeaderDetails()); ?>
+