diff --git a/src/filemanager.html b/src/filemanager.html index 00d370d38..3ae3c290d 100644 --- a/src/filemanager.html +++ b/src/filemanager.html @@ -293,7 +293,8 @@ -

{{ title }}

+

{{ title }}

+

{{ title }}

diff --git a/src/js/filemanager.js b/src/js/filemanager.js index d88ad7be7..80a71efab 100644 --- a/src/js/filemanager.js +++ b/src/js/filemanager.js @@ -78,6 +78,7 @@ app.controller('FileManagerController', ['$scope', '$translate', '$timeout', 'Cl $scope.sortProperty = 'fileName'; $scope.view = 'fileTree'; $scope.volumes = []; + $scope.applicationLink = ''; $scope.owners = [ { name: 'cloudron', value: 1000 }, @@ -1041,6 +1042,7 @@ app.controller('FileManagerController', ['$scope', '$translate', '$timeout', 'Cl case 'app': $scope.title = result.label || result.fqdn; $scope.rootDirLabel = '/app/data/'; + $scope.applicationLink = 'https://' + result.fqdn; break; case 'volume': $scope.title = result.name; diff --git a/src/theme.scss b/src/theme.scss index 3e1790dbb..21b177738 100644 --- a/src/theme.scss +++ b/src/theme.scss @@ -1869,6 +1869,16 @@ tag-input { overflow: hidden; margin-bottom: 10px; margin-top: 10px; + + a { + text-decoration: none; + color: $text-dark; + + &:hover { + text-decoration: none; + color: $brand_primary; + } + } } }