diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-09-26 13:07:32 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-11-01 11:52:58 +0100 |
commit | 93d14dd315c9af18b1e148f7ccb4fe931b20822b (patch) | |
tree | ca5d7f5ec3bb7c672ac599b7407ba6d4c5c7b41f | |
parent | 3d05540d36e741fade7ff32e2b0c6985782c4c72 (diff) | |
download | nextcloud-server-93d14dd315c9af18b1e148f7ccb4fe931b20822b.tar.gz nextcloud-server-93d14dd315c9af18b1e148f7ccb4fe931b20822b.zip |
Fix header text hiding completely or wrapping wrongly
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
-rw-r--r-- | core/css/header.scss | 2 | ||||
-rw-r--r-- | core/css/mobile.scss | 5 |
2 files changed, 2 insertions, 5 deletions
diff --git a/core/css/header.scss b/core/css/header.scss index c03fa2aa0d3..1e5e2846723 100644 --- a/core/css/header.scss +++ b/core/css/header.scss @@ -143,6 +143,8 @@ #header-left, .header-left { flex: 0 0; flex-grow: 1; + overflow: hidden; + white-space: nowrap; } #header-right, .header-right { diff --git a/core/css/mobile.scss b/core/css/mobile.scss index baf874db8f5..58bb076d819 100644 --- a/core/css/mobile.scss +++ b/core/css/mobile.scss @@ -31,11 +31,6 @@ align-items: center; } -/* on mobile public share, show only the icon of the logo, hide the text */ -#body-public #header .header-appname-container { - display: none; -} - /* do not show update notification on mobile */ #update-notification { display: none !important; |