mirror of
https://github.com/portainer/portainer.git
synced 2025-08-04 21:35:23 +02:00
refactor(icons): replace fa icons [EE-4459] (#7907)
refactor(icons): remove fontawesome EE-4459 refactor(icon) replace feather with lucide EE-4472
This commit is contained in:
parent
9dfac98a26
commit
d78b762f7b
498 changed files with 2102 additions and 2817 deletions
|
@ -18,38 +18,6 @@ angular
|
|||
}
|
||||
};
|
||||
})
|
||||
.filter('kubernetesPodConditionStatusBadge', function () {
|
||||
'use strict';
|
||||
return function (status, type) {
|
||||
switch (type) {
|
||||
case 'Unschedulable':
|
||||
switch (status) {
|
||||
case 'True':
|
||||
return 'fa-exclamation-triangle red-icon';
|
||||
case 'False':
|
||||
return 'fa-check green-icon';
|
||||
case 'Unknown':
|
||||
return 'fa-exclamation-circle orange-icon';
|
||||
}
|
||||
break;
|
||||
case 'PodScheduled':
|
||||
case 'Ready':
|
||||
case 'Initialized':
|
||||
case 'ContainersReady':
|
||||
switch (status) {
|
||||
case 'True':
|
||||
return 'fa-check green-icon';
|
||||
case 'False':
|
||||
return 'fa-exclamation-triangle red-icon';
|
||||
case 'Unknown':
|
||||
return 'fa-exclamation-circle orange-icon';
|
||||
}
|
||||
break;
|
||||
default:
|
||||
return 'fa-question-circle red-icon';
|
||||
}
|
||||
};
|
||||
})
|
||||
.filter('kubernetesPodConditionStatusText', function () {
|
||||
'use strict';
|
||||
return function (status, type) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue