diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-11-07 22:31:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-07 22:31:31 +0100 |
commit | a8fb7e148dedcbae2f454251b98ae865f92106f6 (patch) | |
tree | a4467b6376263468027af62605253fab0120e396 /apps | |
parent | 3e8ea395e992a1cad09352e2b7feb3a36574f470 (diff) | |
parent | f54b201f234e1cb9bfe99a5086caaa6229f43253 (diff) | |
download | nextcloud-server-a8fb7e148dedcbae2f454251b98ae865f92106f6.tar.gz nextcloud-server-a8fb7e148dedcbae2f454251b98ae865f92106f6.zip |
Merge pull request #12316 from nextcloud/public-download-button-fix
Better primary visual on public pages
Diffstat (limited to 'apps')
-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 { |