|
|
@@ -151,7 +151,7 @@ const avatarInputRef = useTemplateRef("avatarInputRef");
|
|
|
const statusBadgeColor = computed(() => {
|
|
|
switch (user.value?.status) {
|
|
|
case "active": return "positive";
|
|
|
- case "inactive": return "warning";
|
|
|
+ case "inactive": return "grey";
|
|
|
case "canceled": return "negative";
|
|
|
default: return "grey";
|
|
|
}
|
|
|
@@ -180,7 +180,7 @@ const dependentStatusColor = (status) => {
|
|
|
switch (status) {
|
|
|
case "approved": return "positive";
|
|
|
case "refused": return "negative";
|
|
|
- case "pending": return "warning";
|
|
|
+ case "pending": return "warning-light";
|
|
|
default: return "grey";
|
|
|
}
|
|
|
};
|
|
|
@@ -286,7 +286,7 @@ const onAddDependent = () => {
|
|
|
|
|
|
.profile-avatar {
|
|
|
background: rgba(255, 255, 255, 0.18) !important;
|
|
|
- border: 2px solid rgba(255, 255, 255, 0.45);
|
|
|
+ // border: 2px solid rgba(255, 255, 255, 0.45);
|
|
|
}
|
|
|
|
|
|
.profile-avatar-edit {
|