mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-17 15:24:40 +01:00
Update CI status widget labels and styles for improved clarity
Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user