diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2019-06-12 15:36:13 +0200 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2019-06-12 15:36:13 +0200 |
commit | c887564e4f97d3b7b82ead6644031e5c408f7085 (patch) | |
tree | b6af5a4042b412c6eb71e7ca10711d7fec80a74f | |
parent | e65fd1141909608862f95c582ac98ab2b07f632b (diff) | |
download | nextcloud-server-c887564e4f97d3b7b82ead6644031e5c408f7085.tar.gz nextcloud-server-c887564e4f97d3b7b82ead6644031e5c408f7085.zip |
Fix download entry shown on public share menu when not in mobile
Due to a typo in the variable name the rule was not properly parsed and
applied.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
-rw-r--r-- | apps/files_sharing/css/public.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/css/public.scss b/apps/files_sharing/css/public.scss index 13a3ee291fa..f0f367d5596 100644 --- a/apps/files_sharing/css/public.scss +++ b/apps/files_sharing/css/public.scss @@ -195,7 +195,7 @@ thead { // hide the download entry on the menu // on public share when NOT on mobile -@media only screen and (min-width: $mobile_breakpoint + 1) { +@media only screen and (min-width: $breakpoint-mobile + 1) { #body-public { .header-right { #header-actions-menu { |