Left align 'Name' label in process explorer, fixes #48500

This commit is contained in:
Rachel Macfarlane
2018-04-25 10:27:13 -07:00
parent d176b34859
commit cd67768392
2 changed files with 6 additions and 2 deletions
@@ -43,7 +43,6 @@ th {
border-bottom: 1px solid #cccccc;
padding: .5rem;
border-top: 1px solid #cccccc;
text-align: center;
}
td {
padding: .25rem;
@@ -54,8 +53,13 @@ td {
text-align: center;
}
.nameLabel{
text-align: left;
}
.data {
white-space: pre;
padding-left: .5rem;
}
tbody > tr:hover {
@@ -75,7 +75,7 @@ function updateProcessInfo(processList): void {
<th class="cpu">${localize('cpu', "CPU %")}</th>
<th class="memory">${localize('memory', "Memory (MB)")}</th>
<th class="pid">${localize('pid', "pid")}</th>
<th>${localize('name', "Name")}</th>
<th class="nameLabel">${localize('name', "Name")}</th>
</tr>`;
processList.forEach(p => {