Skip to content

Commit

Permalink
feat(ui): add color to new status (#2734)
Browse files Browse the repository at this point in the history
* feat(ui): add colour to new statuses.

* add colors on delete selected modal

---------

Co-authored-by: Luiz Pegoraro <[email protected]>
  • Loading branch information
joao-mendonca-encora and Luiz Pegoraro authored Oct 9, 2023
1 parent c2c9266 commit e475f4b
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
9 changes: 9 additions & 0 deletions ui/src/app/pages/sinks/list/sink.list.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,15 @@ tr div p {
&idle {
color: #f2994a;
}
&provisioning {
color: #3089fc;
}
&provioning_error {
color: #df316f;
}
&warning {
color: #f2c94c;
}
}

span {
Expand Down
9 changes: 9 additions & 0 deletions ui/src/app/pages/sinks/view/sink.view.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,15 @@ h4 {
&idle {
color: #f2994a;
}
&provisioning {
color: #3089fc;
}
&provioning_error {
color: #df316f;
}
&warning {
color: #f2c94c;
}
}

.last-update {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,17 @@ nb-card {
&stale, &none, &not, &idle {
color: #f2994a;
}
&error, &failure {
&error, &failure, &provioning_error {
color: #df316f;
}
&offline {
color: #969fb9;
}
&provisioning {
color: #3089fc;
}
&warning {
color: #f2dc4a;
color: #f2c94c;
}
}
.element-list {
Expand Down

0 comments on commit e475f4b

Please sign in to comment.