diff --git a/dashboard/src/theme.scss b/dashboard/src/theme.scss index 0c899fd0e..c269f49af 100644 --- a/dashboard/src/theme.scss +++ b/dashboard/src/theme.scss @@ -366,9 +366,25 @@ textarea { height: 32px; } + .app-list-app-link-cell { + padding: 0; + } + + .app-list-item-fqdn { + visibility: hidden; + color: $text-muted; + margin-left: 20px; + font-size: 12px; + } + + &:hover .app-list-item-fqdn { + visibility: visible; + } + .app-list-app-link { display: block; color: $text-dark; + padding: 8px; &:hover { text-decoration: none; diff --git a/dashboard/src/views/apps.html b/dashboard/src/views/apps.html index 9cac1ca47..bf6e83380 100644 --- a/dashboard/src/views/apps.html +++ b/dashboard/src/views/apps.html @@ -214,14 +214,15 @@ - - + + - + {{ app.label || app.subdomain || app.fqdn }} + {{ app.fqdn.indexOf('http') === 0 ? app.fqdn : 'https://'+app.fqdn }} {{ app.manifest.title }} @@ -235,6 +236,8 @@ {{ app | installationStateLabel }} + +