Browse Source

Add word-break to source-project column (#440)

pull/442/head
Nikiforov Alexey 6 years ago
committed by GitHub
parent
commit
bed108952b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/Microsoft.Tye.Hosting/Dashboard/Pages/Index.razor
  2. 5
      src/Microsoft.Tye.Hosting/wwwroot/css/site.css

4
src/Microsoft.Tye.Hosting/Dashboard/Pages/Index.razor

@ -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>

5
src/Microsoft.Tye.Hosting/wwwroot/css/site.css

@ -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);
}

Loading…
Cancel
Save