From: stephen@cubedesigners.com Date: Mon, 9 Aug 2021 15:44:22 +0000 (+0000) Subject: Changes requested by Bart: change "report" download button to "feedback" and hide... X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=56e7e91ed4c8e9256c0fe2986a7b37f942fc50be;p=cubeextranet.git Changes requested by Bart: change "report" download button to "feedback" and hide "Fichiers" tab in nav bar. Wait #4528 @0.5 --- diff --git a/inc/ws/Controlleur/class.ws.url.php b/inc/ws/Controlleur/class.ws.url.php index 0344d07fd..985c55337 100644 --- a/inc/ws/Controlleur/class.ws.url.php +++ b/inc/ws/Controlleur/class.ws.url.php @@ -170,7 +170,7 @@ class wsUrl } $res .= '' . $btStats . ''; if ($report) { - $res .= '' . $btReport . ''; + $res .= '
' . __('feedback') . '
'; } elseif ($book->version > 1) { if ($droits->admin) { $res .= '' . $btDownload . ''; diff --git a/style/ws/ysl.css b/style/ws/ysl.css index 8733fa42b..f2bd6b999 100644 --- a/style/ws/ysl.css +++ b/style/ws/ysl.css @@ -33,3 +33,6 @@ body { filter: grayscale(1); } +#nav a[href="/fichiers"] { + display: none; +} diff --git a/style/ws/ysl.less b/style/ws/ysl.less index 0027da43e..81d372a75 100644 --- a/style/ws/ysl.less +++ b/style/ws/ysl.less @@ -38,4 +38,9 @@ body{ filter:grayscale(1); -} \ No newline at end of file +} + +// Hide Fichiers tab in the navigation, as requested by Bart via email 06/08/21 +#nav a[href="/fichiers"] { + display: none; +}