Update CI status widget labels and styles for improved clarity

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
mrleemurray
2026-03-31 11:58:46 +01:00
parent 295ea75acd
commit 63a85bd46b
2 changed files with 8 additions and 2 deletions

View File

@@ -205,7 +205,7 @@ export class CIStatusWidget extends Disposable {
this._headerNode = dom.append(this._domNode, $('.ci-status-widget-header'));
this._titleNode = dom.append(this._headerNode, $('.ci-status-widget-title'));
this._titleLabelNode = dom.append(this._titleNode, $('.ci-status-widget-title-label'));
this._titleLabelNode.textContent = localize('ci.checksLabel', "PR Checks");
this._titleLabelNode.textContent = localize('ci.checksLabel', "Checks");
this._countsNode = dom.append(this._titleNode, $('.ci-status-widget-counts'));
this._headerActionBarContainer = dom.append(this._headerNode, $('.ci-status-widget-header-actions'));
this._headerActionBar = this._register(new ActionBar(this._headerActionBarContainer));
@@ -421,7 +421,7 @@ function getCheckCounts(checks: readonly IGitHubCICheck[]): ICICheckCounts {
function getCheckIcon(check: IGitHubCICheck): ThemeIcon {
switch (check.status) {
case GitHubCheckStatus.InProgress:
return Codicon.clock;
return Codicon.circleFilled;
case GitHubCheckStatus.Queued:
return Codicon.circleFilled;
case GitHubCheckStatus.Completed:

View File

@@ -151,6 +151,12 @@
width: 100%;
}
.ci-status-widget-check-label .monaco-icon-label::before {
font-size: 14px;
width: 14px;
height: 14px;
}
.ci-status-widget-check-label .monaco-icon-label-container,
.ci-status-widget-check-label .monaco-icon-name-container {
display: block;