1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-11 22:03:36 +00:00

[PM-27737] text and triangle color (#17198)

This commit is contained in:
Alex
2025-11-10 10:33:43 -05:00
committed by GitHub
parent e7995256cd
commit 2f3f2c2105
2 changed files with 5 additions and 2 deletions

View File

@@ -349,6 +349,9 @@
"applicationsNeedingReview": { "applicationsNeedingReview": {
"message": "Applications needing review" "message": "Applications needing review"
}, },
"newApplicationsCardTitle": {
"message": "Review new applications"
},
"newApplicationsWithCount": { "newApplicationsWithCount": {
"message": "$COUNT$ new applications", "message": "$COUNT$ new applications",
"placeholders": { "placeholders": {

View File

@@ -46,7 +46,7 @@
<li class="tw-col-span-1"> <li class="tw-col-span-1">
<dirt-activity-card <dirt-activity-card
[title]="'applicationsNeedingReview' | i18n" [title]="'newApplicationsCardTitle' | i18n"
[cardMetrics]=" [cardMetrics]="
isAllCaughtUp isAllCaughtUp
? ('allCaughtUp' | i18n) ? ('allCaughtUp' | i18n)
@@ -58,7 +58,7 @@
: ('newApplicationsDescription' | i18n) : ('newApplicationsDescription' | i18n)
" "
[iconClass]="isAllCaughtUp ? 'bwi-check-circle' : 'bwi-exclamation-triangle'" [iconClass]="isAllCaughtUp ? 'bwi-check-circle' : 'bwi-exclamation-triangle'"
[iconColorClass]="isAllCaughtUp ? 'tw-text-success' : 'tw-text-muted'" [iconColorClass]="isAllCaughtUp ? 'tw-text-success' : 'tw-text-warning'"
[buttonText]="isAllCaughtUp ? '' : ('reviewNow' | i18n)" [buttonText]="isAllCaughtUp ? '' : ('reviewNow' | i18n)"
[buttonType]="'primary'" [buttonType]="'primary'"
(buttonClick)="onReviewNewApplications()" (buttonClick)="onReviewNewApplications()"