Skip to content

Commit

Permalink
Add word-break to source-project column (dotnet#440)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikiforov Alexey authored and kishanAnem committed May 15, 2020
1 parent aff652e commit 59c4149
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Microsoft.Tye.Hosting/Dashboard/Pages/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@implements IDisposable

<h1>Services</h1>
<table class="table">
<table class="table service-table">
<thead>
<tr>
<th>Name</th>
Expand All @@ -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>
Expand Down
5 changes: 5 additions & 0 deletions src/Microsoft.Tye.Hosting/wwwroot/css/site.css
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 59c4149

Please sign in to comment.