Skip to content

Commit

Permalink
[NIFI-13859] use tertiary color for spinners (#9370)
Browse files Browse the repository at this point in the history
This closes #9370
  • Loading branch information
scottyaslan authored Oct 15, 2024
1 parent 83a131f commit cc5a363
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
@if (guardLoading) {
<div class="splash h-screen p-20">
<div class="splash-img h-full flex items-center justify-center">
<mat-spinner class="error-spinner"></mat-spinner>
<mat-spinner class="tertiary-spinner"></mat-spinner>
</div>
</div>
} @else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
@if (loading) {
<div class="splash h-full p-20">
<div class="splash-img h-full flex items-center justify-center">
<mat-spinner class="error-spinner"></mat-spinner>
<mat-spinner class="tertiary-spinner "></mat-spinner>
</div>
</div>
} @else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -549,8 +549,8 @@
@include mat.button-color($material-theme, $color-variant: error);
}

.error-spinner {
@include mat.progress-spinner-color($material-theme, $color-variant: error);
.tertiary-spinner {
@include mat.progress-spinner-color($material-theme, $color-variant: tertiary);
}

/* other classes and styles */
Expand Down

0 comments on commit cc5a363

Please sign in to comment.