mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-02 22:41:31 +01:00
Left align 'Name' label in process explorer, fixes #48500
This commit is contained in:
@@ -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 => {
|
||||
|
||||
Reference in New Issue
Block a user