fix colors
This commit is contained in:
parent
4163276da3
commit
7f1fb168e1
@ -20,17 +20,21 @@ a:hover {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.text-primary {
|
.text-primary {
|
||||||
color: #fed136 !important;
|
color: #29c0ff !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-warning {
|
.text-warning {
|
||||||
color: #fe4819 !important;
|
color: red !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-success {
|
.text-success {
|
||||||
color: #00fe8e !important;
|
color: #00fe8e !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.text-failed {
|
||||||
|
color: #A38831 !important;
|
||||||
|
}
|
||||||
|
|
||||||
h1,
|
h1,
|
||||||
h2,
|
h2,
|
||||||
h3,
|
h3,
|
||||||
|
@ -71,6 +71,8 @@ function getPaperStatusClass(status) {
|
|||||||
return "text-success";
|
return "text-success";
|
||||||
case 'ATTENTION':
|
case 'ATTENTION':
|
||||||
return "text-warning";
|
return "text-warning";
|
||||||
|
case 'FAILED':
|
||||||
|
return "text-failed";
|
||||||
default:
|
default:
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user