Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,5 +82,11 @@
"vite-plugin-vue-devtools": "^7.7.2",
"vitest": "^3.2.4",
"vue-tsc": "^2.2.8"
},
"allowScripts": {
"vue-demi@0.14.10": true,
"github:nethesis/Font-Awesome#16419000ca62bc35db676d033ef00b8ef9771024": true,
"esbuild@0.25.9": true,
"github:nethesis/Font-Awesome#581a497e2f8e45634e9aef3f5cfc199489cc455f": true
}
}
6 changes: 3 additions & 3 deletions frontend/src/assets/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@

--background-input: var(--color-white);
--icon-enabled: var(--color-green-700);
--icon-disabled: var(--color-gray-700);
--icon-neutral: var(--color-gray-600);
}

/* Apply dark theme when .dark class is present (overrides media query) */
Expand Down Expand Up @@ -198,7 +198,7 @@

--background-input: var(--color-gray-950);
--icon-enabled: var(--color-green-500);
--icon-disabled: var(--color-gray-400);
--icon-neutral: var(--color-gray-400);
}

/* Reference the CSS custom properties in @theme inline */
Expand All @@ -224,7 +224,7 @@
--color-placeholder: var(--placeholder);
--color-border-secondary: var(--border-secondary);
--color-icon-enabled: var(--icon-enabled);
--color-icon-disabled: var(--icon-disabled);
--color-icon-neutral: var(--icon-neutral);

--border-ring-button: var(--ring-button);
--border-ring-input: var(--ring-input);
Expand Down
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions frontend/src/assets/rebranding_previews/nethvoice-logo-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions frontend/src/assets/rebranding_previews/nethvoice-logo-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions frontend/src/components/account/apiKeys/ApiKeysPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ function statusIcon(status: 'revoked' | 'expired' | 'active') {

function statusIconClass(status: 'revoked' | 'expired' | 'active'): string {
return status === 'active'
? 'text-green-600 dark:text-green-400'
? 'text-icon-enabled'
: status === 'expired'
? 'text-amber-600 dark:text-amber-400'
: 'text-gray-500 dark:text-gray-400'
: 'text-icon-neutral'
}

const filteredKeys = computed(() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ async function disableConsent() {
<div class="flex items-center gap-2">
<FontAwesomeIcon
:icon="faCircleCheck"
class="size-4 text-green-600 dark:text-green-400"
class="text-icon-enabled size-4"
aria-hidden="true"
/>
<span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ const onSessionModalClose = () => {
<FontAwesomeIcon
v-else-if="item.status === 'completed'"
:icon="faCircleCheck"
class="size-4 text-green-600 dark:text-green-400"
class="text-icon-enabled size-4"
aria-hidden="true"
/>

Expand Down
Loading
Loading