Nikiforov Alexey
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
7 additions and
2 deletions
-
src/Microsoft.Tye.Hosting/Dashboard/Pages/Index.razor
-
src/Microsoft.Tye.Hosting/wwwroot/css/site.css
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
@implements IDisposable |
|
|
|
|
|
|
|
<h1>Services</h1> |
|
|
|
<table class="table"> |
|
|
|
<table class="table service-table"> |
|
|
|
<thead> |
|
|
|
<tr> |
|
|
|
<th>Name</th> |
|
|
|
@ -25,7 +25,7 @@ |
|
|
|
<td> |
|
|
|
@service.ServiceType |
|
|
|
</td> |
|
|
|
<td> |
|
|
|
<td class="source-project"> |
|
|
|
@if (service.Description.RunInfo is ProjectRunInfo project) |
|
|
|
{ |
|
|
|
<p>@project.ProjectFile.FullName</p> |
|
|
|
|
|
|
|
@ -126,6 +126,11 @@ button.navbar-toggler:hover { |
|
|
|
padding-top: 1.1rem; |
|
|
|
} |
|
|
|
|
|
|
|
.content .service-table .source-project { |
|
|
|
word-break: break-all; |
|
|
|
min-width: 250px; |
|
|
|
} |
|
|
|
|
|
|
|
.navbar-toggler { |
|
|
|
background-color: rgba(255, 255, 255, 0.1); |
|
|
|
} |
|
|
|
|