diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-11-06 18:02:47 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2018-11-07 16:30:59 +0100 |
commit | f54b201f234e1cb9bfe99a5086caaa6229f43253 (patch) | |
tree | ac76796b51ec3529cb2832e82a78d63e7268a0d5 /apps/files_sharing/css/public.scss | |
parent | 7940a79a410c815915f25d8d36ec08afb27b610b (diff) | |
download | nextcloud-server-f54b201f234e1cb9bfe99a5086caaa6229f43253.tar.gz nextcloud-server-f54b201f234e1cb9bfe99a5086caaa6229f43253.zip |
Better primary visual on public pages
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files_sharing/css/public.scss')
-rw-r--r-- | apps/files_sharing/css/public.scss | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/apps/files_sharing/css/public.scss b/apps/files_sharing/css/public.scss index b8a5dbf4f38..c31b4f82bed 100644 --- a/apps/files_sharing/css/public.scss +++ b/apps/files_sharing/css/public.scss @@ -192,6 +192,20 @@ thead { font-weight: bold; } +// hide the download entry on the menu +// on public share when NOT on mobile +@media only screen and (min-width: 769px) { + #body-public { + .header-right { + #header-actions-menu { + > ul > li#download { + display: none; + } + } + } + } +} + // hide the primary on public share on mobile @media only screen and (max-width: 768px) { #body-public { |